1#!/usr/bin/env python 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 valid_processes = {'markdown': "markdown", 14 'server-header': "server_header", 15 'server-cpp': "server_cpp"} 16 17 parser = argparse.ArgumentParser(description='Process sdbus++ YAML files.') 18 19 parser.add_argument('-r', '--rootdir', dest='rootdir', default='example', 20 type=str, help='Location of files to process.') 21 parser.add_argument('-t', '--templatedir', dest='templatedir', 22 default=os.path.join(module_path, 'templates'), 23 type=str, help='Location of templates files.') 24 parser.add_argument('typeName', metavar='TYPE', type=str, 25 choices=valid_types.keys(), help='Type to operate on.') 26 parser.add_argument('process', metavar='PROCESS', type=str, 27 choices=valid_processes.keys(), 28 help='Process to apply.') 29 parser.add_argument('item', metavar='ITEM', type=str, 30 help='Item to process.') 31 32 args = parser.parse_args() 33 34 if sys.version_info < (3, 0): 35 lookup = mako.lookup.TemplateLookup(directories=[args.templatedir], 36 disable_unicode=True) 37 else: 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