forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebKitDLL.cpp
More file actions
412 lines (361 loc) · 14.5 KB
/
WebKitDLL.cpp
File metadata and controls
412 lines (361 loc) · 14.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*
* Copyright (C) 2006-2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define DEPRECATED_EXPORT_SYMBOLS 1
#include "WebKitDLL.h"
#if USE(CG)
#include <CoreGraphics/CoreGraphics.h>
#endif
#include "ForEachCoClass.h"
#include "resource.h"
#include "WebKit.h"
#include "WebKitClassFactory.h"
#include "WebStorageNamespaceProvider.h"
#include <WebCore/COMPtr.h>
#include <WebCore/Page.h>
#include <WebCore/PlatformDisplay.h>
#include <WebCore/RenderThemeWin.h>
#include <WebCore/SharedBuffer.h>
#include <WebCore/WebCoreInstanceHandle.h>
#include <WebCore/Widget.h>
#include <olectl.h>
#include <wchar.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/Vector.h>
using namespace WebCore;
ULONG gLockCount;
ULONG gClassCount;
HINSTANCE gInstance;
#define CLSID_FOR_CLASS(cls) CLSID_##cls,
CLSID gRegCLSIDs[] = {
FOR_EACH_COCLASS(CLSID_FOR_CLASS)
};
#undef CLSID_FOR_CLASS
#if defined(DEPRECATED_EXPORT_SYMBOLS)
// Force symbols to be included so we can export them for legacy clients.
// DEPRECATED! People should get these symbols from JavaScriptCore.dll, not WebKit.dll!
typedef struct OpaqueJSClass* JSClassRef;
typedef const struct OpaqueJSContext* JSContextRef;
typedef const struct OpaqueJSValue* JSValueRef;
typedef struct OpaqueJSString* JSStringRef;
typedef wchar_t JSChar;
typedef unsigned JSPropertyAttributes;
struct JSClassDefinition;
#endif
HashCountedSet<String>& gClassNameCount()
{
static NeverDestroyed<HashCountedSet<String>> gClassNameCount;
return gClassNameCount.get();
}
void bindJavaScriptTrampoline();
STDAPI_(BOOL) DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID /*lpReserved*/)
{
switch (ul_reason_for_call) {
case DLL_PROCESS_ATTACH:
gLockCount = gClassCount = 0;
gInstance = hModule;
WebCore::setInstanceHandle(hModule);
bindJavaScriptTrampoline();
return TRUE;
case DLL_PROCESS_DETACH:
WebCore::RenderThemeWin::setWebKitIsBeingUnloaded();
break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
break;
}
return FALSE;
}
_Check_return_
STDAPI DllGetClassObject(_In_ REFCLSID rclsid, _In_ REFIID riid, _Outptr_ LPVOID* ppv)
{
bool found = false;
for (size_t i = 0; i < WTF_ARRAY_LENGTH(gRegCLSIDs); ++i) {
if (IsEqualGUID(rclsid, gRegCLSIDs[i])) {
found = true;
break;
}
}
if (!found)
return E_FAIL;
if (!IsEqualGUID(riid, IID_IUnknown) && !IsEqualGUID(riid, IID_IClassFactory))
return E_NOINTERFACE;
WebKitClassFactory* factory = new WebKitClassFactory(rclsid);
*ppv = reinterpret_cast<LPVOID>(factory);
if (!factory)
return E_OUTOFMEMORY;
factory->AddRef();
return S_OK;
}
STDAPI DllCanUnloadNow(void)
{
if (!gClassCount && !gLockCount)
return S_OK;
return S_FALSE;
}
// deprecated - do not use
STDAPI DllUnregisterServer(void)
{
return 0;
}
// deprecated - do not use
STDAPI DllRegisterServer(void)
{
return 0;
}
// deprecated - do not use
STDAPI RunAsLocalServer()
{
return 0;
}
// deprecated - do not use
STDAPI LocalServerDidDie()
{
return 0;
}
void shutDownWebKit()
{
WebKit::WebStorageNamespaceProvider::closeLocalStorage();
}
//FIXME: We should consider moving this to a new file for cross-project functionality
WEBKIT_API RefPtr<WebCore::SharedBuffer> loadResourceIntoBuffer(const char* name);
RefPtr<WebCore::SharedBuffer> loadResourceIntoBuffer(const char* name)
{
int idr;
// temporary hack to get resource id
if (!strcmp(name, "textAreaResizeCorner"))
idr = IDR_RESIZE_CORNER;
else if (!strcmp(name, "missingImage"))
idr = IDR_MISSING_IMAGE;
else if (!strcmp(name, "nullPlugin"))
idr = IDR_NULL_PLUGIN;
else if (!strcmp(name, "panIcon"))
idr = IDR_PAN_SCROLL_ICON;
else if (!strcmp(name, "panSouthCursor"))
idr = IDR_PAN_SOUTH_CURSOR;
else if (!strcmp(name, "panNorthCursor"))
idr = IDR_PAN_NORTH_CURSOR;
else if (!strcmp(name, "panEastCursor"))
idr = IDR_PAN_EAST_CURSOR;
else if (!strcmp(name, "panWestCursor"))
idr = IDR_PAN_WEST_CURSOR;
else if (!strcmp(name, "panSouthEastCursor"))
idr = IDR_PAN_SOUTH_EAST_CURSOR;
else if (!strcmp(name, "panSouthWestCursor"))
idr = IDR_PAN_SOUTH_WEST_CURSOR;
else if (!strcmp(name, "panNorthEastCursor"))
idr = IDR_PAN_NORTH_EAST_CURSOR;
else if (!strcmp(name, "panNorthWestCursor"))
idr = IDR_PAN_NORTH_WEST_CURSOR;
else if (!strcmp(name, "searchMagnifier"))
idr = IDR_SEARCH_MAGNIFIER;
else if (!strcmp(name, "searchMagnifierResults"))
idr = IDR_SEARCH_MAGNIFIER_RESULTS;
else if (!strcmp(name, "searchCancel"))
idr = IDR_SEARCH_CANCEL;
else if (!strcmp(name, "searchCancelPressed"))
idr = IDR_SEARCH_CANCEL_PRESSED;
else if (!strcmp(name, "zoomInCursor"))
idr = IDR_ZOOM_IN_CURSOR;
else if (!strcmp(name, "zoomOutCursor"))
idr = IDR_ZOOM_OUT_CURSOR;
else if (!strcmp(name, "verticalTextCursor"))
idr = IDR_VERTICAL_TEXT_CURSOR;
else if (!strcmp(name, "fsVideoAudioVolumeHigh"))
idr = IDR_FS_VIDEO_AUDIO_VOLUME_HIGH;
else if (!strcmp(name, "fsVideoAudioVolumeLow"))
idr = IDR_FS_VIDEO_AUDIO_VOLUME_LOW;
else if (!strcmp(name, "fsVideoExitFullscreen"))
idr = IDR_FS_VIDEO_EXIT_FULLSCREEN;
else if (!strcmp(name, "fsVideoPause"))
idr = IDR_FS_VIDEO_PAUSE;
else if (!strcmp(name, "fsVideoPlay"))
idr = IDR_FS_VIDEO_PLAY;
else
return nullptr;
HRSRC resInfo = FindResource(gInstance, MAKEINTRESOURCE(idr), L"PNG");
if (!resInfo)
return nullptr;
HANDLE res = LoadResource(gInstance, resInfo);
if (!res)
return nullptr;
void* resource = LockResource(res);
if (!resource)
return nullptr;
unsigned size = SizeofResource(gInstance, resInfo);
return WebCore::SharedBuffer::create(reinterpret_cast<const char*>(resource), size);
}
// Force symbols to be included so we can export them for legacy clients.
// DEPRECATED! People should get these symbols from JavaScriptCore.dll, not WebKit.dll!
// #include <JavaScriptCore/JSObjectRef.h>
typedef JSClassRef (*JSClassCreateFunction)(const JSClassDefinition* definition);
typedef void* (*JSObjectGetPrivateFunction)(JSObjectRef);
typedef JSObjectRef (*JSObjectMakeFunctionStub)(JSContextRef, JSClassRef, void*);
typedef void (*JSObjectSetPropertyFunction)(JSContextRef, JSObjectRef, JSStringRef propertyName, JSValueRef, JSPropertyAttributes, JSValueRef* exception);
#if USE(CF)
typedef JSStringRef (*JSStringCreateWithCFStringFunction)(CFStringRef);
#endif
typedef JSStringRef (*JSStringCreateWithUTF8CStringFunction)(const char*);
typedef const JSChar* (*JSStringGetCharactersPtrFunction)(JSStringRef);
typedef size_t (*JSStringGetLengthFunction)(JSStringRef);
typedef void (*JSStringReleaseFunction)(JSStringRef);
typedef bool (*JSValueIsTypeFunction)(JSContextRef, JSValueRef);
typedef JSValueRef(*JSValueMakeUndefinedFunction)(JSContextRef);
typedef double(*JSValueToNumberFunction)(JSContextRef, JSValueRef, JSValueRef* exception);
typedef JSValueRef(*JSValueMakeStringFunction)(JSContextRef, JSStringRef);
typedef JSStringRef (*JSValueToStringCopyFunction)(JSContextRef, JSValueRef, JSValueRef* exception);
JSClassCreateFunction m_jsClassCreateFunction = nullptr;
JSObjectGetPrivateFunction m_jsObjectGetPrivateFunction = nullptr;
JSObjectMakeFunctionStub m_jsObjectMakeFunction = nullptr;
JSObjectSetPropertyFunction m_jsObjectSetPropertyFunction = nullptr;
#if USE(CF)
JSStringCreateWithCFStringFunction m_jsStringCreateWithCFStringFunction = nullptr;
#endif
JSStringCreateWithUTF8CStringFunction m_jsStringCreateWithUTF8CStringFunction = nullptr;
JSStringGetCharactersPtrFunction m_jsStringGetCharactersPtrFunction = nullptr;
JSStringGetLengthFunction m_jsStringGetLengthFunction = nullptr;
JSStringReleaseFunction m_jsStringReleaseFunction = nullptr;
JSValueIsTypeFunction m_jsValueIsNumberFunction = nullptr;
JSValueIsTypeFunction m_jsValueIsStringFunction = nullptr;
JSValueMakeUndefinedFunction m_jsValueMakeUndefinedFunction = nullptr;
JSValueToNumberFunction m_jsValueToNumberFunction = nullptr;
JSValueMakeStringFunction m_jsValueMakeStringFunction = nullptr;
JSValueToStringCopyFunction m_jsValueToStringCopyFunction = nullptr;
void bindJavaScriptTrampoline()
{
const wchar_t* libraryName = L"JavaScriptCore.dll";
HMODULE library = ::LoadLibrary(libraryName);
if (!library)
return;
m_jsClassCreateFunction = reinterpret_cast<JSClassCreateFunction>(::GetProcAddress(library, "JSClassCreate"));
m_jsObjectGetPrivateFunction = reinterpret_cast<JSObjectGetPrivateFunction>(::GetProcAddress(library, "JSObjectGetPrivate"));
m_jsObjectMakeFunction = reinterpret_cast<JSObjectMakeFunctionStub>(::GetProcAddress(library, "JSObjectMake"));
m_jsObjectSetPropertyFunction = reinterpret_cast<JSObjectSetPropertyFunction>(::GetProcAddress(library, "JSObjectSetProperty"));;
#if USE(CF)
m_jsStringCreateWithCFStringFunction = reinterpret_cast<JSStringCreateWithCFStringFunction>(::GetProcAddress(library, "JSStringCreateWithCFString"));
#endif
m_jsStringCreateWithUTF8CStringFunction = reinterpret_cast<JSStringCreateWithUTF8CStringFunction>(::GetProcAddress(library, "JSStringCreateWithUTF8CString"));
m_jsStringGetCharactersPtrFunction = reinterpret_cast<JSStringGetCharactersPtrFunction>(::GetProcAddress(library, "JSStringGetCharactersPtr"));
m_jsStringGetLengthFunction = reinterpret_cast<JSStringGetLengthFunction>(::GetProcAddress(library, "JSStringGetLength"));
m_jsStringReleaseFunction = reinterpret_cast<JSStringReleaseFunction>(::GetProcAddress(library, "JSStringRelease"));
m_jsValueIsNumberFunction = reinterpret_cast<JSValueIsTypeFunction>(::GetProcAddress(library, "JSValueIsNumber"));
m_jsValueIsStringFunction = reinterpret_cast<JSValueIsTypeFunction>(::GetProcAddress(library, "JSValueIsString"));
m_jsValueMakeStringFunction = reinterpret_cast<JSValueMakeStringFunction>(::GetProcAddress(library, "JSValueMakeString"));
m_jsValueMakeUndefinedFunction = reinterpret_cast<JSValueMakeUndefinedFunction>(::GetProcAddress(library, "JSValueMakeUndefined"));
m_jsValueToNumberFunction = reinterpret_cast<JSValueToNumberFunction>(::GetProcAddress(library, "JSValueToNumber"));
m_jsValueToStringCopyFunction = reinterpret_cast<JSValueToStringCopyFunction>(::GetProcAddress(library, "JSValueToStringCopy"));
}
extern "C"
{
WEBKIT_API JSClassRef JSClassCreate(const JSClassDefinition* definition)
{
if (m_jsClassCreateFunction)
return m_jsClassCreateFunction(definition);
return nullptr;
}
WEBKIT_API void* JSObjectGetPrivate(JSObjectRef object)
{
if (m_jsObjectGetPrivateFunction)
return m_jsObjectGetPrivateFunction(object);
return nullptr;
}
WEBKIT_API JSObjectRef JSObjectMake(JSContextRef ctx, JSClassRef classRef, void* data)
{
if (m_jsObjectMakeFunction)
return m_jsObjectMakeFunction(ctx, classRef, data);
return nullptr;
}
WEBKIT_API void JSObjectSetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, JSValueRef* exception)
{
if (m_jsObjectSetPropertyFunction)
m_jsObjectSetPropertyFunction(ctx, object, propertyName, value, attributes, exception);
}
#if USE(CF)
WEBKIT_API JSStringRef JSStringCreateWithCFString(CFStringRef value)
{
if (m_jsStringCreateWithCFStringFunction)
return m_jsStringCreateWithCFStringFunction(value);
return nullptr;
}
#endif
WEBKIT_API JSStringRef JSStringCreateWithUTF8CString(const char* value)
{
if (m_jsStringCreateWithUTF8CStringFunction)
return m_jsStringCreateWithUTF8CStringFunction(value);
return nullptr;
}
WEBKIT_API const JSChar* JSStringGetCharactersPtr(JSStringRef value)
{
if (m_jsStringGetCharactersPtrFunction)
return m_jsStringGetCharactersPtrFunction(value);
return nullptr;
}
WEBKIT_API size_t JSStringGetLength(JSStringRef value)
{
if (m_jsStringGetLengthFunction)
return m_jsStringGetLengthFunction(value);
return 0;
}
WEBKIT_API void JSStringRelease(JSStringRef value)
{
if (m_jsStringReleaseFunction)
return m_jsStringReleaseFunction(value);
}
WEBKIT_API bool JSValueIsNumber(JSContextRef ctx, JSValueRef value)
{
if (m_jsValueIsNumberFunction)
return m_jsValueIsNumberFunction(ctx, value);
return false;
}
WEBKIT_API bool JSValueIsString(JSContextRef ctx, JSValueRef value)
{
if (m_jsValueIsStringFunction)
return m_jsValueIsStringFunction(ctx, value);
return false;
}
WEBKIT_API JSValueRef JSValueMakeString(JSContextRef ctx, JSStringRef value)
{
if (m_jsValueMakeStringFunction)
return m_jsValueMakeStringFunction(ctx, value);
return nullptr;
}
WEBKIT_API JSValueRef JSValueMakeUndefined(JSContextRef ctx)
{
if (m_jsValueMakeUndefinedFunction)
return m_jsValueMakeUndefinedFunction(ctx);
return nullptr;
}
WEBKIT_API double JSValueToNumber(JSContextRef ctx, JSValueRef value, JSValueRef* exception)
{
if (m_jsValueToNumberFunction)
return m_jsValueToNumberFunction(ctx, value, exception);
return 0;
}
WEBKIT_API JSStringRef JSValueToStringCopy(JSContextRef ctx, JSValueRef value, JSValueRef* exception)
{
if (m_jsValueToStringCopyFunction)
return m_jsValueToStringCopyFunction(ctx, value, exception);
return nullptr;
}
}