1
+ # This class is intended for continuously scraping the kvb website. It fetches
2
+ # the most recent arrival data for stations in the kvb network and stores them
3
+ # in memory.
4
+ #
5
+ # Due to the amount of stations, it might be interesting to run multiple workers
6
+ # each handling a different set of stations. Right now, there are only two
7
+ # options:
8
+ #
9
+ # * Fetch all stations with StationUpdate.new.run
10
+ # * Fetch stations for specific lines with StationUpdate.new(:lines => YOUR_LINES).run
11
+ #
12
+ # Feel free to add more options ;)
13
+ #
1
14
class StationUpdater
2
- def self . run
3
- #stations = Line.bahn_stations
4
- stations = Line . cached_routes [ '1' ] . collect { |key , value | value [ :station ] }
5
- while ( true )
6
15
7
- # Update data for all stations
8
- stations . each do |station |
16
+ FUZZYNESS = 4 . minutes
17
+
18
+ def initialize ( opts )
19
+ if lines = opts . delete ( :lines )
20
+ self . stations = self . stations_for_line ( lines )
21
+ end
22
+ end
23
+
24
+ def stations_for_line ( lines )
25
+ # Fetch stations for lines
26
+ data = lines . collect do |line |
27
+ if line_stations = Line . cached_routes [ line . to_s ]
28
+ line_stations . map { |k , v | v [ :station ] }
29
+ end
30
+ end
31
+
32
+ # Create a flat array with unique and non-nil stations
33
+ data . flatten . uniq . compact
34
+ end
35
+
36
+ def stations = ( data )
37
+ @stations = data
38
+ end
39
+
40
+ def stations
41
+ # By default, we fetch data for all tram stations
42
+ @stations ||= Line . bahn_stations
43
+ end
44
+
45
+ # Start run time loop which continuously updates station data
46
+ def run
47
+ while ( true )
48
+ self . stations . each do |station |
9
49
begin
10
50
StationUpdater . update_station ( station ) do |vehicle |
11
- Rails . logger . info { "--- PUSHED NEW DATASET" }
51
+ Rails . logger . debug { "--- PUSHED NEW DATASET" }
12
52
Pusher [ 'default' ] . trigger! ( 'vehicle_update' , vehicle . to_hash )
13
53
end
14
54
rescue Interrupt => i
@@ -19,9 +59,11 @@ def self.run
19
59
end
20
60
end
21
61
22
- Rails . logger . info { "--- Tracking vehicles on #{ Vehicle . vehicles . size } routes" }
23
- Vehicle . vehicles . each do |key , value |
24
- Rails . logger . info { "#{ key } => #{ value . size } " }
62
+ if Rails . logger . debug?
63
+ Rails . logger . debug { "--- Tracking vehicles on #{ Vehicle . vehicles . size } routes" }
64
+ Vehicle . vehicles . each do |key , value |
65
+ Rails . logger . debug { "#{ key } => #{ value . size } " }
66
+ end
25
67
end
26
68
27
69
end
@@ -30,34 +72,29 @@ def self.run
30
72
def self . update_station ( station )
31
73
vehicles = Vehicle . at_station ( station )
32
74
75
+ # Only process those vehicles which already left last station and are on
76
+ # route to current station
33
77
vehicles = vehicles . delete_if do |vehicle |
34
78
regular_travel_time = Line . cached_routes [ vehicle . line . number ] [ station . kvb_id ] [ :"travel_time_#{ vehicle . direction } " ]
35
- if regular_travel_time
36
- vehicle . travel_time_to_station > ( regular_travel_time + 1 )
37
- else
38
- false
39
- end
79
+ regular_travel_time && ( vehicle . travel_time_to_station > ( regular_travel_time ) )
40
80
end
41
81
42
82
vehicles . compact . each do |vehicle |
43
83
Vehicle . vehicles [ vehicle . grouping_id ] ||= { }
44
84
data = Vehicle . vehicles [ vehicle . grouping_id ]
45
85
46
86
match = data . find do |arrival_time , value |
47
- ( arrival_time - vehicle . arrival_time_at_destination ) . abs < 4 . minutes
87
+ ( arrival_time - vehicle . arrival_time_at_destination ) . abs < FUZZYNESS
48
88
end
49
89
50
- # Remove outdated vehicle, but keep its id
51
- if match
90
+ if match # Remove outdated vehicle, but keep its id
52
91
vehicle . id = match . last . id
53
92
Vehicle . vehicles [ vehicle . grouping_id ] . delete ( match . first )
54
93
end
55
94
56
95
Vehicle . vehicles [ vehicle . grouping_id ] [ vehicle . arrival_time_at_destination ] = vehicle
57
-
58
- if block_given?
59
- yield vehicle
60
- end
96
+
97
+ yield vehicle if block_given?
61
98
end
62
99
end
63
100
end
0 commit comments