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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
#!/usr/bin/python
"""
Simple helper script generating boilerplate code for a set of functions in order
to make them dynamically loaded and GObject-introspectable.
"""
from collections import namedtuple
import re
import sys
import os
FuncInfo = namedtuple("FuncInfo", ["name", "doc", "rtype", "args", "body"])
FUNC_SPEC_RE = re.compile(r'(?P<rtype>(const\s+)?\**\s*\w+\s*\**)'
r'\s*'
r'(?P<name>\w+)'
r'\s*\('
r'(?P<args>[\w*\s,]*)'
r'\)(;| \{)')
SIZE_CONST_DEF_RE = re.compile(r'^(?P<name_num>#define\s+\w+\s*\(\s*\d+\s+)(?P<unit>[kmgtpeKMGTPE]i?[bB])\s*\)\s*$')
KiB = 1024
MiB = 1024 * KiB
GiB = 1024 * MiB
TiB = 1024 * GiB
PiB = 1024 * TiB
EiB = 1024 * PiB
KB = 1000
MB = 1000 * KB
GB = 1000 * MB
TB = 1000 * GB
PB = 1000 * TB
EB = 1000 * PB
UNIT_MULTS = {"KiB": KiB, "MiB": MiB, "GiB": GiB, "TiB": TiB, "PiB": PiB, "EiB": EiB,
"KB": KB, "MB": MB, "GB": GB, "TB": TB, "PB": PB, "EB": EB}
# overrides for function prefixes not matching the modules' names
MOD_FNAME_OVERRIDES = {"mdraid": "md"}
def expand_size_constants(definitions):
"""
Expand macros that define size constants (e.g. '#define DEFAULT_PE_SIZE (4 MiB)').
:param str definitions: lines from a source file potentially containing
definitions of size constants.
:returns: definitions with size constants expanded
"""
ret = ""
for def_line in definitions.splitlines():
match = SIZE_CONST_DEF_RE.match(def_line)
if match:
fields = match.groupdict()
unit = fields["unit"]
if unit in UNIT_MULTS:
name_num = fields["name_num"]
ret += (name_num + "* " + "%dULL" % UNIT_MULTS[unit] + ")\n")
else:
# unknown unit, cannot expand it, just leave it as it is
ret += (def_line + "\n")
else:
ret += (def_line + "\n")
return ret
def gather_defs_and_func_info(line_iter, includes):
name = doc = rtype = args = ""
defs = ""
body = ""
in_body = False
in_doc = False
in_skip = False
for line in line_iter:
if in_skip and line.strip().startswith("/* BpG-skip-end"):
in_skip = False
elif in_skip or line.strip().startswith("/* BpG-skip"):
in_skip = True
elif line.rstrip() == "}" and in_body:
in_body = False
# nothing more for this function
break
elif in_body:
body += line
elif line.strip().startswith("#include"):
includes.append(line.strip()[8:])
elif line.strip().startswith("/**"):
doc += line
in_doc = True
elif line.strip().endswith("*/") and in_doc:
doc += line
in_doc = False
else:
match = FUNC_SPEC_RE.match(line.strip())
if match:
fields = match.groupdict()
name = fields["name"]
rtype = fields["rtype"]
args = fields["args"]
if line.strip().endswith("{"):
in_body = True
else:
# nothing more for this function
break
elif in_doc:
doc += line
else:
defs += line
else:
return (expand_size_constants(defs), None)
return (expand_size_constants(defs), FuncInfo(name, doc, rtype, args, body))
def process_file(fobj):
includes = []
line_iter = iter(fobj)
items = list()
defs, fn_info = gather_defs_and_func_info(line_iter, includes)
while fn_info:
if defs:
items.append(defs)
if fn_info:
items.append(fn_info)
defs, fn_info = gather_defs_and_func_info(line_iter, includes)
if defs:
# definitions after the last function
items.append(defs)
return includes, items
def get_arg_names(args):
if not args.strip():
return []
typed_args = args.split(",")
starred_names = (typed_arg.split()[-1] for typed_arg in typed_args)
return [starred_name.strip("* ") for starred_name in starred_names]
def get_func_boilerplate(fn_info):
call_args_str = ", ".join(get_arg_names(fn_info.args))
if "int" in fn_info.rtype:
default_ret = "0"
elif "float" in fn_info.rtype:
default_ret = "0.0"
elif "bool" in fn_info.rtype:
default_ret = "FALSE"
elif fn_info.rtype.endswith("*"):
# a pointer
default_ret = "NULL"
else:
# enum or whatever
default_ret = 0
# first add the stub function doing nothing and just reporting error
ret = ("static {0.rtype} {0.name}_stub ({0.args}) {{\n" +
" g_critical (\"The function '{0.name}' called, but not implemented!\");\n" +
" g_set_error (error, BD_INIT_ERROR, BD_INIT_ERROR_NOT_IMPLEMENTED,\n"+
" \"The function '{0.name}' called, but not implemented!\");\n"
" return {1};\n"
"}}\n\n").format(fn_info, default_ret)
# then add a variable holding a reference to the dynamically loaded function
# (if any) initialized to the stub
ret += "static {0.rtype} (*_{0.name}) ({0.args}) = {0.name}_stub;\n\n".format(fn_info)
# then add a documented function calling the dynamically loaded one via the
# reference
ret += ("{0.doc}{0.rtype} {0.name} ({0.args}) {{\n" +
" return _{0.name} ({1});\n" +
"}}\n\n\n").format(fn_info, call_args_str)
return ret
def get_includes_str(includes):
if not includes:
return ""
ret = ""
for include in includes:
ret += "#include%s\n" % include
ret += "\n"
return ret
def get_funcs_info(fn_infos, module_name):
ret = "static const gchar* const {0}_functions[] = {{\n".format(module_name)
for info in fn_infos:
ret += ' "{0.name}",\n'.format(info)
ret += " NULL};\n\n"
ret += ("const gchar* const* get_{0}_functions (void) {{\n".format(module_name) +
" return {0}_functions;\n".format(module_name) +
"}\n\n")
ret += "static const guint8 {0}_num_functions = {1};\n\n".format(module_name, len(fn_infos))
ret += ("guint8 get_{0}_num_functions (void) {{\n".format(module_name) +
" return {0}_num_functions;\n".format(module_name) +
"}\n\n")
return ret
def get_loading_func(fn_infos, module_name):
# TODO: only error on functions provided by the plugin that fail to load
# TODO: implement the 'gchar **errors' argument
ret = 'gpointer load_{0}_from_plugin(const gchar *so_name) {{\n'.format(module_name)
ret += ' void *handle = NULL;\n'
ret += ' char *error = NULL;\n'
ret += ' gboolean (*check_fn) (void) = NULL;\n'
ret += ' gboolean (*init_fn) (void) = NULL;\n\n'
ret += ' handle = dlopen(so_name, RTLD_LAZY);\n'
ret += ' if (!handle) {\n'
ret += ' g_warning("failed to load module {0}: %s", dlerror());\n'.format(module_name)
ret += ' return NULL;\n'
ret += ' }\n\n'
ret += ' dlerror();\n'
ret += ' * (void**) (&check_fn) = dlsym(handle, "bd_{0}_check_deps");\n'.format(MOD_FNAME_OVERRIDES.get(module_name, module_name))
ret += ' if ((error = dlerror()) != NULL)\n'
ret += ' g_debug("failed to load the check() function for {0}: %s", error);\n'.format(module_name)
ret += ' if (!g_getenv ("LIBBLOCKDEV_SKIP_DEP_CHECKS") && check_fn && !check_fn()) {\n'
ret += ' dlclose(handle);\n'
ret += ' return NULL;\n'
ret += ' }'
ret += ' check_fn = NULL;\n\n'
ret += ' dlerror();\n'
ret += ' * (void**) (&init_fn) = dlsym(handle, "bd_{0}_init");\n'.format(MOD_FNAME_OVERRIDES.get(module_name, module_name))
ret += ' if ((error = dlerror()) != NULL)\n'
ret += ' g_debug("failed to load the init() function for {0}: %s", error);\n'.format(module_name)
ret += ' if (init_fn && !init_fn()) {\n'
ret += ' dlclose(handle);\n'
ret += ' return NULL;\n'
ret += ' }'
ret += ' init_fn = NULL;\n\n'
for info in fn_infos:
# clear any previous error and load the function
ret += ' dlerror();\n'
ret += ' * (void**) (&_{0.name}) = dlsym(handle, "{0.name}");\n'.format(info)
ret += ' if ((error = dlerror()) != NULL)\n'
ret += ' g_warning("failed to load {0.name}: %s", error);\n\n'.format(info)
ret += ' return handle;\n'
ret += '}\n\n'
return ret
def get_unloading_func(fn_infos, module_name):
ret = 'gboolean unload_{0} (gpointer handle) {{\n'.format(module_name)
ret += ' char *error = NULL;\n'
ret += ' gboolean (*close_fn) (void) = NULL;\n\n'
# revert the functions to stubs
for info in fn_infos:
ret += ' _{0.name} = {0.name}_stub;\n'.format(info)
ret += '\n'
ret += ' dlerror();\n'
ret += ' * (void**) (&close_fn) = dlsym(handle, "bd_{0}_close");\n'.format(MOD_FNAME_OVERRIDES.get(module_name, module_name))
ret += ' if (((error = dlerror()) != NULL) || !close_fn)\n'
ret += ' g_debug("failed to load the close_plugin() function for {0}: %s", error);\n'.format(module_name)
ret += ' if (close_fn) {\n'
ret += ' close_fn();\n'
ret += ' }\n\n'
ret += ' return dlclose(handle) == 0;\n'
ret += '}\n\n'
return ret
def get_fn_code(fn_info):
ret = ("{0.doc}{0.rtype} {0.name} ({0.args}) {{\n" +
" {0.body}" +
"}}\n\n").format(fn_info)
return ret
def get_fn_header(fn_info):
return "{0.doc}{0.rtype} {0.name} ({0.args});\n\n".format(fn_info)
def generate_source_header(api_file, out_dir, skip_patterns=None):
skip_patterns = skip_patterns or list()
file_name = os.path.basename(api_file)
mod_name, dot, ext = file_name.partition(".")
if not dot or ext != "api":
print("Invalid file given, needs to be in MODNAME.api format")
return 1
includes, items = process_file(open(api_file, "r"))
filtered = list()
for item in items:
if isinstance(item, FuncInfo):
if not any(re.search(pattern, item.name) for pattern in skip_patterns):
filtered.append(item)
elif not any(re.search(pattern, item) for pattern in skip_patterns):
filtered.append(item)
items = filtered
nonapi_fn_infos = [item for item in items if isinstance(item, FuncInfo) and item.body]
api_fn_infos = [item for item in items if isinstance(item, FuncInfo) and not item.body and item.doc]
with open(os.path.join(out_dir, mod_name + ".c"), "w") as src_f:
for info in nonapi_fn_infos:
src_f.write(get_fn_code(info))
src_f.write(get_funcs_info(api_fn_infos, mod_name))
for info in api_fn_infos:
src_f.write(get_func_boilerplate(info))
src_f.write(get_loading_func(api_fn_infos, mod_name))
src_f.write(get_unloading_func(api_fn_infos, mod_name))
written_fns = set()
with open(os.path.join(out_dir, mod_name + ".h"), "w") as hdr_f:
hdr_f.write(get_includes_str(includes))
for item in items:
if isinstance(item, FuncInfo):
if item.name not in written_fns:
hdr_f.write(get_fn_header(item))
written_fns.add(item.name)
else:
hdr_f.write(item)
return 0
if __name__ == "__main__":
if len(sys.argv) < 3:
print("Needs a file name and output directory, exitting.")
print("Usage: %s FILE_NAME OUTPUT_DIR [SKIP_PATTERNS]" % sys.argv[0])
sys.exit(1)
if not os.path.exists(sys.argv[1]):
print("Input file '%s' doesn't exist" % sys.argv[1])
sys.exit(1)
skip_patterns = None
if len(sys.argv) > 3:
skip_patterns = sys.argv[3:]
out_dir = sys.argv[2]
if not os.path.exists (out_dir):
os.makedirs(out_dir)
status = generate_source_header(sys.argv[1], out_dir, skip_patterns)
sys.exit(status)
|