diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/omBrowser/serviceFactory.cpp | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/omBrowser/serviceFactory.cpp')
-rw-r--r-- | Src/omBrowser/serviceFactory.cpp | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/Src/omBrowser/serviceFactory.cpp b/Src/omBrowser/serviceFactory.cpp new file mode 100644 index 00000000..65b1d323 --- /dev/null +++ b/Src/omBrowser/serviceFactory.cpp @@ -0,0 +1,90 @@ +#include "./serviceFactory.h" +#include "./serviceManager.h" + +OmServiceFactory::OmServiceFactory() + : object(NULL) +{ +} + +OmServiceFactory::~OmServiceFactory() +{ + if (NULL != object) + object->Release(); +} + +FOURCC OmServiceFactory::GetServiceType() +{ + return WaSvc::UNIQUE; +} + +const char *OmServiceFactory::GetServiceName() +{ + return "OmServiceManager Interface"; +} + +GUID OmServiceFactory::GetGUID() +{ + return IFC_OmServiceManager; +} + +void *OmServiceFactory::GetInterface(int global_lock) +{ + if (NULL == object) + { + object = OmServiceManager::CreateInstance(); + if (NULL == object) return NULL; + } + + object->AddRef(); + return object; +} + +int OmServiceFactory::SupportNonLockingInterface() +{ + return 1; +} + +int OmServiceFactory::ReleaseInterface(void *ifc) +{ + OmServiceManager *object = (OmServiceManager*)ifc; + if (NULL != object) object->Release(); + + return 1; +} + +const char *OmServiceFactory::GetTestString() +{ + return NULL; +} + +int OmServiceFactory::ServiceNotify(int msg, int param1, int param2) +{ + return 1; +} + +HRESULT OmServiceFactory::Register(api_service *service) +{ + if (NULL == service) return E_INVALIDARG; + service->service_register(this); + return S_OK; +} + +HRESULT OmServiceFactory::Unregister(api_service *service) +{ + if (NULL == service) return E_INVALIDARG; + service->service_deregister(this); + return S_OK; +} + +#define CBCLASS OmServiceFactory +START_DISPATCH; +CB(WASERVICEFACTORY_GETSERVICETYPE, GetServiceType) +CB(WASERVICEFACTORY_GETSERVICENAME, GetServiceName) +CB(WASERVICEFACTORY_GETGUID, GetGUID) +CB(WASERVICEFACTORY_GETINTERFACE, GetInterface) +CB(WASERVICEFACTORY_SUPPORTNONLOCKINGGETINTERFACE, SupportNonLockingInterface) +CB(WASERVICEFACTORY_RELEASEINTERFACE, ReleaseInterface) +CB(WASERVICEFACTORY_GETTESTSTRING, GetTestString) +CB(WASERVICEFACTORY_SERVICENOTIFY, ServiceNotify) +END_DISPATCH; +#undef CBCLASS
\ No newline at end of file |