-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFREQ.py
111 lines (87 loc) · 3.1 KB
/
FREQ.py
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
from sddsdata import sddsdata
import numpy as np
import scipy.io as sio
import os
import shutil
import gzip
import time
import glob
import pickle
from zip_mat import save_zip
import timestamp_helpers as th
class FREQ(object):
def __init__(self, complete_path):
temp_filename = complete_path.split('.gz')[0] + 'uzipd'
with open(temp_filename, "wb") as tmp:
shutil.copyfileobj(gzip.open(complete_path), tmp)
dict_freq = sio.loadmat(temp_filename)
os.remove(temp_filename)
self.frequency = dict_freq['frequency']
def sdds_to_dict(in_complete_path):
us_string = in_complete_path.split('.')[-2]
try:
temp = sddsdata(in_complete_path, endian='little', full=True)
except IndexError:
print 'Failed to open data file. (save_bct_mat)'
return
data = temp.data[0]
frequency = np.float_(data['frequency'])
dict_meas = {
'frequency':frequency
}
return dict_meas
def sdds_to_file(in_complete_path, SPSuser, t_stamp_unix, mat_filename_prefix='SPSmeas_', outp_folder='freq/'):
dict_meas = sdds_to_dict(in_complete_path)
us_string = SPSuser
out_filename = mat_filename_prefix + us_string +'_'+ ('_%d'%t_stamp_unix)
out_complete_path = outp_folder + us_string +'/'+ out_filename
if not os.path.isdir(outp_folder + us_string):
print 'I create folder: '+ outp_folder + us_string
os.makedirs(outp_folder + us_string)
sio.savemat(out_complete_path, dict_meas, oned_as='row')
save_zip(out_complete_path)
def make_mat_files(start_time, end_time='Now', data_folder='/user/slops/data/SPS_DATA/OP_DATA/RF-COUNTER/',
device_name=None, SPSuser=None, filename_converted='freq_converted.txt'):
if type(start_time) is str:
start_tstamp_unix = th.localtime2unixstamp(start_time)
else:
start_tstamp_unix = start_time
if end_time == 'Now':
end_tstamp_unix = time.mktime(time.localtime())
elif type(end_time) is str:
end_tstamp_unix = th.localtime2unixstamp(end_time)
else:
end_tstamp_unix = end_time
try:
with open(filename_converted, 'r') as fid:
list_converted = fid.read().split('\n')
except IOError:
list_converted = []
list_date_strings = th.date_strings_interval(start_tstamp_unix, end_tstamp_unix)
sdds_folder_list = []
for date_string in list_date_strings:
sdds_folder_list.extend(glob.glob(data_folder + date_string + '/DiagnosticCounter@MeasFrequency/'))
for sdds_folder in sdds_folder_list:
print '\nConverting data in folder: %s\n'%sdds_folder
file_list = os.listdir(sdds_folder)
for filename in file_list:
tstamp_filename = int(float(filename.split('@')[-2]) / 1e9)
if not(tstamp_filename > start_tstamp_unix and tstamp_filename < end_tstamp_unix):
continue
if SPSuser != None:
user_filename = filename.split('.')[-3]
if user_filename != SPSuser:
continue
if filename in list_converted:
continue
try:
complete_path = sdds_folder + filename
print complete_path
sdds_to_file(complete_path, SPSuser, tstamp_filename)
with open(filename_converted, 'a+') as fid:
fid.write(filename+'\n')
except Exception as err:
print 'Skipped:'
print complete_path
print 'Got exception:'
print err