1 # == Schema Information
3 # Table name: current_ways
5 # id :bigint(8) not null, primary key
6 # changeset_id :bigint(8) not null
7 # timestamp :datetime not null
8 # visible :boolean not null
9 # version :bigint(8) not null
13 # current_ways_timestamp_idx (timestamp)
17 # current_ways_changeset_id_fkey (changeset_id => changesets.id)
20 class Way < ActiveRecord::Base
23 include ConsistencyValidations
25 include ObjectMetadata
27 self.table_name = "current_ways"
31 has_many :old_ways, -> { order(:version) }
33 has_many :way_nodes, -> { order(:sequence_id) }
34 has_many :nodes, :through => :way_nodes
38 has_many :containing_relation_members, :class_name => "RelationMember", :as => :member
39 has_many :containing_relations, :class_name => "Relation", :through => :containing_relation_members, :source => :relation
41 validates :id, :uniqueness => true, :presence => { :on => :update },
42 :numericality => { :on => :update, :only_integer => true }
43 validates :version, :presence => true,
44 :numericality => { :only_integer => true }
45 validates :changeset_id, :presence => true,
46 :numericality => { :only_integer => true }
47 validates :timestamp, :presence => true
48 validates :changeset, :associated => true
49 validates :visible, :inclusion => [true, false]
51 scope :visible, -> { where(:visible => true) }
52 scope :invisible, -> { where(:visible => false) }
54 # Read in xml as text and return it's Way object representation
55 def self.from_xml(xml, create = false)
56 p = XML::Parser.string(xml, :options => XML::Parser::Options::NOERROR)
59 doc.find("//osm/way").each do |pt|
60 return Way.from_xml_node(pt, create)
62 raise OSM::APIBadXMLError.new("node", xml, "XML doesn't contain an osm/way element.")
63 rescue LibXML::XML::Error, ArgumentError => e
64 raise OSM::APIBadXMLError.new("way", xml, e.message)
67 def self.from_xml_node(pt, create = false)
70 raise OSM::APIBadXMLError.new("way", pt, "Version is required when updating") unless create || !pt["version"].nil?
72 way.version = pt["version"]
73 raise OSM::APIBadXMLError.new("way", pt, "Changeset id is missing") if pt["changeset"].nil?
75 way.changeset_id = pt["changeset"]
78 raise OSM::APIBadXMLError.new("way", pt, "ID is required when updating") if pt["id"].nil?
80 way.id = pt["id"].to_i
81 # .to_i will return 0 if there is no number that can be parsed.
82 # We want to make sure that there is no id with zero anyway
83 raise OSM::APIBadUserInput, "ID of way cannot be zero when updating." if way.id.zero?
86 # We don't care about the timestamp nor the visibility as these are either
87 # set explicitly or implicit in the action. The visibility is set to true,
88 # and manually set to false before the actual delete.
94 # Add in any tags from the XML
95 pt.find("tag").each do |tag|
96 raise OSM::APIBadXMLError.new("way", pt, "tag is missing key") if tag["k"].nil?
97 raise OSM::APIBadXMLError.new("way", pt, "tag is missing value") if tag["v"].nil?
99 way.add_tag_keyval(tag["k"], tag["v"])
102 pt.find("nd").each do |nd|
103 way.add_nd_num(nd["ref"])
109 # Find a way given it's ID, and in a single SQL call also grab its nodes and tags
111 doc = OSM::API.new.get_xml_doc
112 doc.root << to_xml_node
116 def to_xml_node(visible_nodes = nil, changeset_cache = {}, user_display_name_cache = {})
117 el = XML::Node.new "way"
120 add_metadata_to_xml_node(el, self, changeset_cache, user_display_name_cache)
122 # make sure nodes are output in sequence_id order
124 way_nodes.each do |nd|
126 # if there is a list of visible nodes then use that to weed out deleted nodes
127 ordered_nodes[nd.sequence_id] = nd.node_id.to_s if visible_nodes[nd.node_id]
129 # otherwise, manually go to the db to check things
130 ordered_nodes[nd.sequence_id] = nd.node_id.to_s if nd.node&.visible?
134 ordered_nodes.each do |nd_id|
135 next unless nd_id && nd_id != "0"
137 node_el = XML::Node.new "nd"
138 node_el["ref"] = nd_id
142 add_tags_to_xml_node(el, way_tags)
148 @nds ||= way_nodes.collect(&:node_id)
152 @tags ||= Hash[way_tags.collect { |t| [t.k, t.v] }]
164 def add_tag_keyval(k, v)
167 # duplicate tags are now forbidden, so we can't allow values
168 # in the hash to be overwritten.
169 raise OSM::APIDuplicateTagsError.new("way", id, k) if @tags.include? k
175 # the integer coords (i.e: unscaled) bounding box of the way, assuming
176 # straight line segments.
178 lons = nodes.collect(&:longitude)
179 lats = nodes.collect(&:latitude)
180 BoundingBox.new(lons.min, lats.min, lons.max, lats.max)
183 def update_from(new_way, user)
186 check_consistency(self, new_way, user)
187 raise OSM::APIPreconditionFailedError, "Cannot update way #{id}: data is invalid." unless new_way.preconditions_ok?(nds)
189 self.changeset_id = new_way.changeset_id
190 self.changeset = new_way.changeset
191 self.tags = new_way.tags
192 self.nds = new_way.nds
198 def create_with_history(user)
199 check_create_consistency(self, user)
200 raise OSM::APIPreconditionFailedError, "Cannot create way: data is invalid." unless preconditions_ok?
207 def preconditions_ok?(old_nodes = [])
208 return false if nds.empty?
209 raise OSM::APITooManyWayNodesError.new(id, nds.length, Settings.max_number_of_way_nodes) if nds.length > Settings.max_number_of_way_nodes
211 # check only the new nodes, for efficiency - old nodes having been checked last time and can't
212 # be deleted when they're in-use.
213 new_nds = (nds - old_nodes).sort.uniq
215 unless new_nds.empty?
216 # NOTE: nodes are locked here to ensure they can't be deleted before
217 # the current transaction commits.
218 db_nds = Node.where(:id => new_nds, :visible => true).lock("for share")
220 if db_nds.length < new_nds.length
221 missing = new_nds - db_nds.collect(&:id)
222 raise OSM::APIPreconditionFailedError, "Way #{id} requires the nodes with id in (#{missing.join(',')}), which either do not exist, or are not visible."
229 def delete_with_history!(new_way, user)
230 raise OSM::APIAlreadyDeletedError.new("way", new_way.id) unless visible
232 # need to start the transaction here, so that the database can
233 # provide repeatable reads for the used-by checks. this means it
234 # shouldn't be possible to get race conditions.
237 check_consistency(self, new_way, user)
238 rels = Relation.joins(:relation_members).where(:visible => true, :current_relation_members => { :member_type => "Way", :member_id => id }).order(:id)
239 raise OSM::APIPreconditionFailedError, "Way #{id} is still used by relations #{rels.collect(&:id).join(',')}." unless rels.empty?
241 self.changeset_id = new_way.changeset_id
242 self.changeset = new_way.changeset
252 # if any referenced nodes are placeholder IDs (i.e: are negative) then
253 # this calling this method will fix them using the map from placeholders
255 def fix_placeholders!(id_map, placeholder_id = nil)
256 nds.map! do |node_id|
258 new_id = id_map[:node][node_id]
259 raise OSM::APIBadUserInput, "Placeholder node not found for reference #{node_id} in way #{id.nil? ? placeholder_id : id}" if new_id.nil?
270 def save_with_history!
276 # update the bounding box, note that this has to be done both before
277 # and after the save, so that nodes from both versions are included in the
278 # bbox. we use a copy of the changeset so that it isn't reloaded
281 cs.update_bbox!(bbox) unless nodes.empty?
284 # clone the object before saving it so that the original is
285 # still marked as dirty if we retry the transaction
289 WayTag.where(:way_id => id).delete_all
299 WayNode.where(:way_id => id).delete_all
303 nd.id = [id, sequence]
309 old_way = OldWay.from_way(self)
310 old_way.timestamp = t
311 old_way.save_with_dependencies!
313 # reload the way so that the nodes array points to the correct
317 # update and commit the bounding box, now that way nodes
318 # have been updated and we're in a transaction.
319 cs.update_bbox!(bbox) unless nodes.empty?
321 # tell the changeset we updated one element only