blob: ad9db9a443bce83f542224cc2e8c7c418afdc642 [file] [log] [blame]
José Fonsecaa742ab92012-04-14 17:24:14 +01001##########################################################################
2#
3# Copyright 2008-2010 VMware, Inc.
4# All Rights Reserved.
5#
6# Permission is hereby granted, free of charge, to any person obtaining a copy
7# of this software and associated documentation files (the "Software"), to deal
8# in the Software without restriction, including without limitation the rights
9# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10# copies of the Software, and to permit persons to whom the Software is
11# furnished to do so, subject to the following conditions:
12#
13# The above copyright notice and this permission notice shall be included in
14# all copies or substantial portions of the Software.
15#
16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22# THE SOFTWARE.
23#
24##########################################################################/
25
26
27from retrace import Retracer
28from dispatch import Dispatcher
José Fonseca81301932012-11-11 00:10:20 +000029from specs.stdapi import API
José Fonsecaa742ab92012-04-14 17:24:14 +010030
31
José Fonseca0e5d1ff2012-04-22 10:12:46 +010032class DllDispatcher(Dispatcher):
33
José Fonseca81301932012-11-11 00:10:20 +000034 def dispatchModule(self, module):
35 tag = module.name.upper()
Piotr Podsiadły0b8b0192019-01-03 20:39:55 +010036 print(r'const char *g_sz%sDllName = NULL;' % (tag,))
37 print(r'HMODULE g_h%sModule = NULL;' % (tag,))
38 print(r'')
39 print(r'static PROC')
40 print(r'_get%sProcAddress(LPCSTR lpProcName) {' % tag)
41 print(r' if (!g_h%sModule) {' % tag)
42 print(r' if (g_sz%sDllName) {' % tag)
43 print(r' g_h%sModule = LoadLibraryA(g_sz%sDllName);' % (tag, tag))
44 print(r' if (!g_h%sModule) {' % tag)
45 print(r' os::log("warning: failed to load %%s\n", g_sz%sDllName);' % tag)
46 print(r' }')
47 print(r' }')
48 print(r' if (!g_h%sModule) {' % tag)
49 print(r' g_h%sModule = LoadLibraryA("%s.dll");' % (tag, module.name))
50 print(r' }')
51 print(r' if (!g_h%sModule) {' % tag)
52 print(r' os::log("error: failed to load %s.dll\n");' % module.name)
53 print(r' exit(1);')
54 print(r' }')
55 print(r' }')
56 print(r' return GetProcAddress(g_h%sModule, lpProcName);' % tag)
57 print(r'}')
58 print(r'')
José Fonseca0e5d1ff2012-04-22 10:12:46 +010059
José Fonseca81301932012-11-11 00:10:20 +000060 Dispatcher.dispatchModule(self, module)
José Fonseca0e5d1ff2012-04-22 10:12:46 +010061
José Fonseca8512a4b2012-11-11 09:15:09 +000062 def getProcAddressName(self, module, function):
José Fonseca8512a4b2012-11-11 09:15:09 +000063 return '_get%sProcAddress' % (module.name.upper())
64
José Fonseca0e5d1ff2012-04-22 10:12:46 +010065
José Fonsecaa742ab92012-04-14 17:24:14 +010066class DllRetracer(Retracer):
67
68 def retraceApi(self, api):
José Fonseca81301932012-11-11 00:10:20 +000069 for module in api.modules:
70 dispatcher = DllDispatcher()
71 dispatcher.dispatchModule(module)
José Fonsecaa742ab92012-04-14 17:24:14 +010072
73 Retracer.retraceApi(self, api)