1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
from __future__ import print_function
#
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# SLEPc - Scalable Library for Eigenvalue Problem Computations
# Copyright (c) 2002-2018, Universitat Politecnica de Valencia, Spain
#
# This file is part of SLEPc.
# SLEPc is distributed under a 2-clause BSD license (see LICENSE).
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
import os, sys
class Log:
def Open(self,filename):
self.fd = open(filename,'w')
try:
self.filename = os.path.relpath(filename) # needs python-2.6
except AttributeError:
self.filename = filename
def Println(self,string):
print(string)
self.fd.write(string+'\n')
def Print(self,string):
print(string, end=' ')
self.fd.write(string+' ')
def NewSection(self,string):
print('done\n'+string, end=' ')
sys.stdout.flush()
self.fd.write('='*80+'\n'+string+'\n')
def write(self,string):
self.fd.write(string+'\n')
def Exit(self,string):
print('\n'+string)
if hasattr(self,'fd'):
self.fd.write('\n'+string+'\n')
self.fd.close()
msg = 'ERROR: See "' + self.filename + '" file for details'
else:
msg = 'ERROR during configure (log file not open yet)'
sys.exit(msg)
|