1 class AmfController < ApplicationController
5 # RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
7 # ====================================================================
10 # ---- talk process AMF request
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
20 headers=getint(req) # Read number of headers
22 headers.times do # Read each header
23 name=getstring(req) # |
24 req.getc # | skip boolean
25 value=getvalue(req) # |
26 header["name"]=value # |
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)
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 when 'makeway'; results[index]=putdata(index,makeway(args))
49 RAILS_DEFAULT_LOGGER.info(" Response: start")
50 a,b=results.length.divmod(256)
51 render :content_type => "application/x-amf", :text => proc { |response, output|
52 output.write 0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
57 RAILS_DEFAULT_LOGGER.info(" Response: end")
63 # ====================================================================
67 # return presets,presetmenus and presetnames arrays
71 presetmenus={}; presetmenus['point']=[]; presetmenus['way']=[]
72 presetnames={}; presetnames['point']={}; presetnames['way']={}
76 RAILS_DEFAULT_LOGGER.info(" Message: getpresets")
78 # File.open("config/potlatch/presets.txt") do |file|
80 # Temporary patch to get around filepath problem
81 # To remove this patch and make the code nice again:
82 # 1. uncomment above line
83 # 2. fix the path in the above line
84 # 3. delete this here document, and the following line (StringIO....)
88 motorway: highway=motorway,ref=(type road number)
89 trunk road: highway=trunk,ref=(type road number),name=(type road name)
90 primary road: highway=primary,ref=(type road number),name=(type road name)
91 secondary road: highway=secondary,ref=(type road number),name=(type road name)
92 residential road: highway=residential,name=(type road name)
93 unclassified road: highway=unclassified,name=(type road name)
96 footpath: highway=footway,foot=yes
97 bridleway: highway=bridleway,foot=yes,horse=yes,bicycle=yes
98 byway: highway=byway,foot=yes,horse=yes,bicycle=yes,motorcar=yes
99 permissive path: highway=footway,foot=permissive
102 cycle lane: highway=cycleway,cycleway=lane,ncn_ref=
103 cycle track: highway=cycleway,cycleway=track,ncn_ref=
104 cycle lane (NCN): highway=cycleway,cycleway=lane,name=(type name here),ncn_ref=(type route number)
105 cycle track (NCN): highway=cycleway,cycleway=track,name=(type name here),ncn_ref=(type route number)
108 canal: waterway=canal,name=(type name here)
109 navigable river: waterway=river,boat=yes,name=(type name here)
110 navigable drain: waterway=drain,boat=yes,name=(type name here)
111 derelict canal: waterway=derelict_canal,name=(type name here)
112 unnavigable river: waterway=river,boat=no,name=(type name here)
113 unnavigable drain: waterway=drain,boat=no,name=(type name here)
116 railway: railway=rail
117 tramway: railway=tram
118 light railway: railway=light_rail
119 preserved railway: railway=preserved
120 disused railway tracks: railway=disused
121 course of old railway: railway=abandoned
124 mini roundabout: highway=mini_roundabout
125 traffic lights: highway=traffic_signals
128 bridge: highway=bridge
131 cattle grid: highway=cattle_grid
137 lock gate: waterway=lock_gate
139 aqueduct: waterway=aqueduct
140 winding hole: waterway=turning_point
141 mooring: waterway=mooring
144 station: railway=station
145 viaduct: railway=viaduct
146 level crossing: railway=crossing
149 StringIO.open(txt) do |file|
150 file.each_line {|line|
152 if (t=~/(\w+)\/(\w+)/) then
155 presetmenus[presettype].push(presetcategory)
156 presetnames[presettype][presetcategory]=["(no preset)"]
157 elsif (t=~/^(.+):\s?(.+)$/) then
159 presetnames[presettype][presetcategory].push(pre)
161 kv.split(',').each {|a|
162 if (a=~/^(.+)=(.*)$/) then presets[pre][$1]=$2 end
167 return [presets,presetmenus,presetnames]
170 # ----- whichways(left,bottom,right,top)
171 # return array of ways in current bounding box
172 # at present, instead of using correct (=more complex) SQL to find
173 # corner-crossing ways, it simply enlarges the bounding box by +/- 0.01
176 xmin = args[0].to_f-0.01
177 ymin = args[1].to_f-0.01
178 xmax = args[2].to_f+0.01
179 ymax = args[3].to_f+0.01
181 RAILS_DEFAULT_LOGGER.info(" Message: whichways, bbox=#{xmin},#{ymin},#{xmax},#{ymax}")
183 waylist=WaySegment.find_by_sql("SELECT DISTINCT current_way_segments.id AS wayid"+
184 " FROM current_way_segments,current_segments,current_nodes,current_ways "+
185 " WHERE segment_id=current_segments.id "+
186 " AND current_segments.visible=1 "+
187 " AND node_a=current_nodes.id "+
188 " AND current_ways.id=current_way_segments.id "+
189 " AND current_ways.visible=1 "+
190 " AND (latitude BETWEEN "+ymin.to_s+" AND "+ymax.to_s+") "+
191 " AND (longitude BETWEEN "+xmin.to_s+" AND "+xmax.to_s+")")
193 ways = waylist.collect {|a| a.wayid.to_i } # get an array of way id's
195 pointlist =ActiveRecord::Base.connection.select_all("SELECT current_nodes.id,current_nodes.tags "+
196 " FROM current_nodes "+
197 " LEFT OUTER JOIN current_segments cs1 ON cs1.node_a=current_nodes.id "+
198 " LEFT OUTER JOIN current_segments cs2 ON cs2.node_b=current_nodes.id "+
199 " WHERE (latitude BETWEEN "+ymin.to_s+" AND "+ymax.to_s+") "+
200 " AND (longitude BETWEEN "+xmin.to_s+" AND "+xmax.to_s+") "+
201 " AND cs1.id IS NULL AND cs2.id IS NULL "+
202 " AND current_nodes.visible=1")
204 points = pointlist.collect {|a| [a['id'],tag2array(a['tags'])] } # get a list of node ids and their tags
209 # ----- getway (objectname, way, baselong, basey, masterscale)
210 # returns objectname, array of co-ordinates, attributes,
211 # xmin,xmax,ymin,ymax
214 objname,wayid,baselong,basey,masterscale=args
219 xmax = ymax = -999999
221 RAILS_DEFAULT_LOGGER.info(" Message: getway, id=#{wayid}")
223 readwayquery(wayid).each {|row|
224 xs1=long2coord(row['long1'].to_f,baselong,masterscale); ys1=lat2coord(row['lat1'].to_f,basey,masterscale)
225 xs2=long2coord(row['long2'].to_f,baselong,masterscale); ys2=lat2coord(row['lat2'].to_f,basey,masterscale)
226 points << [xs1,ys1,row['id1'].to_i,0,tag2array(row['tags1']),0] if (row['id1'].to_i!=lastid)
227 lastid = row['id2'].to_i
228 points << [xs2,ys2,row['id2'].to_i,1,tag2array(row['tags2']),row['segment_id'].to_i]
229 xmin = [xmin,row['long1'].to_f,row['long2'].to_f].min
230 xmax = [xmax,row['long1'].to_f,row['long2'].to_f].max
231 ymin = [ymin,row['lat1'].to_f,row['lat2'].to_f].min
232 ymax = [ymax,row['lat1'].to_f,row['lat2'].to_f].max
236 attrlist=ActiveRecord::Base.connection.select_all "SELECT k,v FROM current_way_tags WHERE id=#{wayid}"
237 attrlist.each {|a| attributes[a['k']]=a['v'] }
239 [objname,points,attributes,xmin,xmax,ymin,ymax]
242 # ----- putway (user token, way, array of co-ordinates, array of attributes,
243 # baselong, basey, masterscale)
244 # returns current way ID, new way ID, hash of renumbered nodes,
245 # xmin,xmax,ymin,ymax
248 usertoken,originalway,points,attributes,baselong,basey,masterscale=args
249 uid=getuserid(usertoken)
251 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
252 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
253 db_now='@now'+uid.to_s+originalway.to_i.abs.to_s+Time.new.to_i.to_s # 'now' variable name, typically 51 chars
254 ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
255 originalway=originalway.to_i
257 RAILS_DEFAULT_LOGGER.info(" Message: putway, id=#{originalway}")
259 # -- 3. read original way into memory
261 xc={}; yc={}; tagc={}; seg={}
264 readwayquery(way).each { |row|
265 id1=row['id1'].to_i; xc[id1]=row['long1'].to_f; yc[id1]=row['lat1'].to_f; tagc[id1]=row['tags1']
266 id2=row['id2'].to_i; xc[id2]=row['long2'].to_f; yc[id2]=row['lat2'].to_f; tagc[id2]=row['tags2']
267 seg[row['segment_id'].to_i]=id1.to_s+'-'+id2.to_s
269 ActiveRecord::Base.connection.update("UPDATE current_ways SET timestamp=#{db_now},user_id=#{uid},visible=1 WHERE id=#{way}")
271 way=ActiveRecord::Base.connection.insert("INSERT INTO current_ways (user_id,timestamp,visible) VALUES (#{uid},#{db_now},1)")
274 # -- 4. get version by inserting new row into ways
276 version=ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},1)")
278 # -- 5. compare nodes and update xmin,xmax,ymin,ymax
281 xmax = ymax = -999999
285 points.each_index do |i|
286 xs=coord2long(points[i][0],masterscale,baselong)
287 ys=coord2lat(points[i][1],masterscale,basey)
288 xmin=[xs,xmin].min; xmax=[xs,xmax].max
289 ymin=[ys,ymin].min; ymax=[ys,ymax].max
290 node=points[i][2].to_i
291 tagstr=array2tag(points[i][4])
292 tagstr=tagstr.gsub(/[\000-\037]/,"")
293 tagsql="'"+sqlescape(tagstr)+"'"
298 newnode=ActiveRecord::Base.connection.insert("INSERT INTO current_nodes ( latitude,longitude,timestamp,user_id,visible,tags) VALUES ( #{ys},#{xs},#{db_now},#{uid},1,#{tagsql})")
299 ActiveRecord::Base.connection.insert("INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tags) VALUES (#{newnode},#{ys},#{xs},#{db_now},#{uid},1,#{tagsql})")
301 renumberednodes[node.to_s]=newnode.to_s
303 elsif xc.has_key?(node)
304 # old node from original way - update
305 if (xs!=xc[node] or (ys/0.0000001).round!=(yc[node]/0.0000001).round or tagstr!=tagc[node])
306 ActiveRecord::Base.connection.insert("INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tags) VALUES (#{node},#{ys},#{xs},#{db_now},#{uid},1,#{tagsql})")
307 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}")
310 # old node, created in another way and now added to this way
316 # -- 6.i compare segments
319 seglist='' # list of existing segments that we want to keep
320 for i in (0..(points.length-2))
321 if (points[i+1][3].to_i==0) then next end
322 segid=points[i+1][5].to_i
323 from =points[i ][2].to_i
324 to =points[i+1][2].to_i
325 if seg.has_key?(segid)
326 # if segment exists, check it still refers to the same nodes
327 if seg[segid]=="#{from}-#{to}" then
328 if (seglist!='') then seglist+=',' end; seglist+=segid.to_s
332 # not in previous version of way, but supplied, so assume
333 # that it's come from makeway (i.e. unwayed segments)
334 if (seglist!='') then seglist+=',' end; seglist+=segid.to_s
337 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,'')")
338 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,'')")
340 numberedsegments[(i+1).to_s]=segid.to_s
344 # -- 6.ii insert new way segments
346 createuniquesegments(way,db_uqs,seglist) # segments which appear in this way but no other
348 # delete segments from uniquesegments (and not in modified way)
351 INSERT INTO segments (id,node_a,node_b,timestamp,user_id,visible)
352 SELECT DISTINCT segment_id,node_a,node_b,#{db_now},#{uid},0
353 FROM current_segments AS cs, #{db_uqs} AS us
354 WHERE cs.id=us.segment_id AND cs.visible=1
356 ActiveRecord::Base.connection.insert(sql)
359 UPDATE current_segments AS cs, #{db_uqs} AS us
360 SET cs.timestamp=#{db_now},cs.visible=0,cs.user_id=#{uid}
361 WHERE cs.id=us.segment_id AND cs.visible=1
363 ActiveRecord::Base.connection.update(sql)
365 # delete nodes not in modified way or any other segments
367 createuniquenodes(db_uqs,db_uqn) # nodes which appear in this way but no other
370 INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible)
371 SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0
372 FROM current_nodes AS cn,#{db_uqn}
375 ActiveRecord::Base.connection.insert(sql)
378 UPDATE current_nodes AS cn, #{db_uqn}
379 SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid}
382 ActiveRecord::Base.connection.update(sql)
384 ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqs}")
385 ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqn}")
387 # insert new version of route into way_segments
392 for i in (0..(points.length-2))
393 if (points[i+1][3].to_i==0) then next end
394 if insertsql !='' then insertsql +=',' end
395 if currentsql!='' then currentsql+=',' end
396 insertsql +="(#{way},#{points[i+1][5]},#{version})"
397 currentsql+="(#{way},#{points[i+1][5]},#{sequence})"
401 ActiveRecord::Base.connection.execute("DELETE FROM current_way_segments WHERE id=#{way}");
402 ActiveRecord::Base.connection.insert("INSERT INTO way_segments (id,segment_id,version ) VALUES #{insertsql}");
403 ActiveRecord::Base.connection.insert("INSERT INTO current_way_segments (id,segment_id,sequence_id) VALUES #{currentsql}");
405 # -- 7. insert new way tags
409 attributes.each do |k,v|
410 if v=='' or v.nil? then next end
411 if v[0,6]=='(type ' then next end
412 if insertsql !='' then insertsql +=',' end
413 if currentsql!='' then currentsql+=',' end
414 k=k.gsub(/[\000-\037]/,"")
415 v=v.gsub(/[\000-\037]/,"")
416 insertsql +="(#{way},'"+sqlescape(k)+"','"+sqlescape(v)+"',#{version})"
417 currentsql+="(#{way},'"+sqlescape(k)+"','"+sqlescape(v)+"')"
420 ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
421 if (insertsql !='') then ActiveRecord::Base.connection.insert("INSERT INTO way_tags (id,k,v,version) VALUES #{insertsql}" ) end
422 if (currentsql!='') then ActiveRecord::Base.connection.insert("INSERT INTO current_way_tags (id,k,v) VALUES #{currentsql}") end
424 [originalway,way,renumberednodes,numberedsegments,xmin,xmax,ymin,ymax]
427 # ----- deleteway (user token, way)
428 # returns way ID only
433 RAILS_DEFAULT_LOGGER.info(" Message: deleteway, id=#{way}")
435 uid=getuserid(usertoken); if !uid then return end
438 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
439 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
440 db_now='@now'+uid.to_s+way.to_i.abs.to_s+Time.new.to_i.to_s # 'now' variable name, typically 51 chars
441 ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
442 createuniquesegments(way,db_uqs,'')
444 # - delete any otherwise unused segments
447 INSERT INTO segments (id,node_a,node_b,timestamp,user_id,visible)
448 SELECT DISTINCT segment_id,node_a,node_b,#{db_now},#{uid},0
449 FROM current_segments AS cs, #{db_uqs} AS us
450 WHERE cs.id=us.segment_id
452 ActiveRecord::Base.connection.insert(sql)
455 UPDATE current_segments AS cs, #{db_uqs} AS us
456 SET cs.timestamp=#{db_now},cs.visible=0,cs.user_id=#{uid}
457 WHERE cs.id=us.segment_id
459 ActiveRecord::Base.connection.update(sql)
461 # - delete any unused nodes
463 createuniquenodes(db_uqs,db_uqn)
466 INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible)
467 SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0
468 FROM current_nodes AS cn,#{db_uqn}
471 ActiveRecord::Base.connection.insert(sql)
474 UPDATE current_nodes AS cn, #{db_uqn}
475 SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid}
478 ActiveRecord::Base.connection.update(sql)
480 ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqs}")
481 ActiveRecord::Base.connection.execute("DROP TABLE #{db_uqn}")
485 ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},0)")
486 ActiveRecord::Base.connection.update("UPDATE current_ways SET user_id=#{uid},timestamp=#{db_now},visible=0 WHERE id=#{way}")
487 ActiveRecord::Base.connection.execute("DELETE FROM current_way_segments WHERE id=#{way}")
488 ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
493 # ----- makeway(x,y,baselong,basey,masterscale)
494 # returns way made from unwayed segments
497 x,y,baselong,basey,masterscale=args
499 nodesused={} # so we don't go over the same node twice
501 # - find start point near x
503 xc=coord2long(x,masterscale,baselong)
504 yc=coord2lat(y,masterscale,basey)
505 xs1=xc-0.001; xs2=xc+0.001
506 ys1=yc-0.001; ys2=yc+0.001
509 SELECT cn1.latitude AS lat1,cn1.longitude AS lon1,cn1.id AS id1,
510 cn2.latitude AS lat2,cn2.longitude AS lon2,cn2.id AS id2, cs.id AS segid
511 FROM current_nodes AS cn1,
512 current_nodes AS cn2,
513 current_segments AS cs
514 LEFT OUTER JOIN current_way_segments ON segment_id=cs.id
515 WHERE (cn1.longitude BETWEEN #{xs1} AND #{xs2})
516 AND (cn1.latitude BETWEEN #{ys1} AND #{ys2})
517 AND segment_id IS NULL
518 AND cn1.id=node_a AND cn1.visible=1
519 AND cn2.id=node_b AND cn2.visible=1
520 ORDER BY SQRT(POW(cn1.longitude-#{xc},2)+
521 POW(cn1.latitude -#{yc},2))
524 row=ActiveRecord::Base.connection.select_one sql
525 if row.nil? then return [0,0,0,0,0] end
526 xs1=long2coord(row['lon1'].to_f,baselong,masterscale); ys1=lat2coord(row['lat1'].to_f,basey,masterscale)
527 xs2=long2coord(row['lon2'].to_f,baselong,masterscale); ys2=lat2coord(row['lat2'].to_f,basey,masterscale)
528 xmin=[xs1,xs2].min; xmax=[xs1,xs2].max
529 ymin=[ys1,ys2].min; ymax=[ys1,ys2].max
530 nodesused[row['id1'].to_i]=true
531 nodesused[row['id2'].to_i]=true
532 points<<[xs1,ys1,row['id1'].to_i,1,{},0]
533 points<<[xs2,ys2,row['id2'].to_i,1,{},row['segid'].to_i]
535 # - extend at start, then end
536 while (a,point,nodesused=findconnect(points[0][2],nodesused,'b',baselong,basey,masterscale))[0]
537 points[0][5]=point[5]; point[5]=0 # segment leads to next node
538 points.unshift(point)
539 xmin=[point[0],xmin].min; xmax=[point[0],xmax].max
540 ymin=[point[1],ymin].min; ymax=[point[1],ymax].max
542 while (a,point,nodesused=findconnect(points[-1][2],nodesused,'a',baselong,basey,masterscale))[0]
544 xmin=[point[0],xmin].min; xmax=[point[0],xmax].max
545 ymin=[point[1],ymin].min; ymax=[point[1],ymax].max
547 points[0][3]=0 # start with a move
549 [points,xmin,xmax,ymin,ymax]
552 def findconnect(id,nodesused,lookfor,baselong,basey,masterscale)
553 # get all segments with 'id' as a point
554 # (to look for both node_a and node_b, UNION is faster than node_a=id OR node_b=id)!
556 SELECT cn1.latitude AS lat1,cn1.longitude AS lon1,cn1.id AS id1,
557 cn2.latitude AS lat2,cn2.longitude AS lon2,cn2.id AS id2, cs.id AS segid
558 FROM current_nodes AS cn1,
559 current_nodes AS cn2,
560 current_segments AS cs
561 LEFT OUTER JOIN current_way_segments ON segment_id=cs.id
562 WHERE segment_id IS NULL
563 AND cn1.id=node_a AND cn1.visible=1
564 AND cn2.id=node_b AND cn2.visible=1
567 SELECT cn1.latitude AS lat1,cn1.longitude AS lon1,cn1.id AS id1,
568 cn2.latitude AS lat2,cn2.longitude AS lon2,cn2.id AS id2, cs.id AS segid
569 FROM current_nodes AS cn1,
570 current_nodes AS cn2,
571 current_segments AS cs
572 LEFT OUTER JOIN current_way_segments ON segment_id=cs.id
573 WHERE segment_id IS NULL
574 AND cn1.id=node_a AND cn1.visible=1
575 AND cn2.id=node_b AND cn2.visible=1
578 connectlist=ActiveRecord::Base.connection.select_all sql
580 if lookfor=='b' then tocol='id1'; tolat='lat1'; tolon='lon1'; fromcol='id2'
581 else tocol='id2'; tolat='lat2'; tolon='lon2'; fromcol='id1'
584 # eliminate those already in the hash
587 connectlist.each { |row|
588 tonode=row[tocol].to_i
589 fromnode=row[fromcol].to_i
590 if id==tonode and !nodesused.has_key?(fromnode)
592 nodesused[fromnode]=true
593 elsif id==fromnode and !nodesused.has_key?(tonode)
595 point=[long2coord(row[tolon].to_f,baselong,masterscale),lat2coord(row[tolat].to_f,basey,masterscale),tonode,1,{},row['segid'].to_i]
596 nodesused[tonode]=true
600 # if only one left, then add it; otherwise return false
601 if connex!=1 or point.nil? then
602 return [false,[],nodesused]
604 return [true,point,nodesused]
609 # ====================================================================
610 # Support functions for remote calls
613 ActiveRecord::Base.connection.select_all "SELECT n1.latitude AS lat1,n1.longitude AS long1,n1.id AS id1,n1.tags as tags1, "+
614 " n2.latitude AS lat2,n2.longitude AS long2,n2.id AS id2,n2.tags as tags2,segment_id "+
615 " FROM current_way_segments,current_segments,current_nodes AS n1,current_nodes AS n2 "+
616 " WHERE current_way_segments.id=#{id} "+
617 " AND segment_id=current_segments.id "+
618 " AND current_segments.visible=1 "+
619 " AND n1.id=node_a and n2.id=node_b "+
620 " AND n1.visible=1 AND n2.visible=1 "+
621 " ORDER BY sequence_id"
624 def createuniquesegments(way,uqs_name,seglist)
625 # Finds segments which appear in (previous version of) this way and no other
627 CREATE TEMPORARY TABLE #{uqs_name}
629 FROM (SELECT DISTINCT segment_id FROM current_way_segments
631 LEFT JOIN current_way_segments b
632 ON b.segment_id = a.segment_id
634 WHERE b.segment_id IS NULL
636 if (seglist!='') then sql+=" AND a.segment_id NOT IN (#{seglist})" end
637 ActiveRecord::Base.connection.execute(sql)
640 def createuniquenodes(uqs_name,uqn_name)
641 # Finds nodes which appear in uniquesegments but no other segments
643 CREATE TEMPORARY TABLE #{uqn_name}
644 SELECT DISTINCT node_id
645 FROM (SELECT cn.id AS node_id
646 FROM current_nodes AS cn,
647 current_segments AS cs,
649 WHERE cs.id=us.segment_id
650 AND (cn.id=cs.node_a OR cn.id=cs.node_b)) AS n
651 LEFT JOIN current_segments AS cs2 ON node_id=cs2.node_a AND cs2.visible=1
652 LEFT JOIN current_segments AS cs3 ON node_id=cs3.node_b AND cs3.visible=1
653 WHERE cs2.node_a IS NULL
654 AND cs3.node_b IS NULL
656 ActiveRecord::Base.connection.execute(sql)
660 a.gsub("'","''").gsub(92.chr,92.chr+92.chr)
665 a.gsub(';;;','#%').split(';').each do |b|
669 if k.nil? then k='' end
670 if v.nil? then v='' end
671 tags[k.gsub('#%','=')]=v.gsub('#%','=')
679 if v=='' then next end
680 if v[0,6]=='(type ' then next end
681 if str!='' then str+=';' end
682 str+=k.gsub(';',';;;').gsub('=','===')+'='+v.gsub(';',';;;').gsub('=','===')
688 token=sqlescape(token)
689 if (token=~/^(.+)\+(.+)$/) then
690 return ActiveRecord::Base.connection.select_value("SELECT id FROM users WHERE active=1 AND email='#{$1}' AND pass_crypt=MD5('#{$2}')")
692 return ActiveRecord::Base.connection.select_value("SELECT id FROM users WHERE active=1 AND token='#{token}'")
698 # ====================================================================
699 # AMF read subroutines
701 # ----- getint return two-byte integer
702 # ----- getlong return four-byte long
703 # ----- getstring return string with two-byte length
704 # ----- getdouble return eight-byte double-precision float
705 # ----- getobject return object/hash
706 # ----- getarray return numeric array
713 ((s.getc*256+s.getc)*256+s.getc)*256+s.getc
717 len=s.getc*256+s.getc
722 a=s.read(8).unpack('G') # G big-endian, E little-endian
737 while (key=getstring(s))
738 if (key=='') then break end
741 s.getc # skip the 9 'end of object' value
745 # ----- getvalue parse and get value
749 when 0; return getdouble(s) # number
750 when 1; return s.getc # boolean
751 when 2; return getstring(s) # string
752 when 3; return getobject(s) # object/hash
753 when 5; return nil # null
754 when 6; return nil # undefined
755 when 8; s.read(4) # mixedArray
756 return getobject(s) # |
757 when 10; return getarray(s) # array
758 else; return nil # error
762 # ====================================================================
763 # AMF write subroutines
765 # ----- putdata envelope data into AMF writeable form
766 # ----- encodevalue pack variables as AMF
769 d =encodestring(index+"/onResult")
770 d+=encodestring("null")
778 a=10.chr+encodelong(n.length)
786 a+=encodestring(k)+encodevalue(v)
790 2.chr+encodestring(n)
791 when 'Bignum','Fixnum','Float'
792 0.chr+encodedouble(n)
796 RAILS_DEFAULT_LOGGER.error("Unexpected Ruby type for AMF conversion: "+n.class.to_s)
800 # ----- encodestring encode string with two-byte length
801 # ----- encodedouble encode number as eight-byte double precision float
802 # ----- encodelong encode number as four-byte long
805 a,b=n.size.divmod(256)
817 # ====================================================================
818 # Co-ordinate conversion
820 def lat2coord(a,basey,masterscale)
821 -(lat2y(a)-basey)*masterscale+250
824 def long2coord(a,baselong,masterscale)
825 (a-baselong)*masterscale+350
829 180/Math::PI * Math.log(Math.tan(Math::PI/4+a*(Math::PI/180)/2))
832 def coord2lat(a,masterscale,basey)
833 y2lat((a-250)/-masterscale+basey)
836 def coord2long(a,masterscale,baselong)
837 (a-350)/masterscale+baselong
841 180/Math::PI * (2*Math.atan(Math.exp(a*Math::PI/180))-Math::PI/2)