26
26
27
27
#Here we define some variables that are used all over the place
28
28
MONTHS = ['Jan' , 'Feb' , 'Mar' , 'Apr' , 'May' , 'Jun' , 'Jul' , 'Aug' ,'Sep' , 'Oct' , 'Nov' , 'Dec' ]
29
- __version__ = 0.9
29
+ __version__ = 0.92
30
30
31
31
32
32
class cp_config ():
@@ -58,7 +58,8 @@ def __init__(self, filename=None):
58
58
"use_chanFile" : [False , "Use TriKinetics channel format" , 'boolean' ],
59
59
"inputPath" : ['/' , "The path to where your raw data are stored" , 'path' ],
60
60
"outputPath" : ['/' , "The path to where your processed data are stored" , 'path' ],
61
- "zipPath" : ['/' , "The path to where the zipped files are stored" , 'path' ]
61
+ "zipPath" : ['/' , "The path to where the zipped files are stored" , 'path' ],
62
+ "file_prefix" : [ 'Monitor' , "Prefix of filenames" , 'text' ]
62
63
}
63
64
self .Read ()
64
65
@@ -111,8 +112,9 @@ def GetValue(self, section, key):
111
112
return r
112
113
elif type (r ) == type (True ): #native boolean
113
114
return r
114
- elif type (r ) == type ('' ):
115
- r = r .split (',' )
115
+ elif type (r ) == type ('' ): #string
116
+ #r = r.split(',')
117
+ pass
116
118
117
119
if len (r ) == 2 : #tuple
118
120
r = tuple ([int (i ) for i in r ]) # tuple
@@ -251,7 +253,10 @@ def createDayDir(rootpath, date, overwrite=False):
251
253
log .error ( 'The directory for %s already exists! Files were not overwritten.\n ' % date )
252
254
return ''
253
255
else :
254
- os .makedirs (dirFullPath )
256
+ try :
257
+ os .makedirs (dirFullPath )
258
+ except :
259
+ pass
255
260
return str (dirFullPath )
256
261
257
262
def processFile (inFile , outFile , startTime , dataType = 0 , correctErrors = True , cleanInput = False ):
@@ -285,8 +290,12 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
285
290
286
291
for singleLine in inputfile : #goes through the file line by line
287
292
line = singleLine .split ('\t ' ) #split contents by tabs
288
- d , t = re .split ('\W+' , line [1 ]), re .split ('\W+' , line [2 ]) #split date and time
289
- lineDate = datetime .datetime ( 2000 + int (d [2 ]), #year
293
+ try :
294
+ d , t = re .split ('\W+' , line [1 ]), re .split ('\W+' , line [2 ]) #split date and time
295
+ except :
296
+ print line
297
+
298
+ lineDate = datetime .datetime ( (int (d [2 ]) < 2000 )* 2000 + int (d [2 ]), #year
290
299
MONTHS .index (d [1 ])+ 1 , #month as number
291
300
int (d [0 ]), #day
292
301
int (t [0 ]), #hour
@@ -323,12 +332,13 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
323
332
324
333
mm = str (startTime .month ).zfill (2 )
325
334
dd = str (startTime .day ).zfill (2 )
326
- mon = outFile [outFile .index ('Monitor' )+ len ('Monitor' ):- 4 ].zfill (3 )
335
+ FT = FILE_PREFIX [0 ].upper ()
336
+ mon = outFile [outFile .index (FILE_PREFIX )+ len (FILE_PREFIX ):- 4 ].zfill (3 )
327
337
328
338
329
339
if dataType == 0 : #Writes proper contents in Monitor files (1 file = 1 monitor)
330
340
331
- outFile = outFile [:outFile .index ('Monitor' )] + '%s%sM%s .txt' % (mm , dd , mon )
341
+ outFile = outFile [:outFile .index (FILE_PREFIX )] + '%s%s%s%s .txt' % (mm , dd , FT , mon )
332
342
333
343
try :
334
344
outputfile = open (outFile , 'w' )
@@ -360,7 +370,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
360
370
header += '\n '
361
371
ch += 1
362
372
363
- ch_outFile = outFile [:outFile .index ('Monitor' )] + ch_filename + '.txt'
373
+ ch_outFile = outFile [:outFile .index (FILE_PREFIX )] + ch_filename + '.txt'
364
374
365
375
try :
366
376
outputfile = open (ch_outFile , 'w' )
@@ -382,7 +392,6 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
382
392
if __name__ == "__main__" :
383
393
384
394
log = customLogger ()
385
- opts = cp_config ('copyfiles.cfg' )
386
395
387
396
usage = '%prog [options] [argument]\n No options\t \t fetch yesterday\' s data with settings specified in config file'
388
397
version = '%prog version ' + str (__version__ )
@@ -391,11 +400,15 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
391
400
parser .add_option ('-d' , '--date' , dest = 'date' , metavar = "YYYY-MM-DD" , help = "Fetch data for specified date" )
392
401
parser .add_option ('-p' , '--period' , dest = 'period' , metavar = "YYYY-MM-DD/YYYY-MM-DD" , help = "Fetch data for specified period" )
393
402
parser .add_option ('-i' , '--input' , dest = 'path' , metavar = "PATH" , help = "Use specified path as inputpath" )
403
+ parser .add_option ('-c' , '--config' , dest = 'cfg_file' , metavar = "CONFIG" , help = "Use specified config file" )
394
404
parser .add_option ('--overwrite' , action = "store_true" , default = False , dest = 'overwrite' , help = "Write over currently existing files and directories" )
395
405
396
406
(options , args ) = parser .parse_args ()
397
407
398
408
### Getting date or period
409
+
410
+ cfg_file = options .cfg_file or 'copyfiles.cfg'
411
+ opts = cp_config (cfg_file )
399
412
400
413
startHour , startMinute = [int (v ) for v in opts .GetOption ('startTime' ).split (':' )]
401
414
@@ -419,11 +432,19 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
419
432
###
420
433
421
434
### Getting input Files, output path and monitors to collect
422
- try :
423
- m_s , m_e = [ int (v ) for v in opts .GetOption ('monitors' ).split ('-' ) ]
424
- except :
425
- m_s = m_e = opts .GetOption ('monitors' )
426
- monitors = range (m_s , m_e + 1 )
435
+ monitors = []
436
+ mons = opts .GetOption ('monitors' ).split (';' )
437
+ FILE_PREFIX = opts .GetOption ('file_prefix' )
438
+
439
+ for series in mons :
440
+ if '-' in series :
441
+ m_s , m_e = [ int (v ) for v in series .split ('-' ) ]
442
+ elif ',' in series :
443
+ m_s , m_e = [ int (v ) for v in series .split (',' ) ]
444
+ else :
445
+ m_s = m_e = int (series )
446
+ monitors = list (set (monitors + range (m_s , m_e + 1 )))
447
+
427
448
428
449
if options .path and os .path .exists (options .path ):
429
450
inputPath = options .path
@@ -432,7 +453,8 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
432
453
433
454
log .output ( 'Using input directory %s' % inputPath )
434
455
435
- filelist = glob .glob (os .path .join (inputPath , '*.txt' ) )
456
+ dam_filelist = glob .glob (os .path .join (inputPath , '%s*.txt' % FILE_PREFIX ) )
457
+ #dam_filelist = [f for f in os.listdir(os.path.join(inputPath)) if FILE_PREFIX in f]
436
458
rootOutputPath = opts .GetOption ('outputPath' )
437
459
438
460
###
@@ -445,22 +467,24 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
445
467
mail_username = opts .GetOption ('email_username' ) or None
446
468
mail_password = opts .GetOption ('email_password' ) or None
447
469
470
+
471
+ #DAM monitors
448
472
for day in range (collectDays ):
449
473
450
474
log .output ( 'Processing data for date: %s/%s/%s' % (startTime .year , startTime .month , startTime .day ) )
451
475
outputPath = createDayDir (rootOutputPath , startTime , options .overwrite )
452
476
453
477
if outputPath :
454
- if len (filelist ) != len (monitors ):
455
- log .error ( 'Will not import all data: %s monitor(s) were found. Expecting %s\n ' % ( len (filelist ), len (monitors ) ) )
478
+ if len (dam_filelist ) < len (monitors ):
479
+ log .error ( 'Will not import all data: %s monitor(s) were found. Expecting %s\n ' % ( len (dam_filelist ), len (monitors ) ) )
456
480
457
- for n , monFile in enumerate (filelist ):
481
+ for n , monFile in enumerate (dam_filelist ):
458
482
fname = os .path .split (monFile )[- 1 ]
459
483
460
- log .output ( 'Processing file %s/%s: %s' % (n + 1 , len (filelist ), fname ) )
484
+ log .output ( 'Processing file %s/%s: %s' % (n + 1 , len (dam_filelist ), fname ) )
461
485
462
486
try :
463
- mon = int (fname [fname .index ('Monitor' )+ len ('Monitor' ):- 4 ])
487
+ mon = int (fname [fname .index (FILE_PREFIX )+ len (FILE_PREFIX ):- 4 ])
464
488
except :
465
489
log .error ( 'Could not determine monitor number. Check that your files are properly named (e.g.: Monitor001.txt)' )
466
490
@@ -469,6 +493,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
469
493
else :
470
494
log .error ( 'The output folder already exists! Process Aborted.' )
471
495
496
+
472
497
zipFileName = str (startTime ).split (' ' )[0 ]+ '.zip'
473
498
zipFileName = os .path .join (opts .GetOption ('zipPath' ), zipFileName )
474
499
zipFile (outputPath , zipFileName )
@@ -486,3 +511,4 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
486
511
startTime += datetime .timedelta (days = 1 )
487
512
488
513
514
+
0 commit comments