-rwxr-xr-x | libopie2/tools/regen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/tools/regen.py b/libopie2/tools/regen.py index 89385e1..2f53a14 100755 --- a/libopie2/tools/regen.py +++ b/libopie2/tools/regen.py @@ -1,78 +1,78 @@ #!/usr/bin/env python """Regenerate C++ mapping classes""" #---------------------------------------------------------------------------# # # #---------------------------------------------------------------------------# def regenDebugMapper( basename ): """ Debug Mapper - maps ioctl numbers to names, e.g. 0x4x5a -> SIOCGIWNAME """ - result = os.popen( 'find /usr/include -name "*.h" |xargs grep -h SIOC|grep 0x' ).readlines() + result = os.popen( 'find /usr/include -name "*.h" |xargs -- grep -h SIOC|grep 0x' ).readlines() try: tablehfile = file( basename+".h", "w" ) except: tablehfile = sys.stdout try: tablecfile = file( basename+".cpp", "w" ) except: tablecfile = sys.stdout print >>tablehfile,""" /* * debug value mapper - generated by %s - (C) Michael 'Mickey' Lauer <mickey@vanille.de> */ #ifndef DEBUGMAPPER_H #define DEBUGMAPPER_H #include <qstring.h> #include <qintdict.h> typedef QIntDict<QString> IntStringMap; class DebugMapper { public: DebugMapper(); ~DebugMapper(); const QString& map( int value ) const; private: IntStringMap _map; }; #endif """ % sys.argv[0] print >>tablecfile,""" /* * debug value mapper - generated by %s - (C) Michael 'Mickey' Lauer <mickey@vanille.de> */ #include <opie2/odebug.h> #include "%s" DebugMapper::DebugMapper() { odebug << "DebugMapper::DebugMapper()" << oendl; """ % ( sys.argv[0], tablehfile.name ) for line in result: l = line.split() if not l[0].startswith( "#define" ) or not l[2].startswith( "0x" ): print >>sys.stderr, "can't parse line: %s" % l continue print >>tablecfile, " _map.insert( %s, new QString(\"%s\") );" % ( l[2], l[1] ) print >>tablecfile,""" }; @@ -208,65 +208,65 @@ OManufacturerDB::OManufacturerDB() print >>cpp, ' manufacturersExt.insert( "%s", "%s" );' % ( entries[0], "_".join( entries[3:] ) ) else: assert( false ) if not (count % 1000): print >>cpp,""" #ifdef OPIE_IMPROVE_GUI_LATENCY if (qApp) qApp->processEvents(); #endif """ print "successfully parsed", count, "manufacturer lines" print >>cpp,""" } OManufacturerDB::~OManufacturerDB() { } const QString& OManufacturerDB::lookup( const QString& macaddr ) const { return manufacturers[macaddr.upper().left(8)]; } const QString& OManufacturerDB::lookupExt( const QString& macaddr ) const { QMap<QString,QString>::ConstIterator it = manufacturersExt.find( macaddr.upper().left(8) ); return it == manufacturersExt.end() ? lookup( macaddr ) : *it; } """ #---------------------------------------------------------------------------# # # #---------------------------------------------------------------------------# #---------------------------------------------------------------------------# # # #---------------------------------------------------------------------------# #---------------------------------------------------------------------------# # # #---------------------------------------------------------------------------# import sys import os import copy if __name__ == "__main__": if len( sys.argv ) != 3: print """ Usage: %s <table> <basename> Available tables: %s """ % ( sys.argv[0], [ str(k)[5:] for k in copy.copy( locals() ) if k.startswith( "regen" ) ] ) sys.exit( -1 ) try: func = locals()["regen%s" % sys.argv[1]] except KeyError: print "Table '%s' unknown." % sys.argv[1] sys.exit( -1 ) else: func( sys.argv[2] ) - sys.exit( 0 )
\ No newline at end of file + sys.exit( 0 ) |