JSDOM.cpp
上传用户: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. #include "JSDOM.hpp"
  23. JSBool js_throw_dom_error(JSContext* cx, JSObject* obj, int code)
  24. {
  25.   // if we get errors during error reporting we report those
  26.   if (JS_AddNamedRoot(cx,&code,"jsint")) {
  27.     jsval dummy;
  28.     // We can't use JS_EvaluateScript since the stack would be wrong
  29.     JSFunction *func;
  30.     JSObject* fobj;
  31.     const char* fbody="throw new DOMException(code);";
  32.     const char* argnames[]={"code"};
  33.     if ((func=JS_CompileFunction(cx, obj, NULL,
  34.           1, argnames,
  35.           fbody, strlen(fbody),
  36.           NULL, 0)) != NULL) {
  37.       // root function
  38.       if ( ((fobj = JS_GetFunctionObject(func)) != NULL)
  39.           && (JS_AddNamedRoot(cx, &fobj, "fobj")) ) {
  40.         jsval args[]={INT_TO_JSVAL(code)};
  41.         JS_CallFunction(cx, obj, func, 1, args, &dummy);
  42.         JS_RemoveRoot(cx, &fobj);
  43.       }
  44.     }
  45.     JS_RemoveRoot(cx,&code);
  46.   }
  47.   
  48.   return JS_FALSE;
  49. }
  50. JSBool js_throw_error(JSContext* cx, JSObject* obj, const char* msg)
  51. {
  52.   JSString* jsstr;
  53.   // if we get errors during error reporting we report those
  54.   if ( ((jsstr=JS_NewStringCopyZ(cx, msg)) != NULL)
  55.        && (JS_AddNamedRoot(cx,&jsstr,"jsstr")) ) {
  56.     jsval dummy;
  57.     // We can't use JS_EvaluateScript since the stack would be wrong
  58.     JSFunction *func;
  59.     JSObject* fobj;
  60.     const char* fbody="throw new Error(msg);";
  61.     const char* argnames[]={"msg"};
  62.     if ((func=JS_CompileFunction(cx, obj, NULL,
  63.           1, argnames,
  64.           fbody, strlen(fbody),
  65.           NULL, 0)) != NULL) {
  66.       // root function
  67.       if ( ((fobj = JS_GetFunctionObject(func)) != NULL)
  68.           && (JS_AddNamedRoot(cx, &fobj, "fobj")) ) {
  69.         jsval args[]={STRING_TO_JSVAL(jsstr)};
  70.         JS_CallFunction(cx, obj, func, 1, args, &dummy);
  71.         JS_RemoveRoot(cx, &fobj);
  72.       }
  73.     }
  74.     JS_RemoveRoot(cx,&jsstr);
  75.   }
  76.   
  77.   return JS_FALSE;
  78. }