/* -*- 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 "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/NPL/ * * 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 Communicator client code. * * The Initial Developer of the Original Code is Netscape Communications * Corporation. Portions created by Netscape are Copyright (C) 1998 * Netscape Communications Corporation. All Rights Reserved. */ #include "nsICmdLineService.h" #include "nsVoidArray.h" #include "nsIComponentManager.h" #include "nsString.h" #include "plstr.h" /* Define Class IDs */ static NS_DEFINE_IID(kCmdLineServiceCID, NS_COMMANDLINE_SERVICE_CID); static NS_DEFINE_IID(kICommandLineIID, NS_ICOMMANDLINE_SERVICE_IID); /* Define Interface IDs */ static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID); static NS_DEFINE_IID(kICommandLineServiceIID, NS_ICOMMANDLINE_SERVICE_IID); class nsCmdLineService : public nsICmdLineService { public: nsCmdLineService(void); NS_DECL_ISUPPORTS NS_IMETHOD Initialize(PRInt32 aArgc, char** aArgv); NS_IMETHOD GetCmdLineValue(char* aArg, char **aValue); NS_IMETHOD GetURLToLoad(char ** aResult); NS_IMETHOD GetProgramName(char ** aResult); NS_IMETHOD GetArgc(PRInt32 * aResult); NS_IMETHOD GetArgv(char ** aResult[]); protected: virtual ~nsCmdLineService(); nsVoidArray mArgList; // The arguments nsVoidArray mArgValueList; // The argument values PRInt32 mArgCount; // This is not argc. This is # of argument pairs // in the arglist and argvaluelist arrays. This // normally is argc/2. PRInt32 mArgc; // This is argc; char ** mArgv; // This is argv; }; nsCmdLineService::nsCmdLineService() : mArgCount(0), mArgc(0), mArgv(0) { NS_INIT_REFCNT(); } /* * Implement the nsISupports methods... */ NS_IMPL_ISUPPORTS(nsCmdLineService, kICommandLineServiceIID); NS_IMETHODIMP nsCmdLineService::Initialize(int aArgc, char ** aArgv) { PRInt32 i=0; nsresult rv = nsnull; // Save aArgc and argv mArgc = aArgc; mArgv = aArgv; //Insert the program name if (aArgv[0]) { mArgList.AppendElement((void *)PL_strdup("-progname")); mArgValueList.AppendElement((void *)PL_strdup(aArgv[0])); mArgCount++; i++; } for(i=1; iQueryInterface(aIID, aResult); NS_RELEASE(inst); done: return rv; } extern "C" NS_APPSHELL nsresult NS_NewCmdLineServiceFactory(nsIFactory** aFactory) { nsresult rv = NS_OK; nsIFactory* inst = new nsCmdLineServiceFactory(); if (nsnull == inst) { rv = NS_ERROR_OUT_OF_MEMORY; } else { NS_ADDREF(inst); } *aFactory = inst; return rv; }