]> git.cworth.org Git - apitrace/blob - wrappers/dlltrace.py
Use skiplist-based FastCallSet within trace::CallSet
[apitrace] / wrappers / dlltrace.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 """Trace code generation for Windows DLLs."""
27
28
29 import ntpath
30
31 from trace import Tracer
32 from dispatch import Dispatcher
33 from specs.stdapi import API
34
35
36 class DllDispatcher(Dispatcher):
37
38     def dispatchModule(self, module):
39         tag = module.name.upper()
40         print r'HMODULE g_h%sModule = NULL;' % (tag,)
41         print r''
42         print r'static PROC'
43         print r'_get%sProcAddress(LPCSTR lpProcName) {' % tag
44         print r'    if (!g_h%sModule) {' % tag
45         print r'        char szDll[MAX_PATH] = {0};'
46         print r'        if (!GetSystemDirectoryA(szDll, MAX_PATH)) {'
47         print r'            return NULL;'
48         print r'        }'
49         print r'        strcat(szDll, "\\\\%s.dll");' % module.name
50         print r'        g_h%sModule = LoadLibraryA(szDll);' % tag
51         print r'        if (!g_h%sModule) {' % tag
52         print r'            return NULL;'
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.dispatchModule(self, module)
60
61     def getProcAddressName(self, module, function):
62         assert self.isFunctionPublic(module, function)
63         return '_get%sProcAddress' % (module.name.upper())
64
65
66 class DllTracer(Tracer):
67
68     def header(self, api):
69
70         for module in api.modules:
71             dispatcher = DllDispatcher()
72             dispatcher.dispatchModule(module)
73
74         Tracer.header(self, api)