JsiRuntime.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:4k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *****************************************************************************
  3.  *
  4.  * JsiRuntime, class for managing JavaScript runtime environments
  5.  *
  6.  * The JsiRuntime class represents a JavaScript interpreter runtime
  7.  * environment, which is the overall JavaScript engine execution space
  8.  * (compiler, interpreter, decompiler, garbage collector, etc.) which
  9.  * can hold zero or more JavaScript contexts (JsiContext objects).
  10.  *
  11.  *****************************************************************************
  12.  ****************************************************************************/
  13. /****************License************************************************
  14.  * Vocalocity OpenVXI
  15.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  16.  * This program is free software; you can redistribute it and/or
  17.  * modify it under the terms of the GNU General Public License
  18.  * as published by the Free Software Foundation; either version 2
  19.  * of the License, or (at your option) any later version.
  20.  *  
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  *
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  29.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  30.  * registered trademarks of Vocalocity, Inc. 
  31.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  32.  * by Vocalocity.
  33.  ***********************************************************************/
  34. // -----1=0-------2=0-------3=0-------4=0-------5=0-------6=0-------7=0-------8
  35. #ifndef _JSI_RUNTIME_H__
  36. #define _JSI_RUNTIME_H__
  37. #include "VXIjsi.h"              // For VXIjsiResult codes
  38. #include "SBjsiLogger.hpp"      // For SBjsiLogger base class
  39. #ifndef HAVE_SPIDERMONKEY
  40. #error Need Mozilla SpiderMonkey to build this ECMAScript integration
  41. #endif
  42. #include <jspubtd.h>             // SpiderMonkey JavaScript typedefs (JS...)
  43. #ifndef JS_DLL_CALLBACK
  44. #define JS_DLL_CALLBACK CRT_CALL // For SpiderMonkey 1.5 RC 3 and earlier
  45. #endif
  46. #ifndef JS_THREADSAFE
  47. extern "C" struct VXItrdMutex;
  48. #endif
  49. extern "C" struct VXIlogInterface;
  50. class JsiRuntime : SBjsiLogger {
  51.  public:
  52.   // Constructor and destructor
  53.   JsiRuntime( );
  54.   virtual ~JsiRuntime( );
  55.   // Creation method
  56.   VXIjsiResult Create (long              runtimeSize,
  57.        VXIlogInterface  *log,
  58.        VXIunsigned       diagTagBase);
  59.   
  60.  public:
  61.   // These are only for JsiContext use!
  62.   // Get a new JavaScript context for the runtime
  63.   VXIjsiResult NewContext (long contextSize, JSContext **context);
  64.   // Destroy a JavaScript context for the runtime
  65.   VXIjsiResult DestroyContext (JSContext **context);
  66. #ifndef JS_THREADSAFE
  67.   // Flag that we are beginning and ending access of this runtime
  68.   // (including any access of a context within this runtime), used to
  69.   // ensure thread safety. For simplicity, return true on success,
  70.   // false on failure (mutex error).
  71.   bool AccessBegin( ) const;
  72.   bool AccessEnd( ) const;
  73. #endif
  74.   
  75.  private:
  76.   // Static callback for diagnostic logging of garbage collection
  77.   static JSBool JS_DLL_CALLBACK GCCallback (JSContext *cx, JSGCStatus status);
  78.   // Disable the copy constructor and assignment operator
  79.   JsiRuntime (const JsiRuntime &rt);
  80.   JsiRuntime & operator= (const JsiRuntime &rt);
  81.  private:
  82.   VXIlogInterface  *log;         // For logging
  83.   JSRuntime        *runtime;     // JavaScript runtime environment
  84. #ifndef JS_THREADSAFE
  85.   VXItrdMutex      *mutex;       // For thread safe evals
  86. #endif
  87. };
  88. #endif  // _JSI_RUNTIME_H__