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

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef _JSDOM_H_
  23. #define _JSDOM_H_
  24. #include <jsapi.h>
  25. #include "../JsiCharCvt.hpp"
  26. #include <XMLChConverter.hpp>
  27. #define GET_JSCHAR_FROM_VXICHAR(out, outlen, in) 
  28.   VXIcharToJschar convert_##out(in); 
  29.   const jschar *out = convert_##out.c_str( ); 
  30.   size_t outlen = convert_##out.length( )
  31. #define GET_VXICHAR_FROM_JSCHAR(out, in) 
  32.   JscharToVXIchar convert_##out(in); 
  33.   const VXIchar *out = convert_##out.c_str( )
  34. #define JSVAL_IS_JSVAL(v) (true)
  35. #define __JSVal_TO_int(v) (JSVAL_IS_DOUBLE(v)?(int)(*(JSVAL_TO_DOUBLE(v))):JSVAL_TO_INT(v))
  36. #define __JSVal_TO_bool(v) JSVAL_TO_BOOLEAN(v)
  37. #define __JSVal_TO_double(v) (JSVAL_IS_INT(v)?JSVAL_TO_INT(v):(double)(*(JSVAL_TO_DOUBLE(v))))
  38. #define __JSVal_TO_float(v) (JSVAL_IS_INT(v)?JSVAL_TO_INT(v):(float)(*(JSVAL_TO_DOUBLE(v))))
  39. #define __JSVal_TO_string(v) string(JS_GetStringBytes(JSVAL_TO_STRING(v)))
  40. #define __JSVal_TO_object(cx,t,v) *((t*)(JS_GetPrivate(cx,JSVAL_TO_OBJECT(v))))
  41. #define __JSVal_TO_objectp(cx,t,v) ((t)(JS_GetPrivate(cx,JSVAL_TO_OBJECT(v))))
  42. #define __int_TO_JSVal(cx,v) INT_TO_JSVAL(v)
  43. #define __bool_TO_JSVal(cx,v) BOOLEAN_TO_JSVAL(v)
  44. #define __double_TO_JSVal(cx,v) DOUBLE_TO_JSVAL(JS_NewDouble(cx, v))
  45. #define __float_TO_JSVal(cx,v) DOUBLE_TO_JSVAL(JS_NewDouble(cx, v))
  46. #define __string_TO_JSVal(cx,v) STRING_TO_JSVAL(JS_NewStringCopyZ(cx, (v).c_str()))
  47. #define __object_TO_JSVal(cx,v) OBJECT_TO_JSVAL((v).getJSObject(cx))
  48. #define __objectp_TO_JSVal(cx,v) OBJECT_TO_JSVAL((v)->getJSObject(cx))
  49. #define __STRING_TO_JSVAL(v) ((v)?STRING_TO_JSVAL((v)):JSVAL_NULL)
  50. #define __OBJECT_TO_JSVAL(v) ((v)?OBJECT_TO_JSVAL((v)):JSVAL_NULL)
  51. JSBool js_throw_error(JSContext* cx, JSObject* obj, const char* msg);
  52. JSBool js_throw_dom_error(JSContext* cx, JSObject* obj, int code);
  53. #endif