]> git.cworth.org Git - apitrace/blob - retrace/dllretrace.py
Merge branch 'd2d'
[apitrace] / retrace / dllretrace.py
1 ##########################################################################
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
27 from retrace import Retracer
28 from dispatch import Dispatcher
29
30
31 class DllDispatcher(Dispatcher):
32
33     def dispatchApi(self, api):
34         tag = api.name.upper()
35         print r'const char *g_sz%sDllName = NULL;' % (tag,)
36         print r'HMODULE g_h%sModule = NULL;' % (tag,)
37         print r''
38         print r'static PROC'
39         print r'_getPublicProcAddress(LPCSTR lpProcName) {'
40         print r'    if (!g_h%sModule) {' % tag
41         print r'        if (g_sz%sDllName) {' % tag
42         print r'            g_h%sModule = LoadLibraryA(g_sz%sDllName);' % (tag, tag)
43         print r'            if (!g_h%sModule) {' % tag
44         print r'                os::log("warning: failed to load %%s\n", g_sz%sDllName);' % tag 
45         print r'            }'
46         print r'        }'
47         print r'        if (!g_h%sModule) {' % tag
48         print r'            g_h%sModule = LoadLibraryA("%s.dll");' % (tag, api.name)
49         print r'        }'
50         print r'        if (!g_h%sModule) {' % tag
51         print r'            os::log("error: failed to load %s.dll\n");' % api.name
52         print r'            exit(1);'
53         print r'        }'
54         print r'    }'
55         print r'    return GetProcAddress(g_h%sModule, lpProcName);' % tag
56         print r'}'
57         print r''
58
59         Dispatcher.dispatchApi(self, api)
60
61
62 class DllRetracer(Retracer):
63
64     def retraceApi(self, api):
65         dispatcher = DllDispatcher()
66         dispatcher.dispatchApi(api)
67
68         Retracer.retraceApi(self, api)
69