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

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 "JSDOMNodeList.hpp"
  23. #include "JSDOMNode.hpp"
  24. // JavaScript class definition
  25. JSClass JSDOMNodeList::_jsClass = {
  26. "NodeList", JSCLASS_HAS_PRIVATE,
  27. JS_PropertyStub, JS_PropertyStub,
  28. JSDOMNodeList::JSGetProperty, JS_PropertyStub,
  29. JS_EnumerateStub, JS_ResolveStub,
  30. JS_ConvertStub, JSDOMNodeList::JSDestructor,
  31. 0, 0, 0, 0, 
  32. 0, 0, 0, 0
  33. };
  34. // JavaScript Initialization Method
  35. JSObject *JSDOMNodeList::JSInit(JSContext *cx, JSObject *obj) {
  36. if (obj==NULL)
  37. obj = JS_GetGlobalObject(cx);
  38. jsval oldobj;
  39. if (JS_TRUE == JS_LookupProperty(cx, obj, JSDOMNodeList::_jsClass.name, &oldobj) && JSVAL_IS_OBJECT(oldobj))
  40. return JSVAL_TO_OBJECT(oldobj);
  41. return JS_InitClass(cx, obj, NULL, &JSDOMNodeList::_jsClass,
  42.                                       JSDOMNodeList::JSConstructor, 0,
  43.                                       JSDOMNodeList::_JSPropertySpec, JSDOMNodeList::_JSFunctionSpec,
  44.                                       NULL, NULL);
  45. }
  46. // JavaScript Constructor
  47. JSBool JSDOMNodeList::JSConstructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) {
  48. JSDOMNodeList *p = NULL;
  49. if (argc == 0) {
  50. p = new JSDOMNodeList;
  51. }
  52. if (!p || !JS_SetPrivate(cx, obj, p)) return JS_FALSE;
  53. p->_JSinternal.o = obj;
  54. p->_JSinternal.c = cx;
  55. *rval = OBJECT_TO_JSVAL(obj);
  56. return JS_TRUE;
  57. }
  58. // JavaScript Destructor
  59. void JSDOMNodeList::JSDestructor(JSContext *cx, JSObject *obj) {
  60. JSDOMNodeList *p = (JSDOMNodeList*)JS_GetPrivate(cx, obj);
  61. if (p) delete p;
  62. }
  63. // JavaScript Object Linking
  64. JSObject *JSDOMNodeList::getJSObject(JSContext *cx) {
  65. if (!cx) return NULL;
  66. if (!_JSinternal.o) {
  67. _JSinternal.o = newJSObject(cx);
  68. _JSinternal.c = cx;
  69. if (!JS_SetPrivate(cx, _JSinternal.o, this)) return NULL;
  70. }
  71. return _JSinternal.o;
  72. }
  73. JSObject *JSDOMNodeList::newJSObject(JSContext *cx) {
  74. return JS_NewObject(cx, &JSDOMNodeList::_jsClass, NULL, NULL);
  75. }
  76. // JavaScript Variable Table
  77. JSPropertySpec JSDOMNodeList::_JSPropertySpec[] = {
  78. { "length", JSVAR_length, JSPROP_ENUMERATE | JSPROP_READONLY, 0, 0},
  79. { 0, 0, 0, 0, 0 }
  80. };
  81. // JavaScript Get Property Wrapper
  82. JSBool JSDOMNodeList::JSGetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) {
  83. if (JSVAL_IS_INT(id)) {
  84. JSDOMNodeList *priv;
  85. switch(JSVAL_TO_INT(id)) {
  86. case JSVAR_length:
  87. priv = (JSDOMNodeList*)JS_GetPrivate(cx, obj);
  88. if (priv==NULL)
  89. *vp = JSVAL_NULL;
  90. else
  91. *vp = __int_TO_JSVal(cx,priv->getLength());
  92. break;
  93. }
  94. }
  95. return JS_TRUE;
  96. }
  97. // JavaScript Function Table
  98. JSFunctionSpec JSDOMNodeList::_JSFunctionSpec[] = {
  99. { "item", JSFUNC_item, 1, 0, 0 },
  100. { 0, 0, 0, 0, 0 }
  101. };
  102. // JavaScript Function Wrappers
  103. JSBool JSDOMNodeList::JSFUNC_item(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) {
  104. JSDOMNodeList *p = (JSDOMNodeList*)JS_GetPrivate(cx, obj);
  105. if (argc < 1) return JS_FALSE;
  106. if (argc == 1) {
  107. if (JSVAL_IS_NUMBER(argv[0])) {
  108. JSDOMNode *n = p->item(__JSVal_TO_int(argv[0]));
  109. *rval = (n ? __objectp_TO_JSVal(cx,n) : JSVAL_NULL);
  110. return JS_TRUE;
  111. }
  112. }
  113. return JS_FALSE;
  114. }
  115. JSDOMNodeList::JSDOMNodeList(DOMNodeList *nodeList, JSDOMDocument *ownerDoc) 
  116.    : _nodeList( nodeList ), _ownerDoc(ownerDoc)
  117. {
  118. }
  119. int JSDOMNodeList::getLength()
  120. {
  121. return ( _nodeList ? _nodeList->getLength() : 0 );
  122. }
  123. JSDOMNode *JSDOMNodeList::item(int index)
  124. {
  125. if (!_nodeList)
  126. return NULL;
  127. if (index > (_nodeList->getLength() - 1))
  128. return NULL;
  129. return JSDOMNode::createNode(_nodeList->item(index), _ownerDoc);
  130. }