JSDOMException.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 _JSDOMEXCEPTION_H
  23. #define _JSDOMEXCEPTION_H
  24. #include <jsapi.h>
  25. class JSDOMException
  26. {
  27. public:
  28. static JSObject *JSInit(JSContext *cx, JSObject *obj = NULL);
  29. virtual JSObject *getJSObject(JSContext *cx);
  30. static JSObject *newJSObject(JSContext *cx);
  31. JSDOMException(int code);
  32. virtual ~JSDOMException(){}
  33. enum ExceptionCode
  34. {
  35. INDEX_SIZE_ERR = 1,
  36. DOMSTRING_SIZE_ERR = 2,
  37. NO_MODIFICATION_ALLOWED_ERR = 7,
  38. NOT_FOUND_ERR = 8,
  39. NOT_SUPPORTED_ERR = 9,
  40. INVALID_STATE_ERR = 11
  41. };
  42. // properties
  43. int getCode();
  44. protected:
  45. static JSBool JSGetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
  46. enum {
  47. JSVAR_INDEX_SIZE_ERR,
  48. JSVAR_DOMSTRING_SIZE_ERR,
  49. JSVAR_NO_MODIFICATION_ALLOWED_ERR,
  50. JSVAR_NOT_FOUND_ERR,
  51. JSVAR_NOT_SUPPORTED_ERR,
  52. JSVAR_INVALID_STATE_ERR,
  53. JSVAR_code,
  54. JSVAR_LASTENUM
  55. };
  56. struct _JSinternalStruct {
  57. JSObject *o;
  58. JSContext *c;
  59. _JSinternalStruct() : o(NULL) {};
  60. ~_JSinternalStruct() { if (o) JS_SetPrivate(NULL,o, NULL); };
  61. };
  62. _JSinternalStruct _JSinternal;
  63. static JSClass _jsClass;
  64. static JSPropertySpec _JSPropertySpec[];
  65. static JSPropertySpec _JSPropertySpec_static[];
  66. private:
  67. static JSBool JSConstructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  68. static void JSDestructor(JSContext *cx, JSObject *obj);
  69. private:
  70. int _code;
  71. };
  72. #endif