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
|
import sys, re, os
from optparse import OptionParser
from ctypeslib.codegen.codegenerator import generate_code
from ctypeslib.codegen import typedesc
################################################################
windows_dll_names = """\
imagehlp
user32
kernel32
gdi32
advapi32
oleaut32
ole32
imm32
comdlg32
shell32
version
winmm
mpr
winscard
winspool.drv
urlmon
crypt32
cryptnet
ws2_32
opengl32
glu32
mswsock
msvcrt
msimg32
netapi32
rpcrt4""".split()
##rpcndr
##ntdll
def main(argv=None):
if argv is None:
argv = sys.argv
def windows_dlls(option, opt, value, parser):
parser.values.dlls.extend(windows_dll_names)
parser = OptionParser("usage: %prog xmlfile [options]")
parser.add_option("-c",
action="store_true",
dest="generate_comments",
help="include source file location in comments",
default=False)
parser.add_option("-d",
action="store_true",
dest="generate_docstrings",
help="include docstrings containing C prototype and source file location",
default=False)
parser.add_option("-k",
action="store",
dest="kind",
help="kind of type descriptions to include: "
"d = #defines, "
"e = enumerations, "
"f = functions, "
"s = structures, "
"t = typedefs",
metavar="TYPEKIND",
default=None)
parser.add_option("-l",
dest="dlls",
help="libraries to search for exported functions",
action="append",
default=[])
parser.add_option("-o",
dest="output",
help="output filename (if not specified, standard output will be used)",
default="-")
parser.add_option("-r",
dest="expressions",
metavar="EXPRESSION",
action="append",
help="regular expression for symbols to include "
"(if neither symbols nor expressions are specified,"
"everything will be included)",
default=None)
parser.add_option("-s",
dest="symbols",
metavar="SYMBOL",
action="append",
help="symbol to include "
"(if neither symbols nor expressions are specified,"
"everything will be included)",
default=None)
parser.add_option("-v",
action="store_true",
dest="verbose",
help="verbose output",
default=False)
parser.add_option("-w",
action="callback",
callback=windows_dlls,
help="add all standard windows dlls to the searched dlls list")
if os.name in ("ce", "nt"):
default_modules = ["ctypes.wintypes", "ctypes" ]
else:
default_modules = ["ctypes" ]
parser.add_option("-m",
dest="modules",
metavar="module",
help="Python module(s) containing symbols which will "
"be imported instead of generated",
action="append",
default=default_modules)
parser.add_option("--preload",
dest="preload",
metavar="DLL",
help="dlls to be loaded before all others (to resolve symbols)",
action="append",
default=[])
options, files = parser.parse_args(argv[1:])
if len(files) != 1:
parser.error("Exactly one input file must be specified")
if options.output == "-":
stream = sys.stdout
else:
stream = open(options.output, "w")
if options.expressions:
options.expressions = map(re.compile, options.expressions)
if options.generate_comments:
stream.write("# generated by 'xml2py'\n")
stream.write("# flags '%s'\n" % " ".join(argv[1:]))
known_symbols = {}
from ctypes import CDLL, RTLD_LOCAL, RTLD_GLOBAL
from ctypes.util import find_library
def load_library(name, mode=RTLD_LOCAL):
if os.name == "nt":
from ctypes import WinDLL
# WinDLL does demangle the __stdcall names, so use that.
return WinDLL(name, mode=mode)
path = find_library(name)
if path is None:
# Maybe 'name' is not a library name in the linker style,
# give CDLL a last chance to find the library.
path = name
return CDLL(path, mode=mode)
preloaded_dlls = [load_library(name, mode=RTLD_GLOBAL) for name in options.preload]
dlls = [load_library(name) for name in options.dlls]
for name in options.modules:
mod = __import__(name)
for submodule in name.split(".")[1:]:
mod = getattr(mod, submodule)
for name, item in mod.__dict__.iteritems():
if isinstance(item, type):
known_symbols[name] = mod.__name__
if options.kind:
types = []
for char in options.kind:
typ = {"a": [typedesc.Alias],
"d": [typedesc.Variable],
"e": [typedesc.Enumeration, typedesc.EnumValue],
"f": [typedesc.Function],
"m": [typedesc.Macro],
"s": [typedesc.Structure],
"t": [typedesc.Typedef],
}[char]
types.extend(typ)
options.kind = tuple(types)
generate_code(files[0], stream,
symbols=options.symbols,
expressions=options.expressions,
verbose=options.verbose,
generate_comments=options.generate_comments,
generate_docstrings=options.generate_docstrings,
known_symbols=known_symbols,
searched_dlls=dlls,
preloaded_dlls=options.preload,
types=options.kind)
if __name__ == "__main__":
sys.exit(main())
|