#!/usr/bin/env python2.7 # -*- coding: UTF-8 no BOM -*- import os from optparse import OptionParser import damask scriptName = os.path.splitext(os.path.basename(__file__))[0] scriptID = ' '.join([scriptName,damask.version]) # -------------------------------------------------------------------- # MAIN # -------------------------------------------------------------------- parser = OptionParser(option_class=damask.extendableOption, usage='%prog options file[s]', description = """ Add info lines to ASCIItable header. """, version = scriptID) parser.add_option('-i', '--info', dest = 'info', action = 'extend', metavar = '', help = 'items to add') parser.set_defaults(info = [], ) (options,filenames) = parser.parse_args() # --- loop over input files ------------------------------------------------------------------------ if filenames == []: filenames = [None] for name in filenames: try: table = damask.ASCIItable(name = name, buffered = False) except: continue damask.util.report(scriptName,name) # ------------------------------------------ assemble header --------------------------------------- table.head_read() table.info_append(options.info) table.head_write() # ------------------------------------------ pass through data ------------------------------------- outputAlive = True while outputAlive and table.data_read(): # read next data line of ASCII table outputAlive = table.data_write() # output processed line # ------------------------------------------ output finalization ----------------------------------- table.close() # close ASCII tables