gecko-dev/xpcom/components/xcDll.h

127 lines
3.6 KiB
C
Raw Normal View History

1999-02-01 22:40:48 +00:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* The contents of this file are subject to the Netscape 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/NPL/
1999-02-01 22:40:48 +00:00
*
* 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.
1999-02-01 22:40:48 +00:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-02-01 22:40:48 +00:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-02-01 22:40:48 +00:00
*/
/* Dll
*
* Programmatic representation of a dll. Stores modifiedTime and size for
* easy detection of change in dll.
*
* dp Suresh <dp@netscape.com>
*/
2000-01-24 21:28:28 +00:00
#ifndef xcDll_h__
#define xcDll_h__
1999-02-01 22:40:48 +00:00
#include "prio.h"
#include "prlink.h"
#include "nsISupports.h"
2000-01-24 21:28:28 +00:00
#include "nsIFile.h"
#include "nsCOMPtr.h"
class nsIModule;
class nsIServiceManager;
1999-02-01 22:40:48 +00:00
typedef enum nsDllStatus
1999-02-01 22:40:48 +00:00
{
DLL_OK = 0,
DLL_NO_MEM = 1,
DLL_STAT_ERROR = 2,
DLL_NOT_FILE = 3,
DLL_INVALID_PARAM = 4
} nsDllStatus;
1999-02-01 22:40:48 +00:00
class nsDll
1999-02-01 22:40:48 +00:00
{
private:
char *m_dllName; // Stores the dllName to load.
1999-06-22 14:02:58 +00:00
2000-01-24 21:28:28 +00:00
nsCOMPtr<nsIFile> m_dllSpec; // Filespec representing the component
PRInt64 m_modDate; // last modified time at creation of this object
PRInt64 m_size; // size of the dynamic library at creation of this object
1999-06-22 14:02:58 +00:00
1999-02-01 22:40:48 +00:00
PRLibrary *m_instance; // Load instance
1999-06-22 14:02:58 +00:00
nsDllStatus m_status; // holds current status
nsIModule *m_moduleObject;
1999-06-22 14:02:58 +00:00
// Cache frequent queries
char *m_persistentDescriptor;
char *m_nativePath;
PRBool m_markForUnload;
char *m_registryLocation;
2000-01-24 21:28:28 +00:00
void Init(nsIFile *dllSpec);
1999-06-22 14:02:58 +00:00
void Init(const char *persistentDescriptor);
1999-02-01 22:40:48 +00:00
2000-01-28 09:49:10 +00:00
void BreakAfterLoad(const char *nsprPath);
1999-02-01 22:40:48 +00:00
public:
2000-01-24 21:28:28 +00:00
nsDll(nsIFile *dllSpec, const char *registryLocation);
nsDll(nsIFile *dllSpec, const char *registryLocation, PRInt64* modDate, PRInt64* fileSize);
1999-06-22 14:02:58 +00:00
nsDll(const char *persistentDescriptor);
2000-01-24 21:28:28 +00:00
nsDll(const char *persistentDescriptor, PRInt64* modDate, PRInt64* fileSize);
1999-06-22 14:02:58 +00:00
nsDll(const char *dll, int type /* dummy */);
~nsDll(void);
1999-02-01 22:40:48 +00:00
// Sync : Causes update of file information
nsresult Sync(void);
// Status checking on operations completed
nsDllStatus GetStatus(void) { return (m_status); }
1999-02-01 22:40:48 +00:00
// Dll Loading
PRBool Load(void);
PRBool Unload(void);
PRBool IsLoaded(void)
{
return ((m_instance != 0) ? PR_TRUE : PR_FALSE);
}
void MarkForUnload(PRBool mark) { m_markForUnload = mark; }
PRBool IsMarkedForUnload(void) { return m_markForUnload; }
// Shutdown the dll. This will call any on unload hook for the dll.
// This wont unload the dll. Unload() implicitly calls Shutdown().
nsresult Shutdown(void);
1999-02-01 22:40:48 +00:00
void *FindSymbol(const char *symbol);
1999-06-22 14:02:58 +00:00
PRBool HasChanged(void);
// WARNING: DONT FREE string returned.
2000-01-24 21:28:28 +00:00
const char *GetDisplayPath(void);
// WARNING: DONT FREE string returned.
1999-06-22 14:02:58 +00:00
const char *GetPersistentDescriptorString(void);
// WARNING: DONT FREE string returned.
const char *GetRegistryLocation(void) { return m_registryLocation; }
2000-01-24 21:28:28 +00:00
void GetLastModifiedTime(PRInt64 *val) { *val = m_modDate; }
void GetSize(PRInt64 *val) { *val = m_size; }
1999-02-01 22:40:48 +00:00
PRLibrary *GetInstance(void) { return (m_instance); }
// NS_RELEASE() is required to be done on objects returned
2000-01-24 21:28:28 +00:00
nsresult GetDllSpec(nsIFile **dllSpec);
nsresult GetModule(nsISupports *servMgr, nsIModule **mobj);
1999-02-01 22:40:48 +00:00
};
#endif /* xcDll_h__ */