/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org Code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "jsapi.h" #include "nscore.h" #include "nsIScriptContext.h" #include "nsString.h" #include "nsInstall.h" #include "nsJSFileSpecObj.h" extern void ConvertJSValToStr(nsString& aString, JSContext* aContext, jsval aValue); extern void ConvertStrToJSVal(const nsString& aProp, JSContext* aContext, jsval* aReturn); extern PRBool ConvertJSValToBool(PRBool* aProp, JSContext* aContext, jsval aValue); static void PR_CALLBACK FileSpecObjectCleanup(JSContext *cx, JSObject *obj); /***********************************************************************/ // // class for FileObj // JSClass FileSpecObjectClass = { "FileSpecObject", JSCLASS_HAS_PRIVATE, JS_PropertyStub, JS_PropertyStub, JS_PropertyStub, JS_PropertyStub, JS_EnumerateStub, JS_ResolveStub, JS_ConvertStub, FileSpecObjectCleanup }; /***********************************************************************************/ // Native methods for FileSpecObj functions /* * Native method fso_ToString */ PR_STATIC_CALLBACK(JSBool) fso_ToString(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { nsInstallFolder *nativeThis = (nsInstallFolder*)JS_GetInstancePrivate(cx, obj, &FileSpecObjectClass, argv); if (!nativeThis) return JS_FALSE; nsAutoString stringReturned; *rval = JSVAL_NULL; if(NS_FAILED( nativeThis->ToString(&stringReturned))) return JS_TRUE; JSString *jsstring = JS_NewUCStringCopyN(cx, NS_REINTERPRET_CAST(const jschar*, stringReturned.get()), stringReturned.Length()); // set the return value *rval = STRING_TO_JSVAL(jsstring); return JS_TRUE; } /* * Native method fso_AppendString */ PR_STATIC_CALLBACK(JSBool) fso_AppendPath(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { return JS_TRUE; } /* * FileSpecObj destructor */ static void PR_CALLBACK FileSpecObjectCleanup(JSContext *cx, JSObject *obj) { nsInstallFolder *nativeThis = (nsInstallFolder*)JS_GetPrivate(cx, obj); if (nativeThis != nsnull) delete nativeThis; } // // FileObj class methods // static JSFunctionSpec fileSpecObjMethods[] = { {"appendPath", fso_AppendPath, 1}, {"toString", fso_ToString, 0}, {0} }; PRInt32 InitFileSpecObjectPrototype(JSContext *jscontext, JSObject *global, JSObject **fileSpecObjectPrototype) { *fileSpecObjectPrototype = JS_InitClass( jscontext, // context global, // global object nsnull, // parent proto &FileSpecObjectClass, // JSClass nsnull, // JSNative ctor 0, // ctor args nsnull, // proto props fileSpecObjMethods,// proto funcs nsnull, // ctor props (static) nsnull); // ctor funcs (static) if (nsnull == *fileSpecObjectPrototype) { return NS_ERROR_FAILURE; } return NS_OK; }