1#!/usr/bin/env python3 2import sdbusplus 3import mako.lookup 4import argparse 5import sys 6import os 7 8 9def main(): 10 module_path = os.path.dirname(sdbusplus.__file__) 11 12 valid_types = {'interface': sdbusplus.Interface, 13 'error': sdbusplus.Error} 14 valid_processes = {'markdown': "markdown", 15 'server-header': "server_header", 16 'server-cpp': "server_cpp", 17 'exception-header': "exception_header", 18 'exception-cpp': "exception_cpp", 19 'client-header': "client_header"} 20 21 parser = argparse.ArgumentParser(description='Process sdbus++ YAML files.') 22 23 parser.add_argument('-r', '--rootdir', dest='rootdir', default='.', 24 type=str, help='Location of files to process.') 25 parser.add_argument('-t', '--templatedir', dest='templatedir', 26 default=os.path.join(module_path, 'templates'), 27 type=str, help='Location of templates files.') 28 parser.add_argument('typeName', metavar='TYPE', type=str, 29 choices=valid_types.keys(), help='Type to operate on.') 30 parser.add_argument('process', metavar='PROCESS', type=str, 31 choices=valid_processes.keys(), 32 help='Process to apply.') 33 parser.add_argument('item', metavar='ITEM', type=str, 34 help='Item to process.') 35 36 args = parser.parse_args() 37 38 lookup = mako.lookup.TemplateLookup(directories=[args.templatedir]) 39 40 instance = valid_types[args.typeName].load(args.item, args.rootdir) 41 function = getattr(instance, valid_processes[args.process]) 42 print(function(lookup)) 43 44if __name__ == '__main__': 45 main() 46