X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/93dab8a1272f8c807da841c0a55b37f74b65b8c3..a1b179fa384d689e6cb78c2b8d863621e7bff152:/lib/daemons/gpx_import.rb diff --git a/lib/daemons/gpx_import.rb b/lib/daemons/gpx_import.rb index 70764dd38..4445d1ec0 100755 --- a/lib/daemons/gpx_import.rb +++ b/lib/daemons/gpx_import.rb @@ -1,71 +1,59 @@ #!/usr/bin/env ruby -#You might want to change this -ENV["RAILS_ENV"] ||= "development" +# You might want to change this +# ENV["RAILS_ENV"] ||= "development" require File.dirname(__FILE__) + "/../../config/environment" -$running = true; -Signal.trap("TERM") do - $running = false -end +terminated = false logger = ActiveRecord::Base.logger -while($running) do - +loop do ActiveRecord::Base.logger.info("GPX Import daemon wake @ #{Time.now}.") - traces = Trace.find(:all, :conditions => ['inserted = ?', false]) - - if traces and traces.length > 0 - traces.each do |trace| - begin + Trace.find(:all, :conditions => { :inserted => false, :visible => true }, :order => "id").each do |trace| + Signal.trap("TERM") do + terminated = true + end - logger.info("GPX Import importing #{trace.name} from #{trace.user.email}") + begin + gpx = trace.import - gzipped = `file -b /tmp/#{trace.id}.gpx`.chomp =~/^gzip/ + if gpx.actual_points > 0 + Notifier.gpx_success(trace, gpx.actual_points).deliver + else + Notifier.gpx_failure(trace, "0 points parsed ok. Do they all have lat,lng,alt,timestamp?").deliver + trace.destroy + end + rescue StandardError => ex + logger.info ex.to_s + ex.backtrace.each { |l| logger.info l } + Notifier.gpx_failure(trace, ex.to_s + "\n" + ex.backtrace.join("\n")).deliver + trace.destroy + end - if gzipped - logger.info("gzipped") - else - logger.info("not gzipped") - end - gpx = OSM::GPXImporter.new("/tmp/#{trace.id}.gpx") + Signal.trap("TERM", "DEFAULT") - gpx.points do |point| - tp = Tracepoint.new - tp.latitude = point['latitude'] - tp.longitude = point['longitude'] - tp.altitude = point['altitude'] - tp.user_id = trace.user.id - tp.gpx_id = trace.id - tp.trackid = point['segment'] - tp.save! - end + exit if terminated + end - if gpx.actual_points > 0 - max_lat = Tracepoint.maximum('latitude', :conditions => ['gpx_id = ?', trace.id]) - min_lat = Tracepoint.minimum('latitude', :conditions => ['gpx_id = ?', trace.id]) - max_lon = Tracepoint.maximum('longitude', :conditions => ['gpx_id = ?', trace.id]) - min_lon = Tracepoint.minimum('longitude', :conditions => ['gpx_id = ?', trace.id]) - #logger.info("bbox: #{min_lat} #{max_lat} #{min_lon} #{max_lon}") - trace.large_picture = gpx.get_picture(min_lat, min_lon, max_lat, max_lon, gpx.actual_points) - trace.icon_picture = gpx.get_icon(min_lat, min_lon, max_lat, max_lon) - trace.size = gpx.actual_points - trace.inserted = true - trace.save - Notifier::deliver_gpx_success(trace, gpx.possible_points) - else - #trace.destroy - Notifier::deliver_gpx_failure(trace, '0 points parsed ok. Do they all have lat,lng,alt,timestamp?') - end + Trace.find(:all, :conditions => { :visible => false }, :order => "id").each do |trace| + Signal.trap("TERM") do + terminated = true + end - rescue Exception => ex - #trace.destroy - Notifier::deliver_gpx_failure(trace, ex.to_s + ex.backtrace.join("\n") ) - end + begin + trace.destroy + rescue StandardError => ex + logger.info ex.to_s + ex.backtrace.each { |l| logger.info l } end + + Signal.trap("TERM", "DEFAULT") + + exit if terminated end - sleep 15.minutes + + sleep 5.minutes.value end