forked from SAUSy-Lab/retro-gtfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.py
46 lines (37 loc) · 1.33 KB
/
store.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
# main file, called to start the process of pulling vehicle locations
import threading
from nb_api import get_new_vehicles, fetch_route, all_routes
import db
from time import sleep
import random
import sys
# takes arguments from the command line
# should we get route information from the API? default False
getRoutes = True if 'getRoutes' in sys.argv else False
# should existing data be truncated? default False;
truncateData = True if 'truncateData' in sys.argv else False
def time_loop():
"""timer function whose purpose is to call itself every N seconds
without stopping. Calls some other function after setting
itself to go off again"""
threading.Timer( 10, time_loop ).start() # int is delay in seconds
# request new vehicles and store them
get_new_vehicles()
if truncateData:
db.empty_tables()
if getRoutes:
# get all the route data, afresh
# threading this makes it faster
#print 'requesting all route data'
routes = all_routes()
for route_id in routes:
t = threading.Thread(target=fetch_route,args=(route_id,))
t.start()
if threading.active_count() >= 20:
sleep(3)
sleep(10)
# call the big function. This takes longer to run the first time,
get_new_vehicles()
# so wait a bit longer than usual to call the timer function 10secs later
threading.Timer( 10, time_loop ).start()
# then it calls itself every N secs