зеркало из https://github.com/mozilla/gecko-dev.git
245 строки
7.1 KiB
C++
245 строки
7.1 KiB
C++
/* ***** 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 IPC.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Darin Fisher <darin@netscape.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either 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 <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "prlink.h"
|
|
#include "prio.h"
|
|
#include "prlog.h"
|
|
#include "plstr.h"
|
|
|
|
#include "ipcConfig.h"
|
|
#include "ipcLog.h"
|
|
#include "ipcModuleReg.h"
|
|
#include "ipcModule.h"
|
|
#include "ipcCommandModule.h"
|
|
#include "ipcd.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
struct ipcModuleRegEntry
|
|
{
|
|
nsID target;
|
|
ipcModuleMethods *methods;
|
|
PRLibrary *lib;
|
|
};
|
|
|
|
#define IPC_MAX_MODULE_COUNT 64
|
|
|
|
static ipcModuleRegEntry ipcModules[IPC_MAX_MODULE_COUNT];
|
|
static int ipcModuleCount = 0;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
static PRStatus
|
|
AddModule(const nsID &target, ipcModuleMethods *methods, const char *libPath)
|
|
{
|
|
if (ipcModuleCount == IPC_MAX_MODULE_COUNT) {
|
|
LOG(("too many modules!\n"));
|
|
return PR_FAILURE;
|
|
}
|
|
|
|
if (!methods) {
|
|
PR_NOT_REACHED("null module methods");
|
|
return PR_FAILURE;
|
|
}
|
|
|
|
//
|
|
// each ipcModuleRegEntry holds a reference to a PRLibrary, and on
|
|
// shutdown, each PRLibrary reference will be released. this ensures
|
|
// that the library will not be unloaded until all of the modules in
|
|
// that library are shutdown.
|
|
//
|
|
ipcModules[ipcModuleCount].target = target;
|
|
ipcModules[ipcModuleCount].methods = methods;
|
|
ipcModules[ipcModuleCount].lib = PR_LoadLibrary(libPath);
|
|
|
|
++ipcModuleCount;
|
|
return PR_SUCCESS;
|
|
}
|
|
|
|
static void
|
|
InitModuleFromLib(const char *modulesDir, const char *fileName)
|
|
{
|
|
LOG(("InitModuleFromLib [%s]\n", fileName));
|
|
|
|
static const ipcDaemonMethods gDaemonMethods =
|
|
{
|
|
IPC_DAEMON_METHODS_VERSION,
|
|
IPC_DispatchMsg,
|
|
IPC_SendMsg,
|
|
IPC_GetClientByID,
|
|
IPC_GetClientByName,
|
|
IPC_EnumClients,
|
|
IPC_GetClientID,
|
|
IPC_ClientHasName,
|
|
IPC_ClientHasTarget,
|
|
IPC_EnumClientNames,
|
|
IPC_EnumClientTargets
|
|
};
|
|
|
|
int dLen = strlen(modulesDir);
|
|
int fLen = strlen(fileName);
|
|
|
|
char *buf = (char *) malloc(dLen + 1 + fLen + 1);
|
|
memcpy(buf, modulesDir, dLen);
|
|
buf[dLen] = IPC_PATH_SEP_CHAR;
|
|
memcpy(buf + dLen + 1, fileName, fLen);
|
|
buf[dLen + 1 + fLen] = '\0';
|
|
|
|
PRLibrary *lib = PR_LoadLibrary(buf);
|
|
if (lib) {
|
|
ipcGetModulesFunc func =
|
|
(ipcGetModulesFunc) PR_FindFunctionSymbol(lib, "IPC_GetModules");
|
|
|
|
LOG((" func=%p\n", (void*) func));
|
|
|
|
if (func) {
|
|
const ipcModuleEntry *entries = NULL;
|
|
int count = func(&gDaemonMethods, &entries);
|
|
for (int i=0; i<count; ++i) {
|
|
if (AddModule(entries[i].target, entries[i].methods, buf)) {
|
|
if (entries[i].methods->init)
|
|
entries[i].methods->init();
|
|
}
|
|
}
|
|
}
|
|
PR_UnloadLibrary(lib);
|
|
}
|
|
|
|
free(buf);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// ipcModuleReg API
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
IPC_InitModuleReg(const char *exePath)
|
|
{
|
|
if (!(exePath && *exePath))
|
|
return;
|
|
|
|
//
|
|
// register plug-in modules
|
|
//
|
|
char *p = PL_strrchr(exePath, IPC_PATH_SEP_CHAR);
|
|
if (p == NULL) {
|
|
LOG(("unexpected exe path\n"));
|
|
return;
|
|
}
|
|
|
|
int baseLen = p - exePath;
|
|
int finalLen = baseLen + 1 + sizeof(IPC_MODULES_DIR);
|
|
|
|
// build full path to ipc modules
|
|
char *modulesDir = (char*) malloc(finalLen);
|
|
memcpy(modulesDir, exePath, baseLen);
|
|
modulesDir[baseLen] = IPC_PATH_SEP_CHAR;
|
|
memcpy(modulesDir + baseLen + 1, IPC_MODULES_DIR, sizeof(IPC_MODULES_DIR));
|
|
|
|
LOG(("loading libraries in %s\n", modulesDir));
|
|
//
|
|
// scan directory for IPC modules
|
|
//
|
|
PRDir *dir = PR_OpenDir(modulesDir);
|
|
if (dir) {
|
|
PRDirEntry *ent;
|
|
while ((ent = PR_ReadDir(dir, PR_SKIP_BOTH)) != NULL) {
|
|
//
|
|
// locate extension, and check if dynamic library
|
|
//
|
|
char *p = strrchr(ent->name, '.');
|
|
if (p && PL_strcasecmp(p, MOZ_DLL_SUFFIX) == 0)
|
|
InitModuleFromLib(modulesDir, ent->name);
|
|
}
|
|
PR_CloseDir(dir);
|
|
}
|
|
|
|
free(modulesDir);
|
|
}
|
|
|
|
void
|
|
IPC_ShutdownModuleReg()
|
|
{
|
|
//
|
|
// shutdown modules in reverse order
|
|
//
|
|
while (ipcModuleCount) {
|
|
ipcModuleRegEntry &entry = ipcModules[--ipcModuleCount];
|
|
if (entry.methods->shutdown)
|
|
entry.methods->shutdown();
|
|
if (entry.lib)
|
|
PR_UnloadLibrary(entry.lib);
|
|
}
|
|
}
|
|
|
|
void
|
|
IPC_NotifyClientUp(ipcClient *client)
|
|
{
|
|
for (int i = 0; i < ipcModuleCount; ++i) {
|
|
ipcModuleRegEntry &entry = ipcModules[i];
|
|
if (entry.methods->clientUp)
|
|
entry.methods->clientUp(client);
|
|
}
|
|
}
|
|
|
|
void
|
|
IPC_NotifyClientDown(ipcClient *client)
|
|
{
|
|
for (int i = 0; i < ipcModuleCount; ++i) {
|
|
ipcModuleRegEntry &entry = ipcModules[i];
|
|
if (entry.methods->clientDown)
|
|
entry.methods->clientDown(client);
|
|
}
|
|
}
|
|
|
|
PRStatus
|
|
IPC_DispatchMsg(ipcClient *client, const nsID &target, const void *data, PRUint32 dataLen)
|
|
{
|
|
// dispatch message to every module registered under the given target.
|
|
for (int i=0; i<ipcModuleCount; ++i) {
|
|
ipcModuleRegEntry &entry = ipcModules[i];
|
|
if (entry.target.Equals(target)) {
|
|
if (entry.methods->handleMsg)
|
|
entry.methods->handleMsg(client, target, data, dataLen);
|
|
}
|
|
}
|
|
return PR_SUCCESS;
|
|
}
|