Skip to content

Commit b3a514f

Browse files
committed
Added (not final) support for flymon files
1 parent 79c4b74 commit b3a514f

File tree

2 files changed

+72
-22
lines changed

2 files changed

+72
-22
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#This is the configuration file for data fetcher.
2+
#Edit it as necessary then save the file inside your home folder (linux and mac)
3+
#or in this same folder (windows)
4+
[Options]
5+
monitors = 2-6
6+
starttime = 09:00
7+
8+
inputpath = /mnt/flydam/sleepData/flymon
9+
outputpath = /mnt/flydam/sleepData/dailyData
10+
zippath = /mnt/flydam/sleepData/dailyData/backup
11+
file_prefix = flymon
12+
13+
use_monfile = True
14+
use_chanfile = False
15+
16+
correcterrors = True
17+
cleaninput = False
18+
19+
send_email = False
20+
smtpmailserver = smtp.mailserver.edu
21+
email_username = username
22+
email_password = password
23+
email_rcpts = youraddress@email.edu
24+
attach_zipfile = True

accessories/data_fetcher/copyfiles.py

+48-22
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#Here we define some variables that are used all over the place
2828
MONTHS = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug','Sep', 'Oct', 'Nov', 'Dec']
29-
__version__ = 0.9
29+
__version__ = 0.92
3030

3131

3232
class cp_config():
@@ -58,7 +58,8 @@ def __init__(self, filename=None):
5858
"use_chanFile" : [False, "Use TriKinetics channel format", 'boolean'],
5959
"inputPath" : ['/', "The path to where your raw data are stored", 'path'],
6060
"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']
6263
}
6364
self.Read()
6465

@@ -111,8 +112,9 @@ def GetValue(self, section, key):
111112
return r
112113
elif type(r) == type(True): #native boolean
113114
return r
114-
elif type(r) == type(''):
115-
r = r.split(',')
115+
elif type(r) == type(''): #string
116+
#r = r.split(',')
117+
pass
116118

117119
if len(r) == 2: #tuple
118120
r = tuple([int(i) for i in r]) # tuple
@@ -251,7 +253,10 @@ def createDayDir(rootpath, date, overwrite=False):
251253
log.error ( 'The directory for %s already exists! Files were not overwritten.\n' % date )
252254
return ''
253255
else:
254-
os.makedirs(dirFullPath)
256+
try:
257+
os.makedirs(dirFullPath)
258+
except:
259+
pass
255260
return str(dirFullPath)
256261

257262
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
285290

286291
for singleLine in inputfile: #goes through the file line by line
287292
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
290299
MONTHS.index(d[1])+1, #month as number
291300
int(d[0]), #day
292301
int(t[0]), #hour
@@ -323,12 +332,13 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
323332

324333
mm = str(startTime.month).zfill(2)
325334
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)
327337

328338

329339
if dataType == 0: #Writes proper contents in Monitor files (1 file = 1 monitor)
330340

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)
332342

333343
try:
334344
outputfile = open(outFile, 'w')
@@ -360,7 +370,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
360370
header += '\n'
361371
ch +=1
362372

363-
ch_outFile = outFile[:outFile.index('Monitor')] + ch_filename + '.txt'
373+
ch_outFile = outFile[:outFile.index(FILE_PREFIX)] + ch_filename + '.txt'
364374

365375
try:
366376
outputfile = open(ch_outFile, 'w')
@@ -382,7 +392,6 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
382392
if __name__ == "__main__":
383393

384394
log = customLogger()
385-
opts = cp_config('copyfiles.cfg')
386395

387396
usage = '%prog [options] [argument]\nNo options\t\tfetch yesterday\'s data with settings specified in config file'
388397
version= '%prog version ' + str(__version__)
@@ -391,11 +400,15 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
391400
parser.add_option('-d', '--date', dest='date', metavar="YYYY-MM-DD", help="Fetch data for specified date")
392401
parser.add_option('-p', '--period', dest='period', metavar="YYYY-MM-DD/YYYY-MM-DD", help="Fetch data for specified period")
393402
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")
394404
parser.add_option('--overwrite', action="store_true", default=False, dest='overwrite', help="Write over currently existing files and directories")
395405

396406
(options, args) = parser.parse_args()
397407

398408
### Getting date or period
409+
410+
cfg_file = options.cfg_file or 'copyfiles.cfg'
411+
opts = cp_config(cfg_file)
399412

400413
startHour, startMinute = [int(v) for v in opts.GetOption('startTime').split(':')]
401414

@@ -419,11 +432,19 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
419432
###
420433

421434
### 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+
427448

428449
if options.path and os.path.exists(options.path):
429450
inputPath = options.path
@@ -432,7 +453,8 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
432453

433454
log.output( 'Using input directory %s' % inputPath )
434455

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]
436458
rootOutputPath = opts.GetOption('outputPath')
437459

438460
###
@@ -445,22 +467,24 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
445467
mail_username = opts.GetOption('email_username') or None
446468
mail_password = opts.GetOption('email_password') or None
447469

470+
471+
#DAM monitors
448472
for day in range(collectDays):
449473

450474
log.output( 'Processing data for date: %s/%s/%s' % (startTime.year, startTime.month, startTime.day) )
451475
outputPath = createDayDir(rootOutputPath, startTime, options.overwrite)
452476

453477
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) ) )
456480

457-
for n, monFile in enumerate(filelist):
481+
for n, monFile in enumerate(dam_filelist):
458482
fname = os.path.split(monFile)[-1]
459483

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) )
461485

462486
try:
463-
mon = int(fname[fname.index('Monitor')+len('Monitor'):-4])
487+
mon = int(fname[fname.index(FILE_PREFIX)+len(FILE_PREFIX):-4])
464488
except:
465489
log.error( 'Could not determine monitor number. Check that your files are properly named (e.g.: Monitor001.txt)' )
466490

@@ -469,6 +493,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
469493
else:
470494
log.error ( 'The output folder already exists! Process Aborted.' )
471495

496+
472497
zipFileName = str(startTime).split(' ')[0]+'.zip'
473498
zipFileName = os.path.join(opts.GetOption('zipPath'), zipFileName)
474499
zipFile(outputPath, zipFileName)
@@ -486,3 +511,4 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
486511
startTime += datetime.timedelta(days=1)
487512

488513

514+

0 commit comments

Comments
 (0)