mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-29 12:19:03 +03:00
c1719bc817
Signed-off-by: alex-z <blackslayer4@gmail.com>
243 lines
7.4 KiB
C++
243 lines
7.4 KiB
C++
/**
|
|
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation; either version 2.1 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*/
|
|
|
|
#include "NCOverlayRegistrationHandler.h"
|
|
#include "NCOverlayFactory.h"
|
|
#include "WinShellExtConstants.h"
|
|
|
|
HINSTANCE instanceHandle = nullptr;
|
|
|
|
long dllReferenceCount = 0;
|
|
|
|
HWND hHiddenWnd = nullptr;
|
|
DWORD WINAPI MessageLoopThread(LPVOID lpParameter);
|
|
LRESULT CALLBACK HiddenWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
|
void CreateHiddenWindowAndLaunchMessageLoop();
|
|
|
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved)
|
|
{
|
|
switch (dwReason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
instanceHandle = hModule;
|
|
DisableThreadLibraryCalls(hModule);
|
|
CreateHiddenWindowAndLaunchMessageLoop();
|
|
break;
|
|
case DLL_THREAD_ATTACH:
|
|
case DLL_THREAD_DETACH:
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
HRESULT CreateFactory(REFIID riid, void **ppv, int state)
|
|
{
|
|
HRESULT hResult = E_OUTOFMEMORY;
|
|
|
|
auto ncOverlayFactory = new NCOverlayFactory(state);
|
|
|
|
if (ncOverlayFactory) {
|
|
hResult = ncOverlayFactory->QueryInterface(riid, ppv);
|
|
ncOverlayFactory->Release();
|
|
}
|
|
return hResult;
|
|
}
|
|
|
|
STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **ppv)
|
|
{
|
|
HRESULT hResult = CLASS_E_CLASSNOTAVAILABLE;
|
|
GUID guid;
|
|
|
|
hResult = CLSIDFromString(OVERLAY_GUID_ERROR, (LPCLSID)&guid);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
if (IsEqualCLSID(guid, rclsid)) { return CreateFactory(riid, ppv, State_Error); }
|
|
|
|
hResult = CLSIDFromString(OVERLAY_GUID_OK, (LPCLSID)&guid);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
if (IsEqualCLSID(guid, rclsid)) { return CreateFactory(riid, ppv, State_OK); }
|
|
|
|
hResult = CLSIDFromString(OVERLAY_GUID_OK_SHARED, (LPCLSID)&guid);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
if (IsEqualCLSID(guid, rclsid)) { return CreateFactory(riid, ppv, State_OKShared); }
|
|
|
|
hResult = CLSIDFromString(OVERLAY_GUID_SYNC, (LPCLSID)&guid);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
if (IsEqualCLSID(guid, rclsid)) { return CreateFactory(riid, ppv, State_Sync); }
|
|
|
|
hResult = CLSIDFromString(OVERLAY_GUID_WARNING, (LPCLSID)&guid);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
if (IsEqualCLSID(guid, rclsid)) { return CreateFactory(riid, ppv, State_Warning); }
|
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
}
|
|
|
|
STDAPI DllCanUnloadNow(void)
|
|
{
|
|
return dllReferenceCount > 0 ? S_FALSE : S_OK;
|
|
}
|
|
|
|
HRESULT RegisterCLSID(LPCOLESTR guidStr, PCWSTR overlayStr, PCWSTR szModule)
|
|
{
|
|
HRESULT hResult = S_OK;
|
|
|
|
GUID guid;
|
|
hResult = CLSIDFromString(guidStr, (LPCLSID)&guid);
|
|
|
|
if (hResult != S_OK) {
|
|
return hResult;
|
|
}
|
|
|
|
hResult = NCOverlayRegistrationHandler::RegisterCOMObject(szModule, OVERLAY_DESCRIPTION, guid);
|
|
|
|
if (!SUCCEEDED(hResult)) {
|
|
return hResult;
|
|
}
|
|
|
|
hResult = NCOverlayRegistrationHandler::MakeRegistryEntries(guid, overlayStr);
|
|
|
|
return hResult;
|
|
}
|
|
|
|
HRESULT UnregisterCLSID(LPCOLESTR guidStr, PCWSTR overlayStr)
|
|
{
|
|
HRESULT hResult = S_OK;
|
|
GUID guid;
|
|
|
|
hResult = CLSIDFromString(guidStr, (LPCLSID)&guid);
|
|
|
|
if (hResult != S_OK) {
|
|
return hResult;
|
|
}
|
|
|
|
hResult = NCOverlayRegistrationHandler::UnregisterCOMObject(guid);
|
|
|
|
if (!SUCCEEDED(hResult)) {
|
|
return hResult;
|
|
}
|
|
|
|
hResult = NCOverlayRegistrationHandler::RemoveRegistryEntries(overlayStr);
|
|
|
|
return hResult;
|
|
}
|
|
|
|
HRESULT _stdcall DllRegisterServer(void)
|
|
{
|
|
HRESULT hResult = S_OK;
|
|
|
|
wchar_t szModule[MAX_PATH];
|
|
|
|
if (GetModuleFileName(instanceHandle, szModule, ARRAYSIZE(szModule)) == 0) {
|
|
hResult = HRESULT_FROM_WIN32(GetLastError());
|
|
return hResult;
|
|
}
|
|
|
|
hResult = RegisterCLSID(OVERLAY_GUID_ERROR, OVERLAY_NAME_ERROR, szModule);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = RegisterCLSID(OVERLAY_GUID_OK, OVERLAY_NAME_OK, szModule);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = RegisterCLSID(OVERLAY_GUID_OK_SHARED, OVERLAY_NAME_OK_SHARED, szModule);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = RegisterCLSID(OVERLAY_GUID_SYNC, OVERLAY_NAME_SYNC, szModule);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = RegisterCLSID(OVERLAY_GUID_WARNING, OVERLAY_NAME_WARNING, szModule);
|
|
|
|
return hResult;
|
|
}
|
|
|
|
STDAPI DllUnregisterServer(void)
|
|
{
|
|
HRESULT hResult = S_OK;
|
|
|
|
wchar_t szModule[MAX_PATH];
|
|
|
|
if (GetModuleFileNameW(instanceHandle, szModule, ARRAYSIZE(szModule)) == 0)
|
|
{
|
|
hResult = HRESULT_FROM_WIN32(GetLastError());
|
|
return hResult;
|
|
}
|
|
|
|
hResult = UnregisterCLSID(OVERLAY_GUID_ERROR, OVERLAY_NAME_ERROR);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = UnregisterCLSID(OVERLAY_GUID_OK, OVERLAY_NAME_OK);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = UnregisterCLSID(OVERLAY_GUID_OK_SHARED, OVERLAY_NAME_OK_SHARED);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = UnregisterCLSID(OVERLAY_GUID_SYNC, OVERLAY_NAME_SYNC);
|
|
if (!SUCCEEDED(hResult)) { return hResult; }
|
|
hResult = UnregisterCLSID(OVERLAY_GUID_WARNING, OVERLAY_NAME_WARNING);
|
|
|
|
return hResult;
|
|
}
|
|
|
|
void CreateHiddenWindowAndLaunchMessageLoop()
|
|
{
|
|
const WNDCLASSEX hiddenWindowClass{sizeof(WNDCLASSEX),
|
|
CS_CLASSDC,
|
|
HiddenWndProc,
|
|
0L,
|
|
0L,
|
|
GetModuleHandle(NULL),
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NCOVERLAYS_SHELLEXT_WINDOW_CLASS_NAME,
|
|
NULL};
|
|
|
|
RegisterClassEx(&hiddenWindowClass);
|
|
|
|
hHiddenWnd = CreateWindow(hiddenWindowClass.lpszClassName,
|
|
L"",
|
|
WS_OVERLAPPEDWINDOW,
|
|
CW_USEDEFAULT,
|
|
CW_USEDEFAULT,
|
|
CW_USEDEFAULT,
|
|
CW_USEDEFAULT,
|
|
NULL,
|
|
NULL,
|
|
hiddenWindowClass.hInstance,
|
|
NULL);
|
|
|
|
ShowWindow(hHiddenWnd, SW_HIDE);
|
|
UpdateWindow(hHiddenWnd);
|
|
|
|
const auto hMessageLoopThread = CreateThread(NULL, 0, MessageLoopThread, NULL, 0, NULL);
|
|
if (hMessageLoopThread) {
|
|
CloseHandle(hMessageLoopThread);
|
|
}
|
|
}
|
|
|
|
DWORD WINAPI MessageLoopThread(LPVOID lpParameter)
|
|
{
|
|
MSG msg;
|
|
while (GetMessage(&msg, NULL, 0, 0)) {
|
|
TranslateMessage(&msg);
|
|
DispatchMessage(&msg);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
LRESULT CALLBACK HiddenWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
switch (msg) {
|
|
case WM_CLOSE:
|
|
FreeLibrary(instanceHandle);
|
|
break;
|
|
default:
|
|
return DefWindowProc(hwnd, msg, wParam, lParam);
|
|
}
|
|
return 0;
|
|
}
|