]> git.openstreetmap.org Git - rails.git/blobdiff - lib/daemons/gpx_import.rb
Update to iD v2.9.1
[rails.git] / lib / daemons / gpx_import.rb
index 3b7fb02e2fb1bf52453eb907565bb0b478f45cc4..4445d1ec081aaefcd5ff193f95daf3384728d56e 100755 (executable)
@@ -1,7 +1,7 @@
 #!/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"
 
@@ -9,20 +9,51 @@ terminated = false
 
 logger = ActiveRecord::Base.logger
 
-while(true) do
+loop do
   ActiveRecord::Base.logger.info("GPX Import daemon wake @ #{Time.now}.")
 
-  Trace.find(:all, :conditions => ['inserted = ?', false]).each do |trace|
-    Signal.trap("TERM") do 
+  Trace.find(:all, :conditions => { :inserted => false, :visible => true }, :order => "id").each do |trace|
+    Signal.trap("TERM") do
       terminated = true
     end
 
-    trace.import
+    begin
+      gpx = trace.import
+
+      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
+
+    Signal.trap("TERM", "DEFAULT")
+
+    exit if terminated
+  end
+
+  Trace.find(:all, :conditions => { :visible => false }, :order => "id").each do |trace|
+    Signal.trap("TERM") do
+      terminated = true
+    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