]> git.openstreetmap.org Git - rails.git/blob - app/controllers/amf_controller.rb
Enhance logging.
[rails.git] / app / controllers / amf_controller.rb
1 class AmfController < ApplicationController
2   require 'stringio'
3
4   # to log:
5   # RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
6
7   # ====================================================================
8   # Main AMF handler
9
10   # ---- talk   process AMF request
11
12   def talk
13     req=StringIO.new(request.raw_post)  # Get POST data as request
14     req.read(2)                                                 # Skip version indicator and client ID
15     results={}                                                  # Results of each body
16
17     # -------------
18     # Parse request
19
20     headers=getint(req)                                 # Read number of headers
21
22     headers.times do                                # Read each header
23       name=getstring(req)                               #  |
24       req.getc                                  #  | skip boolean
25       value=getvalue(req)                               #  |
26       header["name"]=value                              #  |
27     end
28
29     bodies=getint(req)                                  # Read number of bodies
30     bodies.times do                                     # Read each body
31       message=getstring(req)                    #  | get message name
32       index=getstring(req)                              #  | get index in response sequence
33       bytes=getlong(req)                                #  | get total size in bytes
34       args=getvalue(req)                                #  | get response (probably an array)
35
36       case message
37       when 'getpresets';        results[index]=putdata(index,getpresets)
38       when 'whichways';         results[index]=putdata(index,whichways(args))
39       when 'getway';            results[index]=putdata(index,getway(args))
40       when 'putway';            results[index]=putdata(index,putway(args))
41       when 'deleteway';         results[index]=putdata(index,deleteway(args))
42       end
43     end
44
45     # ------------------
46     # Write out response
47
48     response.headers["Content-Type"]="application/x-amf"
49     a,b=results.length.divmod(256)
50     ans=0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
51     results.each do |k,v|
52       ans+=v
53     end
54     render :text => ans
55
56   end
57
58   private
59
60   # ====================================================================
61   # Remote calls
62
63   # -----       getpresets
64   #             return presets,presetmenus and presetnames arrays
65
66   def getpresets
67     presets={}
68     presetmenus={}; presetmenus['point']=[]; presetmenus['way']=[]
69     presetnames={}; presetnames['point']={}; presetnames['way']={}
70     presettype=''
71     presetcategory=''
72
73     ActiveRecord::Base.logger.info("  Message: getpresets")
74
75     #           File.open("config/potlatch/presets.txt") do |file|
76
77     # Temporary patch to get around filepath problem
78     # To remove this patch and make the code nice again:
79     # 1. uncomment above line
80     # 2. fix the path in the above line
81     # 3. delete this here document, and the following line (StringIO....)
82
83     txt=<<-EOF
84 way/road
85 motorway: highway=motorway,ref=(type road number)
86 trunk road: highway=trunk,ref=(type road number),name=(type road name)
87 primary road: highway=primary,ref=(type road number),name=(type road name)
88 secondary road: highway=secondary,ref=(type road number),name=(type road name)
89 residential road: highway=residential,name=(type road name)
90 unclassified road: highway=unclassified,name=(type road name)
91
92 way/footway
93 footpath: highway=footway,foot=yes
94 bridleway: highway=bridleway,foot=yes,horse=yes,bicycle=yes
95 byway: highway=byway,foot=yes,horse=yes,bicycle=yes,motorcar=yes
96 permissive path: highway=footway,foot=permissive
97
98 way/cycleway
99 cycle lane: highway=cycleway,cycleway=lane,ncn_ref=
100 cycle track: highway=cycleway,cycleway=track,ncn_ref=
101 cycle lane (NCN): highway=cycleway,cycleway=lane,name=(type name here),ncn_ref=(type route number)
102 cycle track (NCN): highway=cycleway,cycleway=track,name=(type name here),ncn_ref=(type route number)
103
104 way/waterway
105 canal: waterway=canal,name=(type name here)
106 navigable river: waterway=river,boat=yes,name=(type name here)
107 navigable drain: waterway=drain,boat=yes,name=(type name here)
108 derelict canal: waterway=derelict_canal,name=(type name here)
109 unnavigable river: waterway=river,boat=no,name=(type name here)
110 unnavigable drain: waterway=drain,boat=no,name=(type name here)
111
112 way/railway
113 railway: railway=rail
114 tramway: railway=tram
115 light railway: railway=light_rail
116 preserved railway: railway=preserved
117 disused railway tracks: railway=disused
118 course of old railway: railway=abandoned
119
120 point/road
121 mini roundabout: highway=mini_roundabout
122 traffic lights: highway=traffic_signals
123
124 point/footway
125 bridge: highway=bridge
126 gate: highway=gate
127 stile: highway=stile
128 cattle grid: highway=cattle_grid
129
130 point/cycleway
131 gate: highway=gate
132
133 point/waterway
134 lock gate: waterway=lock_gate
135 weir: waterway=weir
136 aqueduct: waterway=aqueduct
137 winding hole: waterway=turning_point
138 mooring: waterway=mooring
139
140 point/railway
141 station: railway=station
142 viaduct: railway=viaduct
143 level crossing: railway=crossing
144 EOF
145
146     StringIO.open(txt) do |file|
147       file.each_line {|line|
148         t=line.chomp
149         if (t=~/(\w+)\/(\w+)/) then
150           presettype=$1
151           presetcategory=$2
152           presetmenus[presettype].push(presetcategory)
153           presetnames[presettype][presetcategory]=["(no preset)"]
154         elsif (t=~/^(.+):\s?(.+)$/) then
155           pre=$1; kv=$2
156           presetnames[presettype][presetcategory].push(pre)
157           presets[pre]={}
158           kv.split(',').each {|a|
159             if (a=~/^(.+)=(.*)$/) then presets[pre][$1]=$2 end
160           }
161         end
162       }
163     end
164     return [presets,presetmenus,presetnames]
165   end
166
167   # -----       whichways(left,bottom,right,top)
168   #             return array of ways in current bounding box
169   #             at present, instead of using correct (=more complex) SQL to find
170   #             corner-crossing ways, it simply enlarges the bounding box by +/- 0.01
171
172   def whichways(args)
173     xmin = args[0].to_f-0.01
174     ymin = args[1].to_f-0.01
175     xmax = args[2].to_f+0.01
176     ymax = args[3].to_f+0.01
177
178     ActiveRecord::Base.logger.info("  Message: whichways, bbox=#{xmin},#{ymin},#{xmax},#{ymax}")
179
180     waylist=WaySegment.find_by_sql("SELECT DISTINCT current_way_segments.id AS wayid"+
181        "  FROM current_way_segments,current_segments,current_nodes,current_ways "+
182        " WHERE segment_id=current_segments.id "+
183        "   AND current_segments.visible=1 "+
184        "   AND node_a=current_nodes.id "+
185            "   AND current_ways.id=current_way_segments.id "+
186            "   AND current_ways.visible=1 "+
187        "   AND (latitude  BETWEEN "+ymin.to_s+" AND "+ymax.to_s+") "+
188        "   AND (longitude BETWEEN "+xmin.to_s+" AND "+xmax.to_s+")")
189
190        ways = waylist.collect {|a| a.wayid.to_i } # get an array of way id's
191
192        pointlist =ActiveRecord::Base.connection.select_all("SELECT current_nodes.id,current_nodes.tags "+
193        "  FROM current_nodes "+
194        "  LEFT OUTER JOIN current_segments cs1 ON cs1.node_a=current_nodes.id "+
195        "  LEFT OUTER JOIN current_segments cs2 ON cs2.node_b=current_nodes.id "+
196        " WHERE (latitude  BETWEEN "+ymin.to_s+" AND "+ymax.to_s+") "+
197        "   AND (longitude BETWEEN "+xmin.to_s+" AND "+xmax.to_s+") "+
198        "   AND cs1.id IS NULL AND cs2.id IS NULL "+
199        "   AND current_nodes.visible=1")
200
201             points = pointlist.collect {|a| [a['id'],tag2array(a['tags'])]      } # get a list of node ids and their tags
202
203     return [ways,points]
204   end
205
206   # -----       getway (objectname, way, baselong, basey, masterscale)
207   #                     returns objectname, array of co-ordinates, attributes,
208   #                                     xmin,xmax,ymin,ymax
209
210   def getway(args)
211     objname,wayid,baselong,basey,masterscale=args
212     wayid = wayid.to_i
213     points = []
214     lastid = -1
215     xmin = ymin = 999999
216     xmax = ymax = -999999
217
218     ActiveRecord::Base.logger.info("  Message: getway, id=#{wayid}")
219
220     readwayquery(wayid).each {|row|
221       xs1=long2coord(row['long1'].to_f,baselong,masterscale); ys1=lat2coord(row['lat1'].to_f,basey,masterscale)
222       xs2=long2coord(row['long2'].to_f,baselong,masterscale); ys2=lat2coord(row['lat2'].to_f,basey,masterscale)
223       points << [xs1,ys1,row['id1'].to_i,0,tag2array(row['tags1']),0] if (row['id1'].to_i!=lastid)
224       lastid = row['id2'].to_i
225       points << [xs2,ys2,row['id2'].to_i,1,tag2array(row['tags2']),row['segment_id'].to_i]
226       xmin = [xmin,row['long1'].to_f,row['long2'].to_f].min
227       xmax = [xmax,row['long1'].to_f,row['long2'].to_f].max
228       ymin = [ymin,row['lat1'].to_f,row['lat2'].to_f].min
229       ymax = [ymax,row['lat1'].to_f,row['lat2'].to_f].max
230     }
231
232     attributes={}
233     attrlist=ActiveRecord::Base.connection.select_all "SELECT k,v FROM current_way_tags WHERE id=#{wayid}"
234     attrlist.each {|a| attributes[a['k']]=a['v'] }
235
236     [objname,points,attributes,xmin,xmax,ymin,ymax]
237   end
238
239   # -----       putway (user token, way, array of co-ordinates, array of attributes,
240   #                                     baselong, basey, masterscale)
241   #                     returns current way ID, new way ID, hash of renumbered nodes,
242   #                                     xmin,xmax,ymin,ymax
243
244   def putway(args)
245     usertoken,originalway,points,attributes,baselong,basey,masterscale=args
246     uid=getuserid(usertoken)
247     return if !uid
248     db_uqs='uniq'+uid.to_s+originalway.to_i.abs.to_s+Time.new.to_i.to_s # temp uniquesegments table name, typically 51 chars
249     db_uqn='unin'+uid.to_s+originalway.to_i.abs.to_s+Time.new.to_i.to_s # temp uniquenodes table name, typically 51 chars
250     db_now='@now'+uid.to_s+originalway.to_i.abs.to_s+Time.new.to_i.to_s # 'now' variable name, typically 51 chars
251     ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
252     originalway=originalway.to_i
253
254     ActiveRecord::Base.logger.info("  Message: putway, id=#{way}")
255
256     # -- 3.     read original way into memory
257
258     xc={}; yc={}; tagc={}; seg={}
259     if originalway>0
260       way=originalway
261       readwayquery(way).each { |row|
262         id1=row['id1'].to_i; xc[id1]=row['long1'].to_f; yc[id1]=row['lat1'].to_f; tagc[id1]=row['tags1']
263         id2=row['id2'].to_i; xc[id2]=row['long2'].to_f; yc[id2]=row['lat2'].to_f; tagc[id2]=row['tags2']
264         seg[row['segment_id'].to_i]=id1.to_s+'-'+id2.to_s
265       }
266           ActiveRecord::Base.connection.update("UPDATE current_ways SET timestamp=#{db_now},user_id=#{uid},visible=1 WHERE id=#{way}")
267     else
268       way=ActiveRecord::Base.connection.insert("INSERT INTO current_ways (user_id,timestamp,visible) VALUES (#{uid},#{db_now},1)")
269     end
270
271     # -- 4.     get version by inserting new row into ways
272
273     version=ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},1)")
274
275     # -- 5. compare nodes and update xmin,xmax,ymin,ymax
276
277     xmin = ymin = 999999
278     xmax = ymax = -999999
279     insertsql = ''
280     renumberednodes={}
281
282     points.each_index do |i|
283       xs=coord2long(points[i][0],masterscale,baselong)
284       ys=coord2lat(points[i][1],masterscale,basey)
285       xmin=[xs,xmin].min; xmax=[xs,xmax].max
286       ymin=[ys,ymin].min; ymax=[ys,ymax].max
287       node=points[i][2].to_i
288       tagstr=array2tag(points[i][4])
289       tagsql="'"+sqlescape(tagstr)+"'"
290
291       # compare node
292       if node<0
293         # new node - create
294         newnode=ActiveRecord::Base.connection.insert("INSERT INTO current_nodes (   latitude,longitude,timestamp,user_id,visible,tags) VALUES (           #{ys},#{xs},#{db_now},#{uid},1,#{tagsql})")
295                         ActiveRecord::Base.connection.insert("INSERT INTO nodes         (id,latitude,longitude,timestamp,user_id,visible,tags) VALUES (#{newnode},#{ys},#{xs},#{db_now},#{uid},1,#{tagsql})")
296         points[i][2]=newnode
297         renumberednodes[node.to_s]=newnode.to_s
298
299       elsif xc.has_key?(node)
300         # old node from original way - update
301         if (xs!=xc[node] or (ys/0.0000001).round!=(yc[node]/0.0000001).round or tagstr!=tagc[node])
302           ActiveRecord::Base.connection.insert("INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tags) VALUES (#{node},#{ys},#{xs},#{db_now},#{uid},1,#{tagsql})")
303           ActiveRecord::Base.connection.update("UPDATE current_nodes SET latitude=#{ys},longitude=#{xs},timestamp=#{db_now},user_id=#{uid},tags=#{tagsql},visible=1 WHERE id=#{node}")
304         end
305       else
306         # old node, created in another way and now added to this way
307       end
308
309     end
310
311
312     # -- 6.i compare segments
313
314     numberedsegments={}
315     seglist=''                          # list of existing segments that we want to keep
316     for i in (0..(points.length-2))
317       if (points[i+1][3].to_i==0) then next end
318       segid=points[i+1][5].to_i
319       from =points[i  ][2].to_i
320       to   =points[i+1][2].to_i
321       if seg.has_key?(segid)
322         if seg[segid]=="#{from}-#{to}" then 
323           if (seglist!='') then seglist+=',' end; seglist+=segid.to_s
324           next
325         end
326       end
327       segid=ActiveRecord::Base.connection.insert("INSERT INTO current_segments (   node_a,node_b,timestamp,user_id,visible,tags) VALUES (         #{from},#{to},#{db_now},#{uid},1,'')")
328                 ActiveRecord::Base.connection.insert("INSERT INTO segments         (id,node_a,node_b,timestamp,user_id,visible,tags) VALUES (#{segid},#{from},#{to},#{db_now},#{uid},1,'')")
329       points[i+1][5]=segid
330       numberedsegments[(i+1).to_s]=segid.to_s
331     end
332     # numberedsegments.each{|a,b| RAILS_DEFAULT_LOGGER.error("Sending back: seg no. #{a} -> id #{b}") }
333
334
335     # -- 6.ii insert new way segments
336
337     createuniquesegments(way,db_uqs,seglist)    # segments which appear in this way but no other
338
339     #           delete segments from uniquesegments (and not in modified way)
340
341     sql=<<-EOF
342       INSERT INTO segments (id,node_a,node_b,timestamp,user_id,visible) 
343       SELECT DISTINCT segment_id,node_a,node_b,#{db_now},#{uid},0
344         FROM current_segments AS cs, #{db_uqs} AS us
345        WHERE cs.id=us.segment_id AND cs.visible=1 
346     EOF
347     ActiveRecord::Base.connection.insert(sql)
348
349     sql=<<-EOF
350          UPDATE current_segments AS cs, #{db_uqs} AS us
351           SET cs.timestamp=#{db_now},cs.visible=0,cs.user_id=#{uid} 
352         WHERE cs.id=us.segment_id AND cs.visible=1 
353     EOF
354     ActiveRecord::Base.connection.update(sql)
355
356     #           delete nodes not in modified way or any other segments
357
358     createuniquenodes(db_uqs,db_uqn)    # nodes which appear in this way but no other
359
360     sql=<<-EOF
361                 INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible)  
362                 SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0 
363                   FROM current_nodes AS cn,#{db_uqn}
364                  WHERE cn.id=node_id
365     EOF
366     ActiveRecord::Base.connection.insert(sql)
367
368     sql=<<-EOF
369       UPDATE current_nodes AS cn, #{db_uqn}
370          SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid} 
371        WHERE cn.id=node_id
372     EOF
373     ActiveRecord::Base.connection.update(sql)
374
375     ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqs}")
376     ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqn}")
377
378     #           insert new version of route into way_segments
379
380     insertsql =''
381     currentsql=''
382     sequence  =1
383     for i in (0..(points.length-2))
384       if (points[i+1][3].to_i==0) then next end
385       if insertsql !='' then insertsql +=',' end
386       if currentsql!='' then currentsql+=',' end
387       insertsql +="(#{way},#{points[i+1][5]},#{version})"
388       currentsql+="(#{way},#{points[i+1][5]},#{sequence})"
389       sequence  +=1
390     end
391
392     ActiveRecord::Base.connection.execute("DELETE FROM current_way_segments WHERE id=#{way}");
393     ActiveRecord::Base.connection.insert("INSERT INTO         way_segments (id,segment_id,version    ) VALUES #{insertsql}");
394     ActiveRecord::Base.connection.insert("INSERT INTO current_way_segments (id,segment_id,sequence_id) VALUES #{currentsql}");
395
396     # -- 7. insert new way tags
397
398     insertsql =''
399     currentsql=''
400     attributes.each do |k,v|
401       if v=='' then next end
402       if v[0,6]=='(type ' then next end
403       if insertsql !='' then insertsql +=',' end
404       if currentsql!='' then currentsql+=',' end
405       insertsql +="(#{way},'"+sqlescape(k)+"','"+sqlescape(v)+"',#{version})"
406       currentsql+="(#{way},'"+sqlescape(k)+"','"+sqlescape(v)+"')"
407     end
408
409     ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
410     if (insertsql !='') then ActiveRecord::Base.connection.insert("INSERT INTO way_tags (id,k,v,version) VALUES #{insertsql}" ) end
411     if (currentsql!='') then ActiveRecord::Base.connection.insert("INSERT INTO current_way_tags (id,k,v) VALUES #{currentsql}") end
412
413     [originalway,way,renumberednodes,numberedsegments,xmin,xmax,ymin,ymax]
414   end
415
416   # -----       deleteway (user token, way)
417   #                     returns way ID only
418
419   def deleteway(args)
420     usertoken,way=args
421
422     ActiveRecord::Base.logger.info("  Message: deleteway, id=#{way}")
423
424     uid=getuserid(usertoken); if !uid then return end
425         way=way.to_i
426
427         db_uqs='uniq'+uid.to_s+way.to_i.abs.to_s+Time.new.to_i.to_s     # temp uniquesegments table name, typically 51 chars
428         db_uqn='unin'+uid.to_s+way.to_i.abs.to_s+Time.new.to_i.to_s     # temp uniquenodes table name, typically 51 chars
429         db_now='@now'+uid.to_s+way.to_i.abs.to_s+Time.new.to_i.to_s     # 'now' variable name, typically 51 chars
430         ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
431         createuniquesegments(way,db_uqs,'')
432
433         # -     delete any otherwise unused segments
434
435         sql=<<-EOF
436       INSERT INTO segments (id,node_a,node_b,timestamp,user_id,visible) 
437       SELECT DISTINCT segment_id,node_a,node_b,#{db_now},#{uid},0 
438         FROM current_segments AS cs, #{db_uqs} AS us
439        WHERE cs.id=us.segment_id
440     EOF
441         ActiveRecord::Base.connection.insert(sql)
442
443         sql=<<-EOF
444       UPDATE current_segments AS cs, #{db_uqs} AS us
445          SET cs.timestamp=#{db_now},cs.visible=0,cs.user_id=#{uid} 
446        WHERE cs.id=us.segment_id
447     EOF
448         ActiveRecord::Base.connection.update(sql)
449
450         # - delete any unused nodes
451   
452     createuniquenodes(db_uqs,db_uqn)
453
454         sql=<<-EOF
455                 INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible)  
456                 SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0 
457                   FROM current_nodes AS cn,#{db_uqn}
458                  WHERE cn.id=node_id
459     EOF
460         ActiveRecord::Base.connection.insert(sql)
461
462         sql=<<-EOF
463       UPDATE current_nodes AS cn, #{db_uqn}
464          SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid} 
465        WHERE cn.id=node_id
466     EOF
467         ActiveRecord::Base.connection.update(sql)
468         
469         ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqs}")
470         ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqn}")
471
472         # - delete way
473         
474         ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},0)")
475         ActiveRecord::Base.connection.update("UPDATE current_ways SET user_id=#{uid},timestamp=#{db_now},visible=0 WHERE id=#{way}")
476         ActiveRecord::Base.connection.execute("DELETE FROM current_way_segments WHERE id=#{way}")
477         ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
478         
479         way
480 end
481
482 # ====================================================================
483 # Support functions for remote calls
484
485 def readwayquery(id)
486   ActiveRecord::Base.connection.select_all "SELECT n1.latitude AS lat1,n1.longitude AS long1,n1.id AS id1,n1.tags as tags1, "+
487       "           n2.latitude AS lat2,n2.longitude AS long2,n2.id AS id2,n2.tags as tags2,segment_id "+
488       "    FROM current_way_segments,current_segments,current_nodes AS n1,current_nodes AS n2 "+
489       "   WHERE current_way_segments.id=#{id} "+
490       "     AND segment_id=current_segments.id "+
491           "     AND current_segments.visible=1 "+
492       "     AND n1.id=node_a and n2.id=node_b "+
493       "     AND n1.visible=1 AND n2.visible=1 "+
494       "   ORDER BY sequence_id"
495 end
496
497 def createuniquesegments(way,uqs_name,seglist)
498   # Finds segments which appear in (previous version of) this way and no other
499   sql=<<-EOF
500       CREATE TEMPORARY TABLE #{uqs_name}
501               SELECT a.segment_id
502                 FROM (SELECT DISTINCT segment_id FROM current_way_segments 
503                   WHERE id = #{way}) a
504              LEFT JOIN current_way_segments b 
505                 ON b.segment_id = a.segment_id
506                  AND b.id != #{way}
507                WHERE b.segment_id IS NULL
508     EOF
509   if (seglist!='') then sql+=" AND a.segment_id NOT IN (#{seglist})" end
510   ActiveRecord::Base.connection.execute(sql)
511 end
512
513 def createuniquenodes(uqs_name,uqn_name)
514         # Finds nodes which appear in uniquesegments but no other segments
515         sql=<<-EOF
516                 CREATE TEMPORARY TABLE #{uqn_name}
517                            SELECT DISTINCT node_id
518                               FROM (SELECT cn.id AS node_id
519                                                   FROM current_nodes AS cn,
520                                                        current_segments AS cs,
521                                                        #{uqs_name} AS us
522                                                  WHERE cs.id=us.segment_id
523                                                    AND (cn.id=cs.node_a OR cn.id=cs.node_b)) AS n
524                                          LEFT JOIN current_segments AS cs2 ON node_id=cs2.node_a AND cs2.visible=1
525                                          LEFT JOIN current_segments AS cs3 ON node_id=cs3.node_b AND cs3.visible=1
526                                              WHERE cs2.node_a IS NULL
527                                                AND cs3.node_b IS NULL
528         EOF
529         ActiveRecord::Base.connection.execute(sql)
530 end
531
532 def sqlescape(a)
533   a.gsub("'","''").gsub(92.chr,92.chr+92.chr)
534 end
535
536 def tag2array(a)
537   tags={}
538   a.gsub(';;;','#%').split(';').each do |b|
539     b.gsub!('#%',';;;')
540     b.gsub!('===','#%')
541     k,v=b.split('=')
542     if k.nil? then k='' end
543     if v.nil? then v='' end
544     tags[k.gsub('#%','=')]=v.gsub('#%','=')
545   end
546   tags
547 end
548
549 def array2tag(a)
550   str=''
551   a.each do |k,v|
552     if v=='' then next end
553     if v[0,6]=='(type ' then next end
554     if str!='' then str+=';' end
555     str+=k.gsub(';',';;;').gsub('=','===')+'='+v.gsub(';',';;;').gsub('=','===')
556   end
557   str
558 end
559
560 def getuserid(token)
561   token=sqlescape(token)
562   if (token=~/^(.+)\+(.+)$/) then
563     return ActiveRecord::Base.connection.select_value("SELECT id FROM users WHERE active=1 AND email='#{$1}' AND pass_crypt=MD5('#{$2}')")
564   else
565     return ActiveRecord::Base.connection.select_value("SELECT id FROM users WHERE active=1 AND token='#{token}'")
566   end
567 end
568
569
570
571 # ====================================================================
572 # AMF read subroutines
573
574 # ----- getint          return two-byte integer
575 # ----- getlong         return four-byte long
576 # ----- getstring       return string with two-byte length
577 # ----- getdouble       return eight-byte double-precision float
578 # ----- getobject       return object/hash
579 # ----- getarray        return numeric array
580
581 def getint(s)
582   s.getc*256+s.getc
583 end
584
585 def getlong(s)
586   ((s.getc*256+s.getc)*256+s.getc)*256+s.getc
587 end
588
589 def getstring(s)
590   len=s.getc*256+s.getc
591   s.read(len)
592 end
593
594 def getdouble(s)
595   a=s.read(8).unpack('G')                       # G big-endian, E little-endian
596   a[0]
597 end
598
599 def getarray(s)
600   len=getlong(s)
601   arr=[]
602   for i in (0..len-1)
603     arr[i]=getvalue(s)
604   end
605   arr
606 end
607
608 def getobject(s)
609   arr={}
610   while (key=getstring(s))
611     if (key=='') then break end
612     arr[key]=getvalue(s)
613   end
614   s.getc                # skip the 9 'end of object' value
615   arr
616 end
617
618 # ----- getvalue        parse and get value
619
620 def getvalue(s)
621   case s.getc
622   when 0;       return getdouble(s)                     # number
623   when 1;       return s.getc                           # boolean
624   when 2;       return getstring(s)                     # string
625   when 3;       return getobject(s)                     # object/hash
626   when 5;       return nil                                      # null
627   when 6;       return nil                                      # undefined
628   when 8;       s.read(4)                                       # mixedArray
629     return getobject(s)                 #  |
630   when 10;return getarray(s)                    # array
631   else; return nil                                      # error
632   end
633 end
634
635 # ====================================================================
636 # AMF write subroutines
637
638 # ----- putdata         envelope data into AMF writeable form
639 # ----- encodevalue     pack variables as AMF
640
641 def putdata(index,n)
642   d =encodestring(index+"/onResult")
643   d+=encodestring("null")
644   d+=[-1].pack("N")
645   d+=encodevalue(n)
646 end
647
648 def encodevalue(n)
649   case n.class.to_s
650   when 'Array'
651     a=10.chr+encodelong(n.length)
652     n.each do |b|
653       a+=encodevalue(b)
654     end
655     a
656   when 'Hash'
657     a=3.chr
658     n.each do |k,v|
659       a+=encodestring(k)+encodevalue(v)
660     end
661     a+0.chr+0.chr+9.chr
662   when 'String'
663     2.chr+encodestring(n)
664   when 'Bignum','Fixnum','Float'
665     0.chr+encodedouble(n)
666   when 'NilClass'
667     5.chr
668   else
669     RAILS_DEFAULT_LOGGER.error("Unexpected Ruby type for AMF conversion: "+n.class.to_s)
670   end
671 end
672
673 # ----- encodestring    encode string with two-byte length
674 # ----- encodedouble    encode number as eight-byte double precision float
675 # ----- encodelong              encode number as four-byte long
676
677 def encodestring(n)
678   a,b=n.size.divmod(256)
679   a.chr+b.chr+n
680 end
681
682 def encodedouble(n)
683   [n].pack('G')
684 end
685
686 def encodelong(n)
687   [n].pack('N')
688 end
689
690 # ====================================================================
691 # Co-ordinate conversion
692
693 def lat2coord(a,basey,masterscale)
694   -(lat2y(a)-basey)*masterscale+250
695 end
696
697 def long2coord(a,baselong,masterscale)
698   (a-baselong)*masterscale+350
699 end
700
701 def lat2y(a)
702   180/Math::PI * Math.log(Math.tan(Math::PI/4+a*(Math::PI/180)/2))
703 end
704
705 def coord2lat(a,masterscale,basey)
706   y2lat((a-250)/-masterscale+basey)
707 end
708
709 def coord2long(a,masterscale,baselong)
710   (a-350)/masterscale+baselong
711 end
712
713 def y2lat(a)
714   180/Math::PI * (2*Math.atan(Math.exp(a*Math::PI/180))-Math::PI/2)
715 end
716
717 end