DAMASK_EICMD/lib/damask/asciitable.py

262 lines
9.1 KiB
Python
Raw Normal View History

# $Id$
2011-12-14 01:32:26 +05:30
class ASCIItable():
'''
There should be a doc string here :)
'''
import sys,numpy
2011-12-14 01:32:26 +05:30
__slots__ = ['__IO__',
'info',
'labels',
'data',
]
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def __init__(self,
fileIn = sys.stdin,
fileOut = sys.stdout,
buffered = True,
labels = True):
2011-12-14 01:32:26 +05:30
self.__IO__ = {'in': fileIn,
'out':fileOut,
'output':[],
'buffered':buffered,
'labels':labels,
2011-12-14 01:32:26 +05:30
'validReadSize': 0,
'dataStart': 0,
2011-12-14 01:32:26 +05:30
}
self.info = []
self.labels = []
self.data = []
# ------------------------------------------------------------------
def _transliterateToFloat(self,x):
try:
return float(x)
except:
return 0.0
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def output_write(self,
what):
if isinstance(what,list):
for item in what: self.output_write(item)
else:
self.__IO__['output'] += [str(what)]
return self.__IO__['buffered'] or self.output_flush()
2011-12-14 01:32:26 +05:30
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def output_flush(self,
clear = True):
import sys
try:
self.__IO__['output'] == [] or self.__IO__['out'].write('\n'.join(self.__IO__['output']) + '\n')
except(IOError) as e:
return False
2011-12-14 01:32:26 +05:30
if clear: self.output_clear()
return True
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def output_clear(self):
self.__IO__['output'] = []
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def head_read(self):
'''
get column labels by either read the first row, or
--if keyword "head[*]" is present-- the last line of the header
'''
2011-12-18 21:19:44 +05:30
import re
2011-12-14 01:32:26 +05:30
try:
self.__IO__['in'].seek(0)
except:
pass
firstline = self.__IO__['in'].readline()
m = re.search('(\d+)\s*head', firstline.lower())
if self.__IO__['labels']: # table features labels
if m: # found header info
self.info = [self.__IO__['in'].readline().strip() for i in xrange(1,int(m.group(1)))]
self.labels = self.__IO__['in'].readline().split()
else: # no header info (but labels)
self.labels = firstline.split()
self.__IO__['validReadSize'] = len(self.labels)
else: # no labels present in table
if m: # found header info
self.info = [self.__IO__['in'].readline().strip() for i in xrange(0,int(m.group(1)))] # all header is info
# ... without any labels
try:
self.__IO__['dataStart'] = self.__IO__['in'].tell() # current file position is at start of data
except(IOError):
pass
2011-12-14 01:32:26 +05:30
if self.__IO__['validReadSize'] == 0: # in case no valid data length is known
self.__IO__['validReadSize'] = len(self.__IO__['in'].readline().split()) # assume constant data width from first line
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def head_write(self):
'''
write current header information (info + labels)
'''
if self.__IO__['labels']:
return self.output_write ([
'%i\theader'%(len(self.info)+1),
self.info,
'\t'.join(self.labels),
])
else:
return self.output_write ([
'%i\theader'%(len(self.info)),
self.info,
])
2011-12-14 01:32:26 +05:30
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def labels_append(self,
what):
'''
add item or list to existing set of labels
'''
2011-12-14 01:32:26 +05:30
if isinstance(what,list):
for item in what: self.labels_append(item)
else: self.labels += [str(what)]
self.__IO__['labels'] = True # switch on processing (in particular writing) of labels
# ------------------------------------------------------------------
def labels_clear(self):
self.labels = []
# ------------------------------------------------------------------
def labels_index(self,
labels):
'''
tell index of column label(s)
'''
if isinstance(labels,list):
idx = []
for label in labels:
try:
idx.append(label+0)
except TypeError:
try:
idx.append(self.labels.index(label))
except ValueError:
idx.append(-1)
else:
try:
idx = labels+0
except TypeError:
try:
idx = self.labels.index(labels)
except(ValueError):
idx = -1
return idx
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def info_append(self,
what):
'''
add item or list to existing set of infos
'''
2011-12-14 01:32:26 +05:30
if isinstance(what,list):
for item in what: self.info_append(item)
else: self.info += [str(what)]
# ------------------------------------------------------------------
def info_clear(self):
self.info = []
# ------------------------------------------------------------------
def data_rewind(self):
self.__IO__['in'].seek(self.__IO__['dataStart'])
# ------------------------------------------------------------------
def data_skipLines(self,lines):
for i in range(lines):
self.__IO__['in'].readline()
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def data_read(self):
line = self.__IO__['in'].readline() # get next data row
if self.__IO__['labels']:
items = line.split()[:self.__IO__['validReadSize']] # use up to valid size (label count)
self.data = {False: [],
True: items}[len(items) == self.__IO__['validReadSize']] # take if correct number of entries
else:
self.data = line.split() # take all
return self.data != []
# ------------------------------------------------------------------
def data_readLine(self,line):
self.__IO__['in'].seek(self.__IO__['dataStart'])
for i in range(line-1):
self.__IO__['in'].readline()
self.data_read()
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def data_write(self):
if len(self.data) == 0: return
2011-12-14 01:32:26 +05:30
if isinstance(self.data[0],list):
return self.output_write (['\t'.join(map(str,items)) for items in self.data])
2011-12-14 01:32:26 +05:30
else:
return self.output_write ('\t'.join(map(str,self.data)))
2011-12-14 01:32:26 +05:30
# ------------------------------------------------------------------
def data_writeArray(self,format='%g'):
import numpy
'''
write whole numpy array data
'''
return numpy.savetxt(self.__IO__['out'], self.data, fmt=format, delimiter='\t')
# ------------------------------------------------------------------
2011-12-14 01:32:26 +05:30
def data_append(self,
what):
if isinstance(what,list):
2011-12-14 01:32:26 +05:30
for item in what: self.data_append(item)
else:
self.data += [str(what)]
# ------------------------------------------------------------------
def data_set(self,
what,where):
idx = -1
try:
idx = self.labels.index(where)
if len(self.data) <= idx:
self.data_append(['n/a' for i in xrange(idx+1-len(self.data))]) # grow data if too short
self.data[idx] = str(what)
except(ValueError):
pass
return idx
# ------------------------------------------------------------------
def data_clear(self):
self.data = []
# ------------------------------------------------------------------
def data_asFloat(self):
return map(self._transliterateToFloat,self.data)
# ------------------------------------------------------------------
def data_asArray(self,
labels = []):
import numpy
'''
read whole data of all (given) labels as numpy array
'''
if labels == []: indices = range(self.__IO__['validReadSize']) # use all columns
else: indices = self.labels_index(labels) # use specified columns
self.data_rewind()
theArray = numpy.loadtxt(self.__IO__['in'], usecols=indices)
if len(theArray.shape) < 2: # single column
theArray = theArray.reshape(theArray.shape[0],1)
return theArray