winamp/Src/Plugins/Library/ml_nowplaying/wasabi.cpp

82 lines
2.4 KiB
C++
Raw Normal View History

2024-09-24 12:54:57 +00:00
#include "main.h"
#include "./wasabi.h"
#include <api/service/waservicefactory.h>
static ULONG wasabiRef = 0;
api_application *WASABI_API_APP = NULL;
api_language *WASABI_API_LNG = NULL;
JSAPI2::api_security *AGAVE_API_JSAPI2_SECURITY = NULL;
obj_ombrowser *browserManager = NULL;
api_syscb *WASABI_API_SYSCB = NULL;
ifc_omutility *omUtility = NULL;
HINSTANCE WASABI_API_LNG_HINST = NULL;
HINSTANCE WASABI_API_ORIG_HINST = NULL;
EXTERN_C winampMediaLibraryPlugin plugin;
void *Wasabi_QueryInterface(REFGUID interfaceGuid)
{
waServiceFactory *serviceFactory = plugin.service->service_getServiceByGuid(interfaceGuid);
return (NULL != serviceFactory) ? serviceFactory->getInterface() : NULL;
}
void Wasabi_ReleaseInterface(REFGUID interfaceGuid, void *pInstance)
{
waServiceFactory *serviceFactory = plugin.service->service_getServiceByGuid(interfaceGuid);
if (NULL != serviceFactory) serviceFactory->releaseInterface(pInstance);
}
void Wasabi_SafeRelease(Dispatchable *pDisp)
{
if (NULL != pDisp)
pDisp->Release();
}
BOOL WasabiApi_Initialize(HINSTANCE hInstance)
{
WASABI_API_APP = QueryWasabiInterface(api_application, applicationApiServiceGuid);
WASABI_API_SYSCB = QueryWasabiInterface(api_syscb, syscbApiServiceGuid);
WASABI_API_LNG = QueryWasabiInterface(api_language, languageApiGUID);
AGAVE_API_JSAPI2_SECURITY = QueryWasabiInterface(JSAPI2::api_security, JSAPI2::api_securityGUID);
OMBROWSERMNGR = QueryWasabiInterface(obj_ombrowser, OBJ_OmBrowser);
OMUTILITY = QueryWasabiInterface(ifc_omutility, IFC_OmUtility);
if (NULL != WASABI_API_LNG)
WASABI_API_START_LANG(hInstance, MlNowPlayingLangGUID);
WasabiApi_AddRef();
return TRUE;
}
static void WasabiApi_Uninitialize()
{
ReleaseWasabiInterface(applicationApiServiceGuid, WASABI_API_APP);
ReleaseWasabiInterface(syscbApiServiceGuid, WASABI_API_SYSCB);
ReleaseWasabiInterface(languageApiGUID, WASABI_API_LNG);
ReleaseWasabiInterface(JSAPI2::api_securityGUID, AGAVE_API_JSAPI2_SECURITY);
ReleaseWasabiInterface(OBJ_OmBrowser, OMBROWSERMNGR);
ReleaseWasabiInterface(IFC_OmUtility, OMUTILITY);
WASABI_API_APP = NULL;
WASABI_API_LNG = NULL;
AGAVE_API_JSAPI2_SECURITY = NULL;
}
ULONG WasabiApi_AddRef()
{
return InterlockedIncrement((LONG*)&wasabiRef);
}
ULONG WasabiApi_Release()
{
if (0 == wasabiRef)
return wasabiRef;
LONG r = InterlockedDecrement((LONG*)&wasabiRef);
if (0 == r)
{
WasabiApi_Uninitialize();
}
return r;
}