ReactOS 0.4.15-dev-5893-g1bb4167
zipfldr.cpp
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Zip Shell Extension
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: zipfldr entrypoint
5 * COPYRIGHT: Copyright 2017 Mark Jansen (mark.jansen@reactos.org)
6 */
7
8#include "precomp.h"
9
12
13#include <initguid.h>
14
15DEFINE_GUID(CLSID_ZipFolderStorageHandler, 0xe88dcce0, 0xb7b3, 0x11d1, 0xa9, 0xf0, 0x00, 0xaa, 0x00, 0x60, 0xfa, 0x31);
16DEFINE_GUID(CLSID_ZipFolderSendTo, 0x888dca60, 0xfc0a, 0x11cf, 0x8f, 0x0f, 0x00, 0xc0, 0x4f, 0xd7, 0xd0, 0x62);
17DEFINE_GUID(CLSID_ZipFolderContextMenu, 0xb8cdcb65, 0xb1bf, 0x4b42, 0x94, 0x28, 0x1d, 0xfd, 0xb7, 0xee, 0x92, 0xaf);
18DEFINE_GUID(CLSID_ZipFolderRightDragHandler,0xbd472f60, 0x27fa, 0x11cf, 0xb8, 0xb4, 0x44, 0x45, 0x53, 0x54, 0x00, 0x00);
19DEFINE_GUID(CLSID_ZipFolderDropHandler, 0xed9d80b9, 0xd157, 0x457b, 0x91, 0x92, 0x0e, 0x72, 0x80, 0x31, 0x3b, 0xf0);
20
21/* IExplorerCommand: Extract All */
22DEFINE_GUID(CLSID_ZipFolderExtractAllCommand, 0xc3d9647b, 0x8fd9, 0x4ee6, 0x8b, 0xc7, 0x82, 0x7, 0x80, 0x9, 0x10, 0x5a);
23
24
26{
27public:
28};
29
30
31BEGIN_OBJECT_MAP(ObjectMap)
36
38
39
40#include "minizip/ioapi.h"
41#include "minizip/iowin32.h"
42
44
45static void init_zlib()
46{
48}
49
50static BOOL
52{
57 {
59 return TRUE;
60 }
61 return FALSE;
62}
63
64static HRESULT
66{
67 WCHAR szTarget[MAX_PATH], szSendToFile[MAX_PATH];
68
69 LoadStringW(g_hModule, IDS_FRIENDLYNAME, szTarget, _countof(szTarget));
70
71 StringCbCopyW(szSendToFile, sizeof(szSendToFile), pszSendTo);
72 PathAppendW(szSendToFile, szTarget);
73 StringCbCatW(szSendToFile, sizeof(szSendToFile), L".ZFSendToTarget");
74 if (!CreateEmptyFile(szSendToFile))
75 {
76 DPRINT1("CreateEmptyFile('%ls')\n", szSendToFile);
77 return E_FAIL;
78 }
79 return S_OK;
80}
81
82static HRESULT
84{
86 SHGFP_TYPE_DEFAULT, pszPath);
87}
88
91{
92 switch (dwReason)
93 {
97 gModule.Init(ObjectMap, hInstance, NULL);
98 init_zlib();
99 break;
100 }
101
102 return TRUE;
103}
104
106{
107 if (g_ModuleRefCnt)
108 return S_FALSE;
109 return gModule.DllCanUnloadNow();
110}
111
113{
114 return gModule.DllGetClassObject(rclsid, riid, ppv);
115}
116
118{
119 HRESULT hr;
120
123 return hr;
124
126 if (FAILED(hr))
127 return hr;
128
129 WCHAR szSendTo[MAX_PATH];
130 hr = GetDefaultUserSendTo(szSendTo);
131 if (SUCCEEDED(hr))
132 CreateSendToZip(szSendTo);
133
134 return S_OK;
135}
136
138{
139 HRESULT hr;
140
143 return hr;
144
146 if (FAILED(hr))
147 return hr;
148
149 return S_OK;
150}
151
155 IN HWND hWndOwner,
157 IN LPCSTR lpStringArg,
158 IN INT Show)
159{
160 CStringW path = lpStringArg;
161 PathRemoveBlanksW(path.GetBuffer());
162 path.ReleaseBuffer();
163 path = L"\"" + path + L"\"";
164 ShellExecuteW(NULL, L"open", L"explorer.exe", path.GetString(), NULL, SW_SHOWNORMAL);
165 return TRUE;
166}
#define DPRINT1
Definition: precomp.h:8
DWORD dwReason
Definition: misc.cpp:154
#define STDAPI
Definition: basetyps.h:41
#define EXTERN_C
Definition: basetyps.h:12
HINSTANCE hInstance
Definition: charmap.c:19
HRESULT WINAPI UpdateRegistryFromResource(LPCTSTR lpszRes, BOOL bRegister, struct _ATL_REGMAP_ENTRY *pMapEntries=NULL)
Definition: atlbase.h:440
HRESULT DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
Definition: atlbase.h:936
HRESULT DllUnregisterServer(BOOL bUnRegTypeLib=TRUE)
Definition: atlbase.h:946
HRESULT Init(_ATL_OBJMAP_ENTRY *p, HINSTANCE, const GUID *plibid)
Definition: atlbase.h:798
HRESULT DllCanUnloadNow()
Definition: atlbase.h:929
HRESULT DllRegisterServer(BOOL bRegTypeLib=TRUE)
Definition: atlbase.h:941
#define E_FAIL
Definition: ddrawi.h:102
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
EXTERN_C const GUID CLSID_ZipFolderSendTo
Definition: precomp.h:30
EXTERN_C const GUID CLSID_ZipFolderExtractAllCommand
Definition: precomp.h:35
EXTERN_C const GUID CLSID_ZipFolderContextMenu
Definition: precomp.h:31
EXTERN_C const GUID CLSID_ZipFolderStorageHandler
Definition: precomp.h:29
EXTERN_C const GUID CLSID_ZipFolderDropHandler
Definition: precomp.h:33
EXTERN_C const GUID CLSID_ZipFolderRightDragHandler
Definition: precomp.h:32
#define IDS_FRIENDLYNAME
Definition: resource.h:75
#define IDR_ZIPFLDR
Definition: resource.h:12
#define CloseHandle
Definition: compat.h:739
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define INVALID_HANDLE_VALUE
Definition: compat.h:731
#define MAX_PATH
Definition: compat.h:34
#define CreateFileW
Definition: compat.h:741
#define FILE_ATTRIBUTE_NORMAL
Definition: compat.h:137
#define FILE_SHARE_READ
Definition: compat.h:136
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
HRESULT WINAPI SHGetFolderPathW(HWND hwndOwner, int nFolder, HANDLE hToken, DWORD dwFlags, LPWSTR pszPath)
Definition: shellpath.c:2558
BOOL WINAPI PathAppendW(LPWSTR lpszPath, LPCWSTR lpszAppend)
Definition: path.c:126
VOID WINAPI PathRemoveBlanksW(LPWSTR lpszPath)
Definition: path.c:920
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
REFIID riid
Definition: atlbase.h:39
REFIID LPVOID * ppv
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define SUCCEEDED(hr)
Definition: intsafe.h:50
#define FAILED(hr)
Definition: intsafe.h:51
void fill_win32_filefunc64W(zlib_filefunc64_def *pzlib_filefunc_def)
Definition: iowin32.c:457
#define END_OBJECT_MAP()
Definition: atlcom.h:652
#define OBJECT_ENTRY(clsid, class)
Definition: atlcom.h:654
#define BEGIN_OBJECT_MAP(x)
Definition: atlcom.h:650
#define CREATE_ALWAYS
Definition: disk.h:72
_In_ HANDLE hFile
Definition: mswsock.h:90
#define GENERIC_WRITE
Definition: nt_native.h:90
#define L(x)
Definition: ntvdm.h:50
long LONG
Definition: pedump.c:60
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8)
Definition: guiddef.h:68
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
#define FAILED_UNEXPECTEDLY(hr)
Definition: shellutils.h:82
HINSTANCE WINAPI ShellExecuteW(HWND hwnd, LPCWSTR lpVerb, LPCWSTR lpFile, LPCWSTR lpParameters, LPCWSTR lpDirectory, INT nShowCmd)
Definition: shlexec.cpp:2346
HRESULT hr
Definition: shlfolder.c:183
#define CSIDL_SENDTO
Definition: shlobj.h:2034
@ SHGFP_TYPE_DEFAULT
Definition: shlobj.h:2002
#define _countof(array)
Definition: sndvol32.h:68
STRSAFEAPI StringCbCopyW(STRSAFE_LPWSTR pszDest, size_t cbDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:166
STRSAFEAPI StringCbCatW(STRSAFE_LPWSTR pszDest, size_t cbDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:342
int32_t INT
Definition: typedefs.h:58
#define IN
Definition: typedefs.h:39
#define WINAPI
Definition: msvc.h:6
#define S_FALSE
Definition: winerror.h:2357
#define SW_SHOWNORMAL
Definition: winuser.h:764
int WINAPI LoadStringW(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_writes_to_(cchBufferMax, return+1) LPWSTR lpBuffer, _In_ int cchBufferMax)
const char * LPCSTR
Definition: xmlstorage.h:183
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
EXTERN_C BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
Definition: zipfldr.cpp:90
zlib_filefunc64_def g_FFunc
Definition: zipfldr.cpp:43
static BOOL CreateEmptyFile(LPCWSTR pszFile)
Definition: zipfldr.cpp:51
CZipFldrModule gModule
Definition: zipfldr.cpp:37
STDAPI DllRegisterServer()
Definition: zipfldr.cpp:117
LONG g_ModuleRefCnt
Definition: zipfldr.cpp:11
STDAPI DllCanUnloadNow()
Definition: zipfldr.cpp:105
STDAPI DllUnregisterServer()
Definition: zipfldr.cpp:137
EXTERN_C BOOL WINAPI RouteTheCall(IN HWND hWndOwner, IN HINSTANCE hInstance, IN LPCSTR lpStringArg, IN INT Show)
Definition: zipfldr.cpp:154
static void init_zlib()
Definition: zipfldr.cpp:45
STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
Definition: zipfldr.cpp:112
HMODULE g_hModule
Definition: zipfldr.cpp:10
static HRESULT GetDefaultUserSendTo(LPWSTR pszPath)
Definition: zipfldr.cpp:83
static HRESULT CreateSendToZip(LPCWSTR pszSendTo)
Definition: zipfldr.cpp:65