]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/swf_controller.rb
Use an enumerator for gpx.points, and process the the points in batches
[rails.git] / app / controllers / api / swf_controller.rb
1 module Api
2   class SwfController < ApplicationController
3     skip_before_action :verify_authenticity_token
4     before_action :check_api_readable
5     authorize_resource :class => false
6
7     # to log:
8     # RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
9     # $log.puts Time.new.to_s+','+Time.new.usec.to_s+": started GPS script"
10     # http://localhost:3000/api/0.4/swf/trackpoints?xmin=-2.32402605810577&xmax=-2.18386309423859&ymin=52.1546608755772&ymax=52.2272777906895&baselong=-2.25325793066437&basey=61.3948537948532&masterscale=5825.4222222222
11
12     # ====================================================================
13     # Public methods
14
15     # ---- trackpoints  compile SWF of trackpoints
16
17     def trackpoints
18       # -  Initialise
19
20       baselong = params["baselong"].to_f
21       basey = params["basey"].to_f
22       masterscale = params["masterscale"].to_f
23
24       bbox = BoundingBox.new(params["xmin"], params["ymin"],
25                              params["xmax"], params["ymax"])
26       start = params["start"].to_i
27
28       # -  Begin movie
29
30       bounds_left = 0
31       bounds_right = 320 * 20
32       bounds_bottom = 0
33       bounds_top = 240 * 20
34
35       m = ""
36       m += swf_record(9, 255.chr + 155.chr + 155.chr) # Background
37       absx = 0
38       absy = 0
39       xl = yb = 9999999
40       xr = yt = -9999999
41
42       # -  Send SQL for GPS tracks
43
44       b = ""
45       lasttime = 0
46       lasttrack = lastfile = "-1"
47
48       if params["token"]
49         user = User.authenticate(:token => params[:token])
50         sql = "SELECT gps_points.latitude*0.0000001 AS lat,gps_points.longitude*0.0000001 AS lon,gpx_files.id AS fileid," + "      EXTRACT(EPOCH FROM gps_points.timestamp) AS ts, gps_points.trackid AS trackid " + " FROM gpx_files,gps_points " + "WHERE gpx_files.id=gpx_id " + "  AND gpx_files.user_id=#{user.id} " + "  AND " + OSM.sql_for_area(bbox, "gps_points.") + "  AND (gps_points.timestamp IS NOT NULL) " + "ORDER BY fileid DESC,ts " + "LIMIT 10000 OFFSET #{start}"
51       else
52         sql = "SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,gpx_id AS fileid," + "      EXTRACT(EPOCH FROM timestamp) AS ts, gps_points.trackid AS trackid " + " FROM gps_points " + "WHERE " + OSM.sql_for_area(bbox, "gps_points.") + "  AND (gps_points.timestamp IS NOT NULL) " + "ORDER BY fileid DESC,ts " + "LIMIT 10000 OFFSET #{start}"
53       end
54       gpslist = ActiveRecord::Base.connection.select_all sql
55
56       # - Draw GPS trace lines
57
58       r = start_shape
59       gpslist.each do |row|
60         xs = (long2coord(row["lon"].to_f, baselong, masterscale) * 20).floor
61         ys = (lat2coord(row["lat"].to_f, basey, masterscale) * 20).floor
62         xl = [xs, xl].min
63         xr = [xs, xr].max
64         yb = [ys, yb].min
65         yt = [ys, yt].max
66         if row["ts"].to_i - lasttime > 180 || row["fileid"] != lastfile || row["trackid"] != lasttrack # or row['ts'].to_i==lasttime
67           b += start_and_move(xs, ys, "01")
68           absx = xs.floor
69           absy = ys.floor
70         end
71         b += draw_to(absx, absy, xs, ys)
72         absx = xs.floor
73         absy = ys.floor
74         lasttime = row["ts"].to_i
75         lastfile = row["fileid"]
76         lasttrack = row["trackid"]
77         r += [b.slice!(0...80)].pack("B*") while b.length > 80
78       end
79
80       #   (Unwayed segments removed)
81
82       # - Write shape
83
84       b += end_shape
85       r += [b].pack("B*")
86       m += swf_record(2, pack_u16(1) + pack_rect(xl, xr, yb, yt) + r)
87       m += swf_record(4, pack_u16(1) + pack_u16(1))
88
89       # -  Create Flash header and write to browser
90
91       m += swf_record(1, "")                                                                    # Show frame
92       m += swf_record(0, "")                                                                    # End
93
94       m = pack_rect(bounds_left, bounds_right, bounds_bottom, bounds_top) + 0.chr + 12.chr + pack_u16(1) + m
95       m = "FWS" + 6.chr + pack_u32(m.length + 8) + m
96
97       render :body => m, :content_type => "application/x-shockwave-flash"
98     end
99
100     private
101
102     # =======================================================================
103     # SWF functions
104
105     # -----------------------------------------------------------------------
106     # Line-drawing
107
108     def start_shape
109       s = 0.chr                                    # No fill styles
110       s += 2.chr                                   # Two line styles
111       s += pack_u16(0) + 0.chr + 255.chr + 255.chr # Width 5, RGB #00FFFF
112       s += pack_u16(0) + 255.chr + 0.chr + 255.chr # Width 5, RGB #FF00FF
113       s += 34.chr # 2 fill, 2 line index bits
114       s
115     end
116
117     def end_shape
118       "000000"
119     end
120
121     def start_and_move(x, y, col)
122       d = "001001"      # Line style change, moveTo
123       l = [length_sb(x), length_sb(y)].max
124       d += format("%05b%0*b%0*b", l, l, x, l, y)
125       d += col # Select line style
126       d
127     end
128
129     def draw_to(absx, absy, x, y)
130       dx = x - absx
131       dy = y - absy
132
133       # Split the line up if there's anything>16383, because
134       # that would overflow the 4 bits allowed for length
135       mstep = [dx.abs / 16383, dy.abs / 16383, 1].max.ceil
136       xstep = dx / mstep
137       ystep = dy / mstep
138       d = ""
139       1.upto(mstep).each do
140         d += draw_section(x, y, x + xstep, y + ystep)
141         x += xstep
142         y += ystep
143       end
144       d
145     end
146
147     def draw_section(x1, y1, x2, y2)
148       d = "11"                                                                                  # TypeFlag, EdgeFlag
149       dx = x2 - x1
150       dy = y2 - y1
151       l = [length_sb(dx), length_sb(dy)].max
152       d += format("%04b", l - 2)
153       d += "1"                                                                                  # GeneralLine
154       d += format("%0*b%0*b", l, dx, l, dy)
155       d
156     end
157
158     # -----------------------------------------------------------------------
159     # Specific data types
160
161     # SWF data block type
162
163     def swf_record(id, r)
164       if r.length > 62
165         # Long header: tag id, 0x3F, length
166         pack_u16((id << 6) + 0x3F) + pack_u32(r.length) + r
167       else
168         # Short header: tag id, length
169         pack_u16((id << 6) + r.length) + r
170       end
171     end
172
173     # SWF RECT type
174
175     def pack_rect(a, b, c, d)
176       l = [length_sb(a),
177            length_sb(b),
178            length_sb(c),
179            length_sb(d)].max
180       # create binary string (00111001 etc.) - 5-byte length, then bbox
181       n = format("%05b%0*b%0*b%0*b%0*b", l, l, a, l, b, l, c, l, d)
182       # pack into byte string
183       [n].pack("B*")
184     end
185
186     # -----------------------------------------------------------------------
187     # Generic pack functions
188
189     def pack_u16(n)
190       [n.floor].pack("v")
191     end
192
193     def pack_u32(n)
194       [n.floor].pack("V")
195     end
196
197     # Find number of bits required to store arbitrary-length binary
198
199     def length_sb(n)
200       Math.frexp(n + (n.zero? ? 1 : 0))[1] + 1
201     end
202
203     # ====================================================================
204     # Co-ordinate conversion
205     # (this is duplicated from amf_controller, should probably share)
206
207     def lat2coord(a, basey, masterscale)
208       -(lat2y(a) - basey) * masterscale
209     end
210
211     def long2coord(a, baselong, masterscale)
212       (a - baselong) * masterscale
213     end
214
215     def lat2y(a)
216       180 / Math::PI * Math.log(Math.tan(Math::PI / 4 + a * (Math::PI / 180) / 2))
217     end
218   end
219 end