forked from chjose/wellbeing-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.py
executable file
·956 lines (770 loc) · 35.6 KB
/
utils.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
#!/usr/bin/python
from collections import defaultdict
import string
import time
import csv
__author__ = 'Christin'
import sqlite3 as lite
class Db_Utils:
'''
Call the constructor with the SQLite3 database name in the double code
Example: utils.Db_Utils('test.db')
Methods defined:
1- get_file_count() : List the number of entries in the database file which includes the duplicate entries as well
2- get_probe_count(probe) : Returns the count of a particular probe which can be any of the five attributes which we
have, Use the below conventions for the function argument:
a) For HardwareInfoProbe: Use "Hardware"
b) For CallLogProbe: Use "Call"
c) For SmsProbe: Use "Sms"
d) For CellTowerProbe: Use "Tower"
e) For LocationProbe: Use "Location"
3- get_distinct_probe_count(probe) : It has the same functionality as the above but returns the distinct entry
count. Has the same calling conventions.
4- print_number_of_probes_per_device(probe) : Prints the number of probes per device.
Has the same calling conventions.
5- print_number_of_distinct_probes_per_device(probe) : Prints the number of distinct probe counts per device.
Has the same calling conventions.
6- print_distinct_devices() : Prints all the distinct devices in the given table.
'''
def __init__(self,db_name):
self.con = lite.connect(db_name)
def get_file_count(self):
cur = self.con.cursor()
data = cur.execute("select count(*) from data;")
for row in data:
count = row[0]
return count
def test(self):
cur = self.con.cursor()
data = cur.execute("select * from data;")
for row in data:
print row
def get_probe_count(self, probe):
cur = self.con.cursor()
make_probe = '%'+probe+'%'
data = cur.execute("select count(*) from data where probe like ?;",(make_probe,))
for row in data:
count = row[0]
return count
def get_distinct_probe_count(self, probe):
cur = self.con.cursor()
make_probe = '%'+probe+'%'
data = cur.execute("select count(DISTINCT timestamp) from data where probe like ?;",(make_probe,))
for row in data:
count = row[0]
return count
def print_number_of_probes_per_device(self, probe):
cur = self.con.cursor()
make_probe = '%'+probe+'%'
distinct_devices = cur.execute("select DISTINCT device from data where probe like ?;",(make_probe,))
cur = self.con.cursor()
print()
print("Total",probe,"data for a device")
print("-------------------------------")
for row in distinct_devices:
print("Device id: ",row[0])
data = cur.execute("select count(*) from data where probe like ? AND device=?;",(make_probe,row[0]))
for x in data:
print("Total ",probe,"=",x[0])
def print_number_of_distinct_probes_per_device(self, probe):
cur = self.con.cursor()
make_probe = '%'+probe+'%'
distinct_devices = cur.execute("select DISTINCT device from data where probe like ?;",(make_probe,))
cur = self.con.cursor()
print()
print("Distinct",probe,"data for a device")
print("----------------------------------")
for row in distinct_devices:
print("Device id: ",row[0])
data = cur.execute("select count(DISTINCT timestamp) from data where probe like ? AND device=?;",(make_probe,row[0]))
for x in data:
print("Total ",probe,"=",x[0])
def print_distinct_devices(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select DISTINCT device from data;")
print()
print("Distinct Devices")
print("------------------")
for row in distinct_devices:
print("Device id: ",row[0])
def print_same_call_ids(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select timestamp,value from data where probe like '%Call%';")
print()
print("Distinct Devices")
print("------------------")
for row in distinct_devices:
#print(type(row[1]))
temp = row[1].find('_id":13555,')
if temp > 0:
print("Device id: ", row[0], row[1])
def print_distinct_sms_types(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select timestamp,value from data where probe like '%Sms%';")
print()
print("Distinct Sms types")
print("------------------")
for row in distinct_devices:
#print(type(row[1]))
temp = row[1].find('"type":5')
#temp1 = row[1].find('"type":2')
if temp > 0:
print("Device id: ", row[0], row[1])
def display_standard_time_for_location_service(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select timestamp,value from data where probe like '%Location%' ORDER BY timestamp;")
print()
print("Time stamp and mtime from value field")
print("--------------------------------------")
for row in distinct_devices:
timestamp = int(row[0])
print(timestamp)
std_timestamp = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(timestamp))
temp = row[1].find('"mTime"')
if temp > 0:
temp += 8
new_str = int(row[1][temp:temp+13])/1000
print(new_str)
std_mtime = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(new_str))
#std_mtime = time.strftime('%Y-%m-%d', time.localtime(new_str))
print("Time stamp in Date time", std_timestamp)
print("M time in Date time", std_mtime)
def distinct_calls_for_day(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select DISTINCT device from data where probe like '%Call%';")
print "Here"
cur = self.con.cursor()
times_list = []
devices = []
for row in distinct_devices:
temp = []
#print("Device id: ",row[0])
devices.append(row[0])
data = cur.execute("""select timestamp from data
where probe like '%Call%' and device = ?
group by timestamp;""",(row[0],))
print "Here"
for x in data:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[0]))
#print(std_mtime)
temp.append(std_mtime)
times_list.append(temp)
#print(times_list)
print("Number of calls for the all the devices on a day")
i=0
for y in times_list:
print("Device ID",devices[i])
i += 1
distinct_times = set(y)
distinct_times = list(distinct_times)
distinct_times.sort()
#print("Distinct dates")
#print(distinct_times)
for x in distinct_times:
temp = y.count(x)
print("Number of calls on",x)
print(temp)
def distinct_calls_for_day_extended(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select DISTINCT device from data where probe like '%Call%';")
cur = self.con.cursor()
times_list = []
devices = []
for row in distinct_devices:
temp = []
#print()
#print("Device id: ",row[0])
devices.append(row[0])
data = cur.execute("""select timestamp, value from data
where probe like '%Call%' and device = ?
group by timestamp;""",(row[0],))
for x in data:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[0]))
number_index = x[1].find('"number"')
last_index = x[1].find(',', number_index)
temp_str = std_mtime + " " + x[1][number_index:last_index-4]
temp.append(temp_str)
#print(temp)
times_list.append(temp)
print("Number of calls for the all the devices on a day")
i=0
for y in times_list:
print()
print("Device ID:",devices[i])
print("===============================================")
i += 1
distinct_times = set(y)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
print("Number of distinct users called on",previous_date,"is",j)
j = 1
previous_date = current_date
print("Number of distinct users called on",previous_date,"is",j)
def distinct_calls_for_day_total_minutes(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select DISTINCT device from data where probe like '%Call%';")
cur = self.con.cursor()
times_list = []
devices = []
for row in distinct_devices:
temp = []
#print()
#print("Device id: ",row[0])
devices.append(row[0])
data = cur.execute("""select timestamp, value from data
where probe like '%Call%' and device = ?
group by timestamp;""",(row[0],))
for x in data:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[0]))
duration_index = x[1].find('"duration"')
duration_index = x[1].find(':', duration_index)
last_index = x[1].find(',', duration_index)
temp_str = std_mtime + " " + x[1][duration_index+1:last_index]
temp.append(temp_str)
#print(temp)
times_list.append(temp)
print("Number of calls for the all the devices on a day")
i=0
for y in times_list:
print()
print("Device ID:",devices[i])
print("===============================================")
i += 1
distinct_times = set(y)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += int(x[1])
else:
print("Total call duration on",previous_date,"is",j,"second(s)")
j = int(x[1])
previous_date = current_date
print("Total call duration on",previous_date,"is",j,"second(s)")
def distinct_locations_for_a_device(self):
cur = self.con.cursor()
distinct_devices = cur.execute("select DISTINCT device from data where probe like '%Location%';")
cur = self.con.cursor()
times_list = []
devices = []
for row in distinct_devices:
temp = []
#print()
#print("Device id: ",row[0])
devices.append(row[0])
data = cur.execute("""select timestamp, value
from data
where probe like '%Location%' and device = ?
group by timestamp;""",(row[0],))
#print()
for x in data:
temp1 = x[1].find('"mTime"')
if temp1 > 0:
temp1 += 8
new_str = int(x[1][temp1:temp1+13])/1000
#print(new_str)
std_mtime = time.strftime('%Y-%m-%d', time.localtime(new_str))
else:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[0]))
long_index = x[1].find('"mLongitude"')
last_index = x[1].find(',', long_index)
cordinate = x[1][long_index+13:last_index]
#print(cordinate)
fvalue_cordiante = float(cordinate)
long_int = float("{0:.4f}".format(fvalue_cordiante))
lat_index = x[1].find('"mLatitude"')
last_index = x[1].find(',', lat_index)
cordinate = x[1][lat_index+12:last_index]
#print(cordinate)
fvalue_cordiante = float(cordinate)
lat_int = float("{0:.4f}".format(fvalue_cordiante))
temp_str = std_mtime + " " + str(long_int) + " " + str(lat_int)
#print(temp_str)
temp.append(temp_str)
#print(temp)
times_list.append(temp)
i = 0
for y in times_list:
print()
print("Device ID:",devices[i])
print("===============================================")
i += 1
distinct_times = set(y)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
#print(previous_date)
#print("List before analysis")
#for x in distinct_times:
# print(x)
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
print("Distinct locations on",previous_date,"is",j)
j = 1
previous_date = current_date
print("Distinct locations on",previous_date,"is",j)
def distinct_calls_for_day_opt(self):
d = defaultdict(list)
dd = defaultdict(list)
d_duration = defaultdict(list)
cur = self.con.cursor()
data = cur.execute("""select device, timestamp, value from data
where probe like '%Call%'
group by timestamp;""")
for x in data:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[1]))
d[x[0]].append(std_mtime)
number_index = x[2].find('"number"')
last_index = x[2].find(',', number_index)
dist_calls_day = std_mtime + " " + x[2][number_index:last_index-4]
dd[x[0]].append(dist_calls_day)
duration_index = x[2].find('"duration"')
duration_index = x[2].find(':', duration_index)
last_index = x[2].find(',', duration_index)
duration_str = std_mtime + " " + x[2][duration_index+1:last_index]
d_duration[x[0]].append(duration_str)
#print d
#for row in data:
print "Number of calls for the all the devices on a day"
for key, value in d.iteritems():
print("Device ID",key)
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
#print("Distinct dates")
#print(distinct_times)
for x in distinct_times:
temp = value.count(x)
print "Number of calls on {}".format(x)
print temp
# Distinct numbers
#print dd
for key, value in dd.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
print "Number of distinct users called on {} is {}".format(previous_date,j)
j = 1
previous_date = current_date
print "Number of distinct users called on {} is {}".format(previous_date,j)
for key, value in d_duration.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += int(x[1])
else:
print "Total call duration on {} is {} second(s)".format(previous_date,j)
j = int(x[1])
previous_date = current_date
print "Total call duration on {} is {} second(s)".format(previous_date,j)
def distinct_locations_for_a_device_opt(self):
cur = self.con.cursor()
times_list = []
devices = []
d = defaultdict(list)
cur = self.con.cursor()
data = cur.execute("""select device, value, timestamp from data
where probe like '%Location%'
group by timestamp;""")
for x in data:
temp1 = x[1].find('"mTime"')
if temp1 > 0:
temp1 += 8
new_str = int(x[1][temp1:temp1+13])/1000
std_mtime = time.strftime('%Y-%m-%d', time.localtime(new_str))
else:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[2]))
# Remove below line
#std_mtime = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(x[2]))
long_index = x[1].find('"mLongitude"')
last_index = x[1].find(',', long_index)
cordinate = x[1][long_index+13:last_index]
fvalue_cordiante = float(cordinate)
long_int = float("{0:.4f}".format(fvalue_cordiante))
lat_index = x[1].find('"mLatitude"')
last_index = x[1].find(',', lat_index)
cordinate = x[1][lat_index+12:last_index]
fvalue_cordiante = float(cordinate)
lat_int = float("{0:.4f}".format(fvalue_cordiante))
location_str = std_mtime + " " + str(long_int) + " " + str(lat_int)
d[x[0]].append(location_str)
for key, value in d.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
#print(previous_date)
print("List before analysis")
for x in distinct_times:
print(x)
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
print "Distinct locations on {} is {}".format(previous_date,j)
j = 1
previous_date = current_date
print "Distinct locations on {} is {}".format(previous_date,j)
def distinct_sms_for_day_opt(self):
d = defaultdict(list)
dd = defaultdict(list)
cur = self.con.cursor()
data = cur.execute("""select device, timestamp, value from data
where probe like '%Sms%'
group by timestamp;""")
for x in data:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[1]))
d[x[0]].append(std_mtime)
number_index = x[2].find('"address"')
last_index = x[2].find(',', number_index)
dist_calls_day = std_mtime + " " + x[2][number_index:last_index-4]
dd[x[0]].append(dist_calls_day)
#print d
#for row in data:
print "Number of SMS for all devices on a day"
for key, value in d.iteritems():
print "Device ID: {}".format(key)
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
#print("Distinct dates")
#print(distinct_times)
for x in distinct_times:
temp = value.count(x)
print "Number of SMS on {}".format(x)
print temp
# Distinct numbers
#print dd
for key, value in dd.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
print "Number of distinct users SMS on {} is {}".format(previous_date,j)
j = 1
previous_date = current_date
print "Number of distinct users SMS on {} is {}".format(previous_date,j)
###########################################################################################################
def write_stats_to_csv(self, files_csv, device_imei):
d = defaultdict(list)
dd = defaultdict(list)
d_duration = defaultdict(list)
cur = self.con.cursor()
data = cur.execute("""select device, timestamp, value from data
where probe like '%Call%'
group by timestamp;""")
for x in data:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[1]))
d[x[0]].append(std_mtime)
number_index = x[2].find('"number"')
last_index = x[2].find(',', number_index)
dist_calls_day = std_mtime + " " + x[2][number_index:last_index-4]
dd[x[0]].append(dist_calls_day)
duration_index = x[2].find('"duration"')
duration_index = x[2].find(':', duration_index)
last_index = x[2].find(',', duration_index)
duration_str = std_mtime + " " + x[2][duration_index+1:last_index]
d_duration[x[0]].append(duration_str)
#print d
#for row in data:
print "Number of calls for the all the devices on a day"
for key, value in d.iteritems():
print("Device ID",key)
files_csv[key] = {}
#files_csv[key].setdefault(key,[]).append(value)
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
#print("Distinct dates")
#print(distinct_times)
for x in distinct_times:
temp = value.count(x)
files_csv[key][x] = {}
files_csv[key][x]["Num of calls"] = temp
files_csv[key][x]["Number of SMS"] = 0
files_csv[key][x]["Distinct users SMS"] = 0
files_csv[key][x]["Distinct Locations"] = 0
print "Number of calls on {}".format(x)
print temp
# Distinct numbers
#print "NEW CSV FILE ----->"
#print files_csv
for key, value in dd.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
print "Number of distinct users called on {} is {}".format(previous_date,j)
files_csv[key][previous_date]["Distinct Calls"] = j
j = 1
previous_date = current_date
print "Number of distinct users called on {} is {}".format(previous_date,j)
files_csv[key][previous_date]["Distinct Calls"] = j
for key, value in d_duration.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += int(x[1])
else:
print "Total call duration on {} is {} second(s)".format(previous_date,j)
files_csv[key][previous_date]["Total Duration"] = j
j = int(x[1])
previous_date = current_date
print "Total call duration on {} is {} second(s)".format(previous_date,j)
files_csv[key][previous_date]["Total Duration"] = j
#print files_csv
d = defaultdict(list)
dd = defaultdict(list)
cur = self.con.cursor()
data = cur.execute("""select device, timestamp, value from data
where probe like '%Sms%'
group by timestamp;""")
for x in data:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[1]))
d[x[0]].append(std_mtime)
number_index = x[2].find('"address"')
last_index = x[2].find(',', number_index)
dist_calls_day = std_mtime + " " + x[2][number_index:last_index-4]
dd[x[0]].append(dist_calls_day)
#print d
#for row in data:
print "Number of SMS for all devices on a day"
for key, value in d.iteritems():
print "Device ID: {}".format(key)
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
#print("Distinct dates")
#print(distinct_times)
for x in distinct_times:
temp = value.count(x)
try:
files_csv[key]
except KeyError:
files_csv[key] = {}
try:
files_csv[key][x]["Number of SMS"] = temp
except KeyError:
files_csv[key][x] = {}
files_csv[key][x]["Number of SMS"] = temp
files_csv[key][x]["Total Duration"] = 0
files_csv[key][x]["Distinct Calls"] = 0
files_csv[key][x]["Num of calls"] = 0
files_csv[key][x]["Distinct Locations"] = 0
print "Number of SMS on {}".format(x)
print temp
# Distinct numbers
#print dd
for key, value in dd.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
files_csv[key][previous_date]["Distinct users SMS"] = j
print "Number of distinct users SMS on {} is {}".format(previous_date,j)
j = 1
previous_date = current_date
files_csv[key][previous_date]["Distinct users SMS"] = j
print "Number of distinct users SMS on {} is {}".format(previous_date,j)
cur = self.con.cursor()
times_list = []
devices = []
d = defaultdict(list)
cur = self.con.cursor()
data = cur.execute("""select device, value, timestamp from data
where probe like '%Location%'
group by timestamp;""")
for x in data:
temp1 = x[1].find('"mTime"')
if temp1 > 0:
temp1 += 8
new_str = int(x[1][temp1:temp1+13])/1000
std_mtime = time.strftime('%Y-%m-%d', time.localtime(new_str))
else:
std_mtime = time.strftime('%Y-%m-%d', time.localtime(x[2]))
# Remove below line
#std_mtime = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(x[2]))
long_index = x[1].find('"mLongitude"')
last_index = x[1].find(',', long_index)
cordinate = x[1][long_index+13:last_index]
fvalue_cordiante = float(cordinate)
long_int = float("{0:.4f}".format(fvalue_cordiante))
lat_index = x[1].find('"mLatitude"')
last_index = x[1].find(',', lat_index)
cordinate = x[1][lat_index+12:last_index]
fvalue_cordiante = float(cordinate)
lat_int = float("{0:.4f}".format(fvalue_cordiante))
location_str = std_mtime + " " + str(long_int) + " " + str(lat_int)
d[x[0]].append(location_str)
for key, value in d.iteritems():
print "\n"
print "Device ID: {}".format(key)
print "==============================================="
distinct_times = set(value)
distinct_times = list(distinct_times)
distinct_times.sort()
for x in range(len(distinct_times)):
distinct_times[x] = distinct_times[x].split(" ")
previous_date = distinct_times[0][0]
j = 0
#print(previous_date)
print("List before analysis")
for x in distinct_times:
print(x)
for x in distinct_times:
current_date = x[0]
if current_date == previous_date:
j += 1
else:
try:
files_csv[key][previous_date]["Distinct Locations"] = j
except KeyError:
try:
files_csv[key]
except KeyError:
files_csv[key] = {}
files_csv[key][previous_date] = {}
files_csv[key][previous_date]["Distinct Locations"] = j
files_csv[key][previous_date]["Number of SMS"] = 0
files_csv[key][previous_date]["Total Duration"] = 0
files_csv[key][previous_date]["Distinct Calls"] = 0
files_csv[key][previous_date]["Num of calls"] = 0
files_csv[key][previous_date]["Distinct users SMS"] = 0
print "Distinct locations on {} is {}".format(previous_date,j)
j = 1
previous_date = current_date
try:
files_csv[key][previous_date]["Distinct Locations"] = j
except KeyError:
try:
files_csv[key]
except KeyError:
files_csv[key] = {}
files_csv[key][previous_date] = {}
files_csv[key][previous_date]["Distinct Locations"] = j
files_csv[key][previous_date]["Number of SMS"] = 0
files_csv[key][previous_date]["Total Duration"] = 0
files_csv[key][previous_date]["Distinct Calls"] = 0
files_csv[key][previous_date]["Num of calls"] = 0
files_csv[key][previous_date]["Distinct users SMS"] = 0
print "Distinct locations on {} is {}".format(previous_date,j)
cur = self.con.cursor()
data_imei = cur.execute("""select device, value from data
where probe like '%Hardware%'
group by device;""")
for x in data_imei:
duration_index = x[1].find('"deviceId"')
duration_index = x[1].find(':', duration_index)
last_index = x[1].find(',', duration_index)
imei_num = x[1][duration_index+2:last_index-1]
device_imei[x[0]]=imei_num
def create_csv(self, device_imei, files_csv):
print device_imei
table = []
for device, date_value in files_csv.iteritems():
for date, column_value in files_csv[device].iteritems():
imei = device_imei[device]
print([device,date,files_csv[device][date]["Total Duration"],files_csv[device][date]["Distinct Calls"],files_csv[device][date]["Num of calls"],files_csv[device][date]["Number of SMS"],files_csv[device][date]["Distinct users SMS"],files_csv[key][previous_date]["Distinct Locations"]])
row = [imei,device,date,files_csv[device][date]["Total Duration"],files_csv[device][date]["Distinct Calls"],files_csv[device][date]["Num of calls"],files_csv[device][date]["Number of SMS"],files_csv[device][date]["Distinct users SMS"],files_csv[key][previous_date]["Distinct Locations"]]
table.append(row)
#print row
#print "\n"
table.sort(key=lambda x:(x[0], x[1]))
resultFile = open("output.csv",'wb')
wr = csv.writer(resultFile, dialect='excel')
wr.writerow(['IMEI','Device ID','Day','Total Call duration','Distinct users called','Number of calls','Number of SMS','Distinct users SMS','Distinct Locations'])
for x in table:
wr.writerow(x)
resultFile.close()