2004-08-19 20:00:09 +04:00
|
|
|
/*
|
2004-08-29 19:20:34 +04:00
|
|
|
** Copyright 2004, the Haiku project. All rights reserved.
|
|
|
|
** Distributed under the terms of the Haiku License.
|
2004-08-19 20:00:09 +04:00
|
|
|
**
|
2004-08-20 02:09:27 +04:00
|
|
|
** Author : Jérôme Duval
|
|
|
|
** Original authors: Marcus Overhagen, Axel Dörfler
|
2004-08-19 20:00:09 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <Autolock.h>
|
|
|
|
#include <Directory.h>
|
|
|
|
#include <Entry.h>
|
|
|
|
#include <FindDirectory.h>
|
|
|
|
#include <Path.h>
|
|
|
|
#include <String.h>
|
|
|
|
|
|
|
|
#include <image.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "AddOnManager.h"
|
2004-08-20 02:09:27 +04:00
|
|
|
#include "InputServer.h"
|
2004-08-19 20:00:09 +04:00
|
|
|
|
|
|
|
|
2004-08-29 23:34:35 +04:00
|
|
|
AddOnManager::AddOnManager(bool safeMode)
|
|
|
|
: fLock("add-on manager"),
|
|
|
|
fSafeMode(safeMode)
|
2004-08-19 20:00:09 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AddOnManager::~AddOnManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
AddOnManager::LoadState()
|
|
|
|
{
|
|
|
|
RegisterAddOns();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
AddOnManager::SaveState()
|
|
|
|
{
|
2004-08-24 01:50:09 +04:00
|
|
|
CALLED();
|
|
|
|
UnregisterAddOns();
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
|
|
|
AddOnManager::RegisterAddOn(BEntry &entry)
|
|
|
|
{
|
|
|
|
BPath path(&entry);
|
|
|
|
|
|
|
|
entry_ref ref;
|
|
|
|
status_t status = entry.GetRef(&ref);
|
|
|
|
if (status < B_OK)
|
|
|
|
return status;
|
|
|
|
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): trying to load \"%s\"\n", path.Path()));
|
2004-08-19 20:00:09 +04:00
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
image_id addon_image = load_add_on(path.Path());
|
|
|
|
|
2004-10-06 00:42:08 +04:00
|
|
|
if (addon_image < B_OK) {
|
|
|
|
PRINT(("load addon %s failed\n", path.Path()));
|
2004-08-20 02:09:27 +04:00
|
|
|
return addon_image;
|
2004-10-06 00:42:08 +04:00
|
|
|
}
|
|
|
|
|
2004-08-19 20:00:09 +04:00
|
|
|
BEntry parent;
|
|
|
|
entry.GetParent(&parent);
|
|
|
|
BPath parentPath(&parent);
|
|
|
|
BString pathString = parentPath.Path();
|
|
|
|
|
|
|
|
if (pathString.FindFirst("input_server/devices")>0) {
|
|
|
|
BInputServerDevice *(*instantiate_func)();
|
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
if (get_image_symbol(addon_image, "instantiate_input_device",
|
2004-08-19 20:00:09 +04:00
|
|
|
B_SYMBOL_TYPE_TEXT, (void **)&instantiate_func) < B_OK) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): can't find instantiate_input_device in \"%s\"\n",
|
|
|
|
path.Path()));
|
2004-08-20 02:09:27 +04:00
|
|
|
goto exit_error;
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BInputServerDevice *isd = (*instantiate_func)();
|
|
|
|
if (isd == NULL) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): instantiate_input_device in \"%s\" returned NULL\n",
|
|
|
|
path.Path()));
|
2004-08-20 02:09:27 +04:00
|
|
|
goto exit_error;
|
|
|
|
}
|
|
|
|
status_t status = isd->InitCheck();
|
|
|
|
if (status != B_OK) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): BInputServerDevice.InitCheck in \"%s\" returned %s\n",
|
|
|
|
path.Path(), strerror(status)));
|
2004-08-20 02:09:27 +04:00
|
|
|
delete isd;
|
|
|
|
goto exit_error;
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
RegisterDevice(isd, ref, addon_image);
|
2004-08-24 01:50:09 +04:00
|
|
|
|
|
|
|
|
2004-08-19 20:00:09 +04:00
|
|
|
} else if (pathString.FindFirst("input_server/filters")>0) {
|
|
|
|
BInputServerFilter *(*instantiate_func)();
|
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
if (get_image_symbol(addon_image, "instantiate_input_filter",
|
2004-08-19 20:00:09 +04:00
|
|
|
B_SYMBOL_TYPE_TEXT, (void **)&instantiate_func) < B_OK) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): can't find instantiate_input_filter in \"%s\"\n",
|
|
|
|
path.Path()));
|
2004-08-20 02:09:27 +04:00
|
|
|
goto exit_error;
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BInputServerFilter *isf = (*instantiate_func)();
|
|
|
|
if (isf == NULL) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): instantiate_input_filter in \"%s\" returned NULL\n",
|
|
|
|
path.Path()));
|
2004-08-20 02:09:27 +04:00
|
|
|
goto exit_error;
|
|
|
|
}
|
|
|
|
status_t status = isf->InitCheck();
|
|
|
|
if (status != B_OK) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): BInputServerFilter.InitCheck in \"%s\" returned %s\n",
|
|
|
|
path.Path(), strerror(status)));
|
2004-08-20 02:09:27 +04:00
|
|
|
delete isf;
|
|
|
|
goto exit_error;
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
RegisterFilter(isf, ref, addon_image);
|
2004-08-19 20:00:09 +04:00
|
|
|
|
|
|
|
} else if (pathString.FindFirst("input_server/methods")>0) {
|
|
|
|
BInputServerMethod *(*instantiate_func)();
|
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
if (get_image_symbol(addon_image, "instantiate_input_method",
|
2004-08-19 20:00:09 +04:00
|
|
|
B_SYMBOL_TYPE_TEXT, (void **)&instantiate_func) < B_OK) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): can't find instantiate_input_method in \"%s\"\n",
|
|
|
|
path.Path()));
|
2004-08-20 02:09:27 +04:00
|
|
|
goto exit_error;
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BInputServerMethod *ism = (*instantiate_func)();
|
|
|
|
if (ism == NULL) {
|
2004-10-06 00:42:08 +04:00
|
|
|
PRINT(("AddOnManager::RegisterAddOn(): instantiate_input_method in \"%s\" returned NULL\n",
|
|
|
|
path.Path()));
|
2004-08-20 02:09:27 +04:00
|
|
|
goto exit_error;
|
|
|
|
}
|
|
|
|
status_t status = ism->InitCheck();
|
|
|
|
if (status != B_OK) {
|
|
|
|
printf("AddOnManager::RegisterAddOn(): BInputServerMethod.InitCheck in \"%s\" returned %s\n",
|
|
|
|
path.Path(), strerror(status));
|
|
|
|
delete ism;
|
|
|
|
goto exit_error;
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
RegisterMethod(ism, ref, addon_image);
|
2004-08-19 20:00:09 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return B_OK;
|
2004-08-20 02:09:27 +04:00
|
|
|
exit_error:
|
|
|
|
unload_add_on(addon_image);
|
|
|
|
|
|
|
|
return status;
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-20 02:09:27 +04:00
|
|
|
status_t
|
|
|
|
AddOnManager::UnregisterAddOn(BEntry &entry)
|
|
|
|
{
|
|
|
|
BPath path(&entry);
|
|
|
|
|
|
|
|
entry_ref ref;
|
|
|
|
status_t status = entry.GetRef(&ref);
|
|
|
|
if (status < B_OK)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
PRINT(("AddOnManager::UnregisterAddOn(): trying to unload \"%s\"\n", path.Path()));
|
|
|
|
|
|
|
|
BEntry parent;
|
|
|
|
entry.GetParent(&parent);
|
|
|
|
BPath parentPath(&parent);
|
|
|
|
BString pathString = parentPath.Path();
|
|
|
|
|
|
|
|
BAutolock locker(fLock);
|
|
|
|
|
|
|
|
if (pathString.FindFirst("input_server/devices")>0) {
|
|
|
|
device_info *pinfo;
|
|
|
|
for (fDeviceList.Rewind(); fDeviceList.GetNext(&pinfo);) {
|
|
|
|
if (!strcmp(pinfo->ref.name, ref.name)) {
|
2004-08-24 01:50:09 +04:00
|
|
|
InputServer::StartStopDevices(pinfo->isd, false);
|
2004-08-20 02:09:27 +04:00
|
|
|
delete pinfo->isd;
|
|
|
|
if (pinfo->addon_image >= B_OK)
|
|
|
|
unload_add_on(pinfo->addon_image);
|
|
|
|
fDeviceList.RemoveCurrent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (pathString.FindFirst("input_server/filters")>0) {
|
|
|
|
filter_info *pinfo;
|
|
|
|
for (fFilterList.Rewind(); fFilterList.GetNext(&pinfo);) {
|
|
|
|
if (!strcmp(pinfo->ref.name, ref.name)) {
|
|
|
|
delete pinfo->isf;
|
|
|
|
if (pinfo->addon_image >= B_OK)
|
|
|
|
unload_add_on(pinfo->addon_image);
|
|
|
|
fFilterList.RemoveCurrent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (pathString.FindFirst("input_server/methods")>0) {
|
|
|
|
method_info *pinfo;
|
|
|
|
for (fMethodList.Rewind(); fMethodList.GetNext(&pinfo);) {
|
|
|
|
if (!strcmp(pinfo->ref.name, ref.name)) {
|
|
|
|
delete pinfo->ism;
|
|
|
|
if (pinfo->addon_image >= B_OK)
|
|
|
|
unload_add_on(pinfo->addon_image);
|
|
|
|
fMethodList.RemoveCurrent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return B_OK;
|
|
|
|
}
|
|
|
|
|
2004-08-19 20:00:09 +04:00
|
|
|
void
|
|
|
|
AddOnManager::RegisterAddOns()
|
|
|
|
{
|
|
|
|
class IAHandler : public AddOnMonitorHandler {
|
|
|
|
private:
|
|
|
|
AddOnManager * fManager;
|
|
|
|
public:
|
|
|
|
IAHandler(AddOnManager * manager) {
|
|
|
|
fManager = manager;
|
|
|
|
}
|
|
|
|
virtual void AddOnCreated(const add_on_entry_info * entry_info) {
|
|
|
|
}
|
|
|
|
virtual void AddOnEnabled(const add_on_entry_info * entry_info) {
|
2004-08-20 02:09:27 +04:00
|
|
|
CALLED();
|
2004-08-19 20:00:09 +04:00
|
|
|
entry_ref ref;
|
|
|
|
make_entry_ref(entry_info->dir_nref.device, entry_info->dir_nref.node,
|
|
|
|
entry_info->name, &ref);
|
|
|
|
BEntry entry(&ref, false);
|
|
|
|
fManager->RegisterAddOn(entry);
|
|
|
|
}
|
|
|
|
virtual void AddOnDisabled(const add_on_entry_info * entry_info) {
|
2004-08-20 02:09:27 +04:00
|
|
|
CALLED();
|
|
|
|
entry_ref ref;
|
|
|
|
make_entry_ref(entry_info->dir_nref.device, entry_info->dir_nref.node,
|
|
|
|
entry_info->name, &ref);
|
|
|
|
BEntry entry(&ref, false);
|
|
|
|
fManager->UnregisterAddOn(entry);
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
virtual void AddOnRemoved(const add_on_entry_info * entry_info) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const directory_which directories[] = {
|
|
|
|
B_USER_ADDONS_DIRECTORY,
|
|
|
|
B_COMMON_ADDONS_DIRECTORY,
|
2004-09-29 19:42:47 +04:00
|
|
|
B_BEOS_ADDONS_DIRECTORY
|
2004-08-19 20:00:09 +04:00
|
|
|
};
|
|
|
|
const char subDirectories[][24] = {
|
2004-08-24 01:50:09 +04:00
|
|
|
"input_server/devices",
|
2004-08-19 20:00:09 +04:00
|
|
|
"input_server/filters",
|
2004-08-29 19:20:34 +04:00
|
|
|
"input_server/methods"
|
2004-08-19 20:00:09 +04:00
|
|
|
};
|
|
|
|
fHandler = new IAHandler(this);
|
|
|
|
fAddOnMonitor = new AddOnMonitor(fHandler);
|
|
|
|
|
|
|
|
node_ref nref;
|
|
|
|
BDirectory directory;
|
|
|
|
BPath path;
|
2004-10-04 02:44:33 +04:00
|
|
|
// when safemode, only B_BEOS_ADDONS_DIRECTORY is used
|
|
|
|
for (uint32 i = fSafeMode ? 2 : 0 ; i < sizeof(directories) / sizeof(directory_which) ; i++)
|
2004-08-29 23:34:35 +04:00
|
|
|
for (uint32 j = 0 ; j < sizeof(subDirectories) / sizeof(char[24]) ; j++) {
|
2004-08-19 20:00:09 +04:00
|
|
|
if ((find_directory(directories[i], &path) == B_OK)
|
|
|
|
&& (path.Append(subDirectories[j]) == B_OK)
|
|
|
|
&& (directory.SetTo(path.Path()) == B_OK)
|
|
|
|
&& (directory.GetNodeRef(&nref) == B_OK)) {
|
|
|
|
fHandler->AddDirectory(&nref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-24 01:50:09 +04:00
|
|
|
void
|
|
|
|
AddOnManager::UnregisterAddOns()
|
|
|
|
{
|
|
|
|
BMessenger messenger(fAddOnMonitor);
|
|
|
|
messenger.SendMessage(B_QUIT_REQUESTED);
|
|
|
|
int32 exit_value;
|
|
|
|
wait_for_thread(fAddOnMonitor->Thread(), &exit_value);
|
|
|
|
delete fHandler;
|
|
|
|
|
|
|
|
BAutolock locker(fLock);
|
|
|
|
|
|
|
|
// we have to stop manually the addons because the monitor doesn't disable them on exit
|
|
|
|
|
|
|
|
{
|
|
|
|
device_info *pinfo;
|
|
|
|
for (fDeviceList.Rewind(); fDeviceList.GetNext(&pinfo);) {
|
|
|
|
InputServer::StartStopDevices(pinfo->isd, false);
|
|
|
|
delete pinfo->isd;
|
|
|
|
if (pinfo->addon_image >= B_OK)
|
|
|
|
unload_add_on(pinfo->addon_image);
|
|
|
|
fDeviceList.RemoveCurrent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
filter_info *pinfo;
|
|
|
|
for (fFilterList.Rewind(); fFilterList.GetNext(&pinfo);) {
|
|
|
|
delete pinfo->isf;
|
|
|
|
if (pinfo->addon_image >= B_OK)
|
|
|
|
unload_add_on(pinfo->addon_image);
|
|
|
|
fFilterList.RemoveCurrent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
method_info *pinfo;
|
|
|
|
for (fMethodList.Rewind(); fMethodList.GetNext(&pinfo);) {
|
|
|
|
delete pinfo->ism;
|
|
|
|
if (pinfo->addon_image >= B_OK)
|
|
|
|
unload_add_on(pinfo->addon_image);
|
|
|
|
fMethodList.RemoveCurrent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-19 20:00:09 +04:00
|
|
|
void
|
2004-08-20 02:09:27 +04:00
|
|
|
AddOnManager::RegisterDevice(BInputServerDevice *device, const entry_ref &ref, image_id addon_image)
|
2004-08-19 20:00:09 +04:00
|
|
|
{
|
|
|
|
BAutolock locker(fLock);
|
|
|
|
|
|
|
|
device_info *pinfo;
|
|
|
|
for (fDeviceList.Rewind(); fDeviceList.GetNext(&pinfo);) {
|
|
|
|
if (!strcmp(pinfo->ref.name, ref.name)) {
|
|
|
|
// we already know this device
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRINT(("AddOnManager::RegisterDevice, name %s\n", ref.name));
|
|
|
|
|
|
|
|
device_info info;
|
|
|
|
info.ref = ref;
|
2004-08-20 02:09:27 +04:00
|
|
|
info.addon_image = addon_image;
|
|
|
|
info.isd = device;
|
|
|
|
|
2004-08-19 20:00:09 +04:00
|
|
|
fDeviceList.Insert(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2004-08-20 02:09:27 +04:00
|
|
|
AddOnManager::RegisterFilter(BInputServerFilter *filter, const entry_ref &ref, image_id addon_image)
|
2004-08-19 20:00:09 +04:00
|
|
|
{
|
|
|
|
BAutolock locker(fLock);
|
|
|
|
|
|
|
|
filter_info *pinfo;
|
|
|
|
for (fFilterList.Rewind(); fFilterList.GetNext(&pinfo);) {
|
|
|
|
if (!strcmp(pinfo->ref.name, ref.name)) {
|
|
|
|
// we already know this ref
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRINT(("%s, name %s\n", __PRETTY_FUNCTION__, ref.name));
|
|
|
|
|
|
|
|
filter_info info;
|
|
|
|
info.ref = ref;
|
2004-08-20 02:09:27 +04:00
|
|
|
info.addon_image = addon_image;
|
|
|
|
info.isf = filter;
|
2004-08-19 20:00:09 +04:00
|
|
|
|
|
|
|
fFilterList.Insert(info);
|
2004-08-24 01:50:09 +04:00
|
|
|
|
|
|
|
BAutolock lock2(InputServer::gInputFilterListLocker);
|
|
|
|
|
|
|
|
InputServer::gInputFilterList.AddItem(filter);
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2004-08-20 02:09:27 +04:00
|
|
|
AddOnManager::RegisterMethod(BInputServerMethod *method, const entry_ref &ref, image_id addon_image)
|
2004-08-19 20:00:09 +04:00
|
|
|
{
|
|
|
|
BAutolock locker(fLock);
|
|
|
|
|
|
|
|
method_info *pinfo;
|
|
|
|
for (fMethodList.Rewind(); fMethodList.GetNext(&pinfo);) {
|
|
|
|
if (!strcmp(pinfo->ref.name, ref.name)) {
|
|
|
|
// we already know this ref
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRINT(("%s, name %s\n", __PRETTY_FUNCTION__, ref.name));
|
|
|
|
|
|
|
|
method_info info;
|
|
|
|
info.ref = ref;
|
2004-08-20 02:09:27 +04:00
|
|
|
info.addon_image = addon_image;
|
|
|
|
info.ism = method;
|
2004-08-27 17:14:17 +04:00
|
|
|
|
2004-08-19 20:00:09 +04:00
|
|
|
fMethodList.Insert(info);
|
2004-08-24 01:50:09 +04:00
|
|
|
|
|
|
|
BAutolock lock2(InputServer::gInputMethodListLocker);
|
|
|
|
|
|
|
|
InputServer::gInputMethodList.AddItem(method);
|
2004-08-19 20:00:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|