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