José Fonseca | a742ab9 | 2012-04-14 17:24:14 +0100 | [diff] [blame] | 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 |
José Fonseca | 8130193 | 2012-11-11 00:10:20 +0000 | [diff] [blame] | 29 | from specs.stdapi import API |
José Fonseca | a742ab9 | 2012-04-14 17:24:14 +0100 | [diff] [blame] | 30 | |
| 31 | |
José Fonseca | 0e5d1ff | 2012-04-22 10:12:46 +0100 | [diff] [blame] | 32 | class DllDispatcher(Dispatcher): |
| 33 | |
José Fonseca | 8130193 | 2012-11-11 00:10:20 +0000 | [diff] [blame] | 34 | def dispatchModule(self, module): |
| 35 | tag = module.name.upper() |
Piotr Podsiadły | 0b8b019 | 2019-01-03 20:39:55 +0100 | [diff] [blame] | 36 | 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é Fonseca | 0e5d1ff | 2012-04-22 10:12:46 +0100 | [diff] [blame] | 59 | |
José Fonseca | 8130193 | 2012-11-11 00:10:20 +0000 | [diff] [blame] | 60 | Dispatcher.dispatchModule(self, module) |
José Fonseca | 0e5d1ff | 2012-04-22 10:12:46 +0100 | [diff] [blame] | 61 | |
José Fonseca | 8512a4b | 2012-11-11 09:15:09 +0000 | [diff] [blame] | 62 | def getProcAddressName(self, module, function): |
José Fonseca | 8512a4b | 2012-11-11 09:15:09 +0000 | [diff] [blame] | 63 | return '_get%sProcAddress' % (module.name.upper()) |
| 64 | |
José Fonseca | 0e5d1ff | 2012-04-22 10:12:46 +0100 | [diff] [blame] | 65 | |
José Fonseca | a742ab9 | 2012-04-14 17:24:14 +0100 | [diff] [blame] | 66 | class DllRetracer(Retracer): |
| 67 | |
| 68 | def retraceApi(self, api): |
José Fonseca | 8130193 | 2012-11-11 00:10:20 +0000 | [diff] [blame] | 69 | for module in api.modules: |
| 70 | dispatcher = DllDispatcher() |
| 71 | dispatcher.dispatchModule(module) |
José Fonseca | a742ab9 | 2012-04-14 17:24:14 +0100 | [diff] [blame] | 72 | |
| 73 | Retracer.retraceApi(self, api) |