-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to parse PKL from raw TTG file (without ID labels)
- Loading branch information
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
import sys | ||
from tottag import * | ||
|
||
|
||
def process_tottag_data(data, experiment_start_time): | ||
i = 0 | ||
log_data = defaultdict(dict) | ||
while i + 5 < len(data): | ||
timestamp_raw = struct.unpack('<I', data[i+1:i+5])[0] | ||
timestamp = experiment_start_time + (timestamp_raw / 1000) | ||
if timestamp > int(time.time()) or ((timestamp_raw % 500) != 0) or data[i] < 1 or data[i] >= STORAGE_NUM_TYPES: | ||
i += 1 | ||
elif data[i] == STORAGE_TYPE_VOLTAGE: | ||
datum = struct.unpack('<I', data[i+5:i+9])[0] | ||
if datum > 0 and datum < 4500: | ||
log_data[timestamp]['v'] = datum | ||
i += 9 | ||
else: | ||
i += 1 | ||
elif data[i] == STORAGE_TYPE_CHARGING_EVENT: | ||
if data[i+5] > 0 and data[i+5] < 5: | ||
log_data[timestamp]['c'] = BATTERY_CODES[data[i+5]] | ||
i += 6 | ||
else: | ||
i += 1 | ||
elif data[i] == STORAGE_TYPE_MOTION: | ||
if data[i+5] == 0 or data[i+5] == 1: | ||
log_data[timestamp]['m'] = data[i+5] > 0 | ||
i += 6 | ||
else: | ||
i += 1 | ||
elif data[i] == STORAGE_TYPE_RANGES: | ||
log_data[timestamp]['r'] = {} | ||
if data[i+5] < MAX_NUM_DEVICES: | ||
for j in range(data[i+5]): | ||
uid = data[i+6+(j*3)] | ||
datum = struct.unpack('<H', data[i+7+(j*3):i+9+(j*3)])[0] | ||
if datum < MAX_RANGING_DISTANCE_MM: | ||
log_data[timestamp]['r'][uid] = datum | ||
i += 6 + data[i+5]*3 | ||
else: | ||
i += 1 | ||
elif data[i] == STORAGE_TYPE_IMU: | ||
#TODO: Uncomment the following after all in-field TotTags have been updated: | ||
#if data[i+5] <= MAX_IMU_DATA_LENGTH: | ||
# i += 6 + data[i+5] | ||
#else: | ||
i += 1 | ||
elif data[i] == STORAGE_TYPE_BLE_SCAN: | ||
if data[i+5] < MAX_NUM_DEVICES: | ||
log_data[timestamp]['b'] = [] | ||
for j in range(data[i+5]): | ||
uid = data[i+6+j] | ||
log_data[timestamp]['b'].append(uid) | ||
i += 6 + data[i+5] | ||
else: | ||
i += 1 | ||
else: | ||
i += 1 | ||
log_data = [dict({'t': ts}, **datum) for ts, datum in log_data.items()] | ||
with open(os.path.join(get_download_directory(), 'converted.pkl'), 'wb') as file: | ||
pickle.dump(log_data, file, protocol=pickle.HIGHEST_PROTOCOL) | ||
return log_data | ||
|
||
|
||
if __name__ == "__main__": | ||
|
||
if len(sys.argv) != 3: | ||
print('Usage: ./parse.py [LOGFILE] [EXPERIMENT_START_TIME]') | ||
sys.exit(0) | ||
|
||
experiment_start_time = int(sys.argv[2]) | ||
with open(sys.argv[1], mode="rb") as file: | ||
process_tottag_data(file.read(), experiment_start_time) |