Skip to content

Commit 322bb08

Browse files
committedMay 6, 2012
Refactor station updater class.
1 parent fc298b6 commit 322bb08

File tree

1 file changed

+59
-22
lines changed

1 file changed

+59
-22
lines changed
 

‎app/models/station_updater.rb

+59-22
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,54 @@
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+
#
114
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)
615

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|
949
begin
1050
StationUpdater.update_station(station) do |vehicle|
11-
Rails.logger.info { "--- PUSHED NEW DATASET" }
51+
Rails.logger.debug { "--- PUSHED NEW DATASET" }
1252
Pusher['default'].trigger!('vehicle_update', vehicle.to_hash)
1353
end
1454
rescue Interrupt => i
@@ -19,9 +59,11 @@ def self.run
1959
end
2060
end
2161

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
2567
end
2668

2769
end
@@ -30,34 +72,29 @@ def self.run
3072
def self.update_station(station)
3173
vehicles = Vehicle.at_station(station)
3274

75+
# Only process those vehicles which already left last station and are on
76+
# route to current station
3377
vehicles = vehicles.delete_if do |vehicle|
3478
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))
4080
end
4181

4282
vehicles.compact.each do |vehicle|
4383
Vehicle.vehicles[vehicle.grouping_id] ||= {}
4484
data = Vehicle.vehicles[vehicle.grouping_id]
4585

4686
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
4888
end
4989

50-
# Remove outdated vehicle, but keep its id
51-
if match
90+
if match # Remove outdated vehicle, but keep its id
5291
vehicle.id = match.last.id
5392
Vehicle.vehicles[vehicle.grouping_id].delete(match.first)
5493
end
5594

5695
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?
6198
end
6299
end
63100
end

0 commit comments

Comments
 (0)
Please sign in to comment.