/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * The contents of this file are subject to the Netscape Public License * Version 1.0 (the "NPL"); you may not use this file except in * compliance with the NPL. You may obtain a copy of the NPL at * http://www.mozilla.org/NPL/ * * Software distributed under the NPL is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL * for the specific language governing rights and limitations under the * NPL. * * The Initial Developer of this code under the NPL is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All Rights * Reserved. */ /* AUTO-GENERATED. DO NOT EDIT!!! */ #include "jsapi.h" #include "nscore.h" #include "nsIScriptContext.h" #include "nsIJSScriptObject.h" #include "nsIScriptObjectOwner.h" #include "nsIScriptGlobalObject.h" #include "nsIPtr.h" #include "nsString.h" #include "nsIDOMNamedNodeMap.h" #include "nsIDOMNode.h" static NS_DEFINE_IID(kIScriptObjectOwnerIID, NS_ISCRIPTOBJECTOWNER_IID); static NS_DEFINE_IID(kIJSScriptObjectIID, NS_IJSSCRIPTOBJECT_IID); static NS_DEFINE_IID(kIScriptGlobalObjectIID, NS_ISCRIPTGLOBALOBJECT_IID); static NS_DEFINE_IID(kINamedNodeMapIID, NS_IDOMNAMEDNODEMAP_IID); static NS_DEFINE_IID(kINodeIID, NS_IDOMNODE_IID); NS_DEF_PTR(nsIDOMNamedNodeMap); NS_DEF_PTR(nsIDOMNode); // // NamedNodeMap property ids // enum NamedNodeMap_slots { NAMEDNODEMAP_LENGTH = -1 }; /***********************************************************************/ // // NamedNodeMap Properties Getter // PR_STATIC_CALLBACK(JSBool) GetNamedNodeMapProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) { nsIDOMNamedNodeMap *a = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); // If there's no private data, this must be the prototype, so ignore if (nsnull == a) { return JS_TRUE; } if (JSVAL_IS_INT(id)) { switch(JSVAL_TO_INT(id)) { case NAMEDNODEMAP_LENGTH: { PRUint32 prop; if (NS_OK == a->GetLength(&prop)) { *vp = INT_TO_JSVAL(prop); } else { return JS_FALSE; } break; } default: { nsIDOMNode* prop; if (NS_OK == a->Item(JSVAL_TO_INT(id), &prop)) { // get the js object if (prop != nsnull) { nsIScriptObjectOwner *owner = nsnull; if (NS_OK == prop->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) { JSObject *object = nsnull; nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx); if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) { // set the return value *vp = OBJECT_TO_JSVAL(object); } NS_RELEASE(owner); } NS_RELEASE(prop); } else { *vp = JSVAL_NULL; } } else { return JS_FALSE; } } } } else { nsIJSScriptObject *object; if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) { PRBool rval; rval = object->GetProperty(cx, id, vp); NS_RELEASE(object); return rval; } } return PR_TRUE; } /***********************************************************************/ // // NamedNodeMap Properties Setter // PR_STATIC_CALLBACK(JSBool) SetNamedNodeMapProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) { nsIDOMNamedNodeMap *a = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); // If there's no private data, this must be the prototype, so ignore if (nsnull == a) { return JS_TRUE; } if (JSVAL_IS_INT(id)) { switch(JSVAL_TO_INT(id)) { case 0: default: { nsIJSScriptObject *object; if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) { PRBool rval; rval = object->SetProperty(cx, id, vp); NS_RELEASE(object); return rval; } } } } else { nsIJSScriptObject *object; if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) { PRBool rval; rval = object->SetProperty(cx, id, vp); NS_RELEASE(object); return rval; } } return PR_TRUE; } // // NamedNodeMap finalizer // PR_STATIC_CALLBACK(void) FinalizeNamedNodeMap(JSContext *cx, JSObject *obj) { nsIDOMNamedNodeMap *a = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); if (nsnull != a) { // get the js object nsIScriptObjectOwner *owner = nsnull; if (NS_OK == a->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) { owner->SetScriptObject(nsnull); NS_RELEASE(owner); } NS_RELEASE(a); } } // // NamedNodeMap enumerate // PR_STATIC_CALLBACK(JSBool) EnumerateNamedNodeMap(JSContext *cx, JSObject *obj) { nsIDOMNamedNodeMap *a = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); if (nsnull != a) { // get the js object nsIJSScriptObject *object; if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) { object->EnumerateProperty(cx); NS_RELEASE(object); } } return JS_TRUE; } // // NamedNodeMap resolve // PR_STATIC_CALLBACK(JSBool) ResolveNamedNodeMap(JSContext *cx, JSObject *obj, jsval id) { nsIDOMNamedNodeMap *a = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); if (nsnull != a) { // get the js object nsIJSScriptObject *object; if (NS_OK == a->QueryInterface(kIJSScriptObjectIID, (void**)&object)) { object->Resolve(cx, id); NS_RELEASE(object); } } return JS_TRUE; } // // Native method GetNamedItem // PR_STATIC_CALLBACK(JSBool) NamedNodeMapGetNamedItem(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { nsIDOMNamedNodeMap *nativeThis = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); JSBool rBool = JS_FALSE; nsIDOMNode* nativeRet; nsAutoString b0; *rval = JSVAL_NULL; // If there's no private data, this must be the prototype, so ignore if (nsnull == nativeThis) { return JS_TRUE; } if (argc >= 1) { JSString *jsstring0 = JS_ValueToString(cx, argv[0]); if (nsnull != jsstring0) { b0.SetString(JS_GetStringChars(jsstring0)); } else { b0.SetString(""); // Should this really be null?? } if (NS_OK != nativeThis->GetNamedItem(b0, &nativeRet)) { return JS_FALSE; } if (nativeRet != nsnull) { nsIScriptObjectOwner *owner = nsnull; if (NS_OK == nativeRet->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) { JSObject *object = nsnull; nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx); if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) { // set the return value *rval = OBJECT_TO_JSVAL(object); } NS_RELEASE(owner); } NS_RELEASE(nativeRet); } else { *rval = JSVAL_NULL; } } else { JS_ReportError(cx, "Function getNamedItem requires 1 parameters"); return JS_FALSE; } return JS_TRUE; } // // Native method SetNamedItem // PR_STATIC_CALLBACK(JSBool) NamedNodeMapSetNamedItem(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { nsIDOMNamedNodeMap *nativeThis = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); JSBool rBool = JS_FALSE; nsIDOMNode* nativeRet; nsIDOMNodePtr b0; *rval = JSVAL_NULL; // If there's no private data, this must be the prototype, so ignore if (nsnull == nativeThis) { return JS_TRUE; } if (argc >= 1) { if (JSVAL_IS_NULL(argv[0])){ b0 = nsnull; } else if (JSVAL_IS_OBJECT(argv[0])) { nsISupports *supports0 = (nsISupports *)JS_GetPrivate(cx, JSVAL_TO_OBJECT(argv[0])); NS_ASSERTION(nsnull != supports0, "null pointer"); if ((nsnull == supports0) || (NS_OK != supports0->QueryInterface(kINodeIID, (void **)(b0.Query())))) { JS_ReportError(cx, "Parameter must be of type Node"); return JS_FALSE; } } else { JS_ReportError(cx, "Parameter must be an object"); return JS_FALSE; } if (NS_OK != nativeThis->SetNamedItem(b0, &nativeRet)) { return JS_FALSE; } if (nativeRet != nsnull) { nsIScriptObjectOwner *owner = nsnull; if (NS_OK == nativeRet->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) { JSObject *object = nsnull; nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx); if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) { // set the return value *rval = OBJECT_TO_JSVAL(object); } NS_RELEASE(owner); } NS_RELEASE(nativeRet); } else { *rval = JSVAL_NULL; } } else { JS_ReportError(cx, "Function setNamedItem requires 1 parameters"); return JS_FALSE; } return JS_TRUE; } // // Native method RemoveNamedItem // PR_STATIC_CALLBACK(JSBool) NamedNodeMapRemoveNamedItem(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { nsIDOMNamedNodeMap *nativeThis = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); JSBool rBool = JS_FALSE; nsIDOMNode* nativeRet; nsAutoString b0; *rval = JSVAL_NULL; // If there's no private data, this must be the prototype, so ignore if (nsnull == nativeThis) { return JS_TRUE; } if (argc >= 1) { JSString *jsstring0 = JS_ValueToString(cx, argv[0]); if (nsnull != jsstring0) { b0.SetString(JS_GetStringChars(jsstring0)); } else { b0.SetString(""); // Should this really be null?? } if (NS_OK != nativeThis->RemoveNamedItem(b0, &nativeRet)) { return JS_FALSE; } if (nativeRet != nsnull) { nsIScriptObjectOwner *owner = nsnull; if (NS_OK == nativeRet->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) { JSObject *object = nsnull; nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx); if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) { // set the return value *rval = OBJECT_TO_JSVAL(object); } NS_RELEASE(owner); } NS_RELEASE(nativeRet); } else { *rval = JSVAL_NULL; } } else { JS_ReportError(cx, "Function removeNamedItem requires 1 parameters"); return JS_FALSE; } return JS_TRUE; } // // Native method Item // PR_STATIC_CALLBACK(JSBool) NamedNodeMapItem(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { nsIDOMNamedNodeMap *nativeThis = (nsIDOMNamedNodeMap*)JS_GetPrivate(cx, obj); JSBool rBool = JS_FALSE; nsIDOMNode* nativeRet; PRUint32 b0; *rval = JSVAL_NULL; // If there's no private data, this must be the prototype, so ignore if (nsnull == nativeThis) { return JS_TRUE; } if (argc >= 1) { if (!JS_ValueToInt32(cx, argv[0], (int32 *)&b0)) { JS_ReportError(cx, "Parameter must be a number"); return JS_FALSE; } if (NS_OK != nativeThis->Item(b0, &nativeRet)) { return JS_FALSE; } if (nativeRet != nsnull) { nsIScriptObjectOwner *owner = nsnull; if (NS_OK == nativeRet->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) { JSObject *object = nsnull; nsIScriptContext *script_cx = (nsIScriptContext *)JS_GetContextPrivate(cx); if (NS_OK == owner->GetScriptObject(script_cx, (void**)&object)) { // set the return value *rval = OBJECT_TO_JSVAL(object); } NS_RELEASE(owner); } NS_RELEASE(nativeRet); } else { *rval = JSVAL_NULL; } } else { JS_ReportError(cx, "Function item requires 1 parameters"); return JS_FALSE; } return JS_TRUE; } /***********************************************************************/ // // class for NamedNodeMap // JSClass NamedNodeMapClass = { "NamedNodeMap", JSCLASS_HAS_PRIVATE, JS_PropertyStub, JS_PropertyStub, GetNamedNodeMapProperty, SetNamedNodeMapProperty, EnumerateNamedNodeMap, ResolveNamedNodeMap, JS_ConvertStub, FinalizeNamedNodeMap }; // // NamedNodeMap class properties // static JSPropertySpec NamedNodeMapProperties[] = { {"length", NAMEDNODEMAP_LENGTH, JSPROP_ENUMERATE | JSPROP_READONLY}, {0} }; // // NamedNodeMap class methods // static JSFunctionSpec NamedNodeMapMethods[] = { {"getNamedItem", NamedNodeMapGetNamedItem, 1}, {"setNamedItem", NamedNodeMapSetNamedItem, 1}, {"removeNamedItem", NamedNodeMapRemoveNamedItem, 1}, {"item", NamedNodeMapItem, 1}, {0} }; // // NamedNodeMap constructor // PR_STATIC_CALLBACK(JSBool) NamedNodeMap(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { return JS_FALSE; } // // NamedNodeMap class initialization // nsresult NS_InitNamedNodeMapClass(nsIScriptContext *aContext, void **aPrototype) { JSContext *jscontext = (JSContext *)aContext->GetNativeContext(); JSObject *proto = nsnull; JSObject *constructor = nsnull; JSObject *parent_proto = nsnull; JSObject *global = JS_GetGlobalObject(jscontext); jsval vp; if ((PR_TRUE != JS_LookupProperty(jscontext, global, "NamedNodeMap", &vp)) || !JSVAL_IS_OBJECT(vp) || ((constructor = JSVAL_TO_OBJECT(vp)) == nsnull) || (PR_TRUE != JS_LookupProperty(jscontext, JSVAL_TO_OBJECT(vp), "prototype", &vp)) || !JSVAL_IS_OBJECT(vp)) { proto = JS_InitClass(jscontext, // context global, // global object parent_proto, // parent proto &NamedNodeMapClass, // JSClass NamedNodeMap, // JSNative ctor 0, // ctor args NamedNodeMapProperties, // proto props NamedNodeMapMethods, // proto funcs nsnull, // ctor props (static) nsnull); // ctor funcs (static) if (nsnull == proto) { return NS_ERROR_FAILURE; } } else if ((nsnull != constructor) && JSVAL_IS_OBJECT(vp)) { proto = JSVAL_TO_OBJECT(vp); } else { return NS_ERROR_FAILURE; } if (aPrototype) { *aPrototype = proto; } return NS_OK; } // // Method for creating a new NamedNodeMap JavaScript object // extern "C" NS_DOM nsresult NS_NewScriptNamedNodeMap(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn) { NS_PRECONDITION(nsnull != aContext && nsnull != aSupports && nsnull != aReturn, "null argument to NS_NewScriptNamedNodeMap"); JSObject *proto; JSObject *parent; nsIScriptObjectOwner *owner; JSContext *jscontext = (JSContext *)aContext->GetNativeContext(); nsresult result = NS_OK; nsIDOMNamedNodeMap *aNamedNodeMap; if (nsnull == aParent) { parent = nsnull; } else if (NS_OK == aParent->QueryInterface(kIScriptObjectOwnerIID, (void**)&owner)) { if (NS_OK != owner->GetScriptObject(aContext, (void **)&parent)) { NS_RELEASE(owner); return NS_ERROR_FAILURE; } NS_RELEASE(owner); } else { return NS_ERROR_FAILURE; } if (NS_OK != NS_InitNamedNodeMapClass(aContext, (void **)&proto)) { return NS_ERROR_FAILURE; } result = aSupports->QueryInterface(kINamedNodeMapIID, (void **)&aNamedNodeMap); if (NS_OK != result) { return result; } // create a js object for this class *aReturn = JS_NewObject(jscontext, &NamedNodeMapClass, proto, parent); if (nsnull != *aReturn) { // connect the native object to the js object JS_SetPrivate(jscontext, (JSObject *)*aReturn, aNamedNodeMap); } else { NS_RELEASE(aNamedNodeMap); return NS_ERROR_FAILURE; } return NS_OK; }