1 class Relation < ActiveRecord::Base
4 include ConsistencyValidations
6 set_table_name 'current_relations'
10 has_many :old_relations, :foreign_key => 'id', :order => 'version'
12 has_many :relation_members, :foreign_key => 'id', :order => 'sequence_id'
13 has_many :relation_tags, :foreign_key => 'id'
15 has_many :containing_relation_members, :class_name => "RelationMember", :as => :member
16 has_many :containing_relations, :class_name => "Relation", :through => :containing_relation_members, :source => :relation, :extend => ObjectFinder
18 validates_presence_of :id, :on => :update
19 validates_presence_of :timestamp,:version, :changeset_id
20 validates_uniqueness_of :id
21 validates_inclusion_of :visible, :in => [ true, false ]
22 validates_numericality_of :id, :on => :update, :integer_only => true
23 validates_numericality_of :changeset_id, :version, :integer_only => true
24 validates_associated :changeset
26 TYPES = ["node", "way", "relation"]
28 def self.from_xml(xml, create=false)
30 p = XML::Parser.string(xml)
33 doc.find('//osm/relation').each do |pt|
34 return Relation.from_xml_node(pt, create)
36 rescue LibXML::XML::Error, ArgumentError => ex
37 raise OSM::APIBadXMLError.new("relation", xml, ex.message)
41 def self.from_xml_node(pt, create=false)
42 relation = Relation.new
44 if !create and pt['id'] != '0'
45 relation.id = pt['id'].to_i
48 raise OSM::APIBadXMLError.new("relation", pt, "You are missing the required changeset in the relation") if pt['changeset'].nil?
49 relation.changeset_id = pt['changeset']
51 # The follow block does not need to be executed because they are dealt with
52 # in create_with_history, update_from and delete_with_history
54 relation.timestamp = Time.now.getutc
55 relation.visible = true
59 relation.timestamp = Time.parse(pt['timestamp'])
61 relation.version = pt['version']
64 pt.find('tag').each do |tag|
65 relation.add_tag_keyval(tag['k'], tag['v'])
68 pt.find('member').each do |member|
70 logger.debug "each member"
71 raise OSM::APIBadXMLError.new("relation", pt, "The #{member['type']} is not allowed only, #{TYPES.inspect} allowed") unless TYPES.include? member['type']
72 logger.debug "after raise"
73 #member_ref = member['ref']
75 member['role'] ||= "" # Allow the upload to not include this, in which case we default to an empty string.
76 logger.debug member['role']
77 relation.add_member(member['type'], member['ref'], member['role'])
79 raise OSM::APIBadUserInput.new("Some bad xml in relation") if relation.nil?
85 doc = OSM::API.new.get_xml_doc
86 doc.root << to_xml_node()
90 def to_xml_node(user_display_name_cache = nil)
91 el1 = XML::Node.new 'relation'
92 el1['id'] = self.id.to_s
93 el1['visible'] = self.visible.to_s
94 el1['timestamp'] = self.timestamp.xmlschema
95 el1['version'] = self.version.to_s
96 el1['changeset'] = self.changeset_id.to_s
98 user_display_name_cache = {} if user_display_name_cache.nil?
100 if user_display_name_cache and user_display_name_cache.key?(self.changeset.user_id)
101 # use the cache if available
102 elsif self.changeset.user.data_public?
103 user_display_name_cache[self.changeset.user_id] = self.changeset.user.display_name
105 user_display_name_cache[self.changeset.user_id] = nil
108 if not user_display_name_cache[self.changeset.user_id].nil?
109 el1['user'] = user_display_name_cache[self.changeset.user_id]
110 el1['uid'] = self.changeset.user_id.to_s
113 self.relation_members.each do |member|
116 # # if there is a list of visible members then use that to weed out deleted segments
117 # if visible_members[member.member_type][member.member_id]
121 # otherwise, manually go to the db to check things
122 if member.member.visible?
127 e = XML::Node.new 'member'
128 e['type'] = member.member_type
129 e['ref'] = member.member_id.to_s
130 e['role'] = member.member_role
135 self.relation_tags.each do |tag|
136 e = XML::Node.new 'tag'
144 def self.find_for_nodes(ids, options = {})
148 self.with_scope(:find => { :joins => "INNER JOIN current_relation_members ON current_relation_members.id = current_relations.id", :conditions => "current_relation_members.member_type = 'node' AND current_relation_members.member_id IN (#{ids.join(',')})" }) do
149 return self.find(:all, options)
154 def self.find_for_ways(ids, options = {})
158 self.with_scope(:find => { :joins => "INNER JOIN current_relation_members ON current_relation_members.id = current_relations.id", :conditions => "current_relation_members.member_type = 'way' AND current_relation_members.member_id IN (#{ids.join(',')})" }) do
159 return self.find(:all, options)
164 def self.find_for_relations(ids, options = {})
168 self.with_scope(:find => { :joins => "INNER JOIN current_relation_members ON current_relation_members.id = current_relations.id", :conditions => "current_relation_members.member_type = 'relation' AND current_relation_members.member_id IN (#{ids.join(',')})" }) do
169 return self.find(:all, options)
174 # FIXME is this really needed?
178 self.relation_members.each do |member|
179 @members += [[member.member_type,member.member_id,member.member_role]]
188 self.relation_tags.each do |tag|
203 def add_member(type,id,role)
204 @members = Array.new unless @members
205 @members += [[type,id,role]]
208 def add_tag_keyval(k, v)
209 @tags = Hash.new unless @tags
211 # duplicate tags are now forbidden, so we can't allow values
212 # in the hash to be overwritten.
213 raise OSM::APIDuplicateTagsError.new("relation", self.id, k) if @tags.include? k
219 # updates the changeset bounding box to contain the bounding box of
220 # the element with given +type+ and +id+. this only works with nodes
221 # and ways at the moment, as they're the only elements to respond to
223 def update_changeset_element(type, id)
224 element = Kernel.const_get(type.capitalize).find(id)
225 changeset.update_bbox! element.bbox
228 def delete_with_history!(new_relation, user)
230 raise OSM::APIAlreadyDeletedError.new
233 # need to start the transaction here, so that the database can
234 # provide repeatable reads for the used-by checks. this means it
235 # shouldn't be possible to get race conditions.
236 Relation.transaction do
237 check_consistency(self, new_relation, user)
238 # This will check to see if this relation is used by another relation
239 if RelationMember.find(:first, :joins => "INNER JOIN current_relations ON current_relations.id=current_relation_members.id", :conditions => [ "visible = ? AND member_type='relation' and member_id=? ", true, self.id ])
240 raise OSM::APIPreconditionFailedError.new("The relation #{new_relation.id} is a used in another relation")
242 self.changeset_id = new_relation.changeset_id
250 def update_from(new_relation, user)
251 check_consistency(self, new_relation, user)
252 if !new_relation.preconditions_ok?
253 raise OSM::APIPreconditionFailedError.new
255 self.changeset_id = new_relation.changeset_id
256 self.changeset = new_relation.changeset
257 self.tags = new_relation.tags
258 self.members = new_relation.members
263 def create_with_history(user)
264 check_create_consistency(self, user)
265 if !self.preconditions_ok?
266 raise OSM::APIPreconditionFailedError.new
273 def preconditions_ok?
274 # These are hastables that store an id in the index of all
275 # the nodes/way/relations that have already been added.
276 # If the member is valid and visible then we add it to the
277 # relevant hash table, with the value true as a cache.
278 # Thus if you have nodes with the ids of 50 and 1 already in the
279 # relation, then the hash table nodes would contain:
280 # => {50=>true, 1=>true}
281 elements = { :node => Hash.new, :way => Hash.new, :relation => Hash.new }
282 self.members.each do |m|
283 # find the hash for the element type or die
284 hash = elements[m[0].to_sym] or return false
286 # unless its in the cache already
287 unless hash.key? m[1]
288 # use reflection to look up the appropriate class
289 model = Kernel.const_get(m[0].capitalize)
291 # get the element with that ID
292 element = model.find(m[1])
294 # and check that it is OK to use.
295 unless element and element.visible? and element.preconditions_ok?
307 # Temporary method to match interface to nodes
313 # if any members are referenced by placeholder IDs (i.e: negative) then
314 # this calling this method will fix them using the map from placeholders
316 def fix_placeholders!(id_map)
317 self.members.map! do |type, id, role|
320 new_id = id_map[type.to_sym][old_id]
321 raise "invalid placeholder" if new_id.nil?
331 def save_with_history!
332 Relation.transaction do
333 # have to be a little bit clever here - to detect if any tags
334 # changed then we have to monitor their before and after state.
343 self.relation_tags.each do |old_tag|
345 # if we can match the tags we currently have to the list
346 # of old tags, then we never set the tags_changed flag. but
347 # if any are different then set the flag and do the DB
350 # rails 2.1 dirty handling should take care of making this
351 # somewhat efficient... hopefully...
352 old_tag.v = tags[key]
353 tags_changed |= old_tag.changed?
356 # remove from the map, so that we can expect an empty map
357 # at the end if there are no new tags
361 # this means a tag was deleted
363 RelationTag.delete_all ['id = ? and k = ?', self.id, old_tag.k]
366 # if there are left-over tags then they are new and will have to
368 tags_changed |= (not tags.empty?)
370 tag = RelationTag.new
377 # reload, so that all of the members are accessible in their
381 # same pattern as before, but this time we're collecting the
382 # changed members in an array, as the bounding box updates for
383 # elements are per-element, not blanked on/off like for tags.
384 changed_members = Array.new
386 self.members.each do |m|
387 # should be: h[[m.id, m.type]] = m.role, but someone prefers arrays
388 members[[m[1], m[0]]] = m[2]
390 relation_members.each do |old_member|
391 key = [old_member.member_id.to_s, old_member.member_type]
392 if members.has_key? key
395 changed_members << key
398 # any remaining members must be new additions
399 changed_members += members.keys
401 # update the members. first delete all the old members, as the new
402 # members may be in a different order and i don't feel like implementing
403 # a longest common subsequence algorithm to optimise this.
404 members = self.members
405 RelationMember.delete_all(:id => self.id)
406 members.each_with_index do |m,i|
407 mem = RelationMember.new
408 mem.id = [self.id, i]
409 mem.member_type = m[0]
411 mem.member_role = m[2]
415 old_relation = OldRelation.from_relation(self)
416 old_relation.timestamp = t
417 old_relation.save_with_dependencies!
419 # update the bbox of the changeset and save it too.
420 # discussion on the mailing list gave the following definition for
421 # the bounding box update procedure of a relation:
423 # adding or removing nodes or ways from a relation causes them to be
424 # added to the changeset bounding box. adding a relation member or
425 # changing tag values causes all node and way members to be added to the
426 # bounding box. this is similar to how the map call does things and is
427 # reasonable on the assumption that adding or removing members doesn't
428 # materially change the rest of the relation.
430 changed_members.collect { |id,type| type == "relation" }.
431 inject(false) { |b,s| b or s }
433 if tags_changed or any_relations
434 # add all non-relation bounding boxes to the changeset
435 # FIXME: check for tag changes along with element deletions and
436 # make sure that the deleted element's bounding box is hit.
437 self.members.each do |type, id, role|
438 if type != "relation"
439 update_changeset_element(type, id)
443 # add only changed members to the changeset
444 changed_members.each do |id, type|
445 update_changeset_element(type, id)
449 # tell the changeset we updated one element only
450 changeset.add_changes! 1
452 # save the (maybe updated) changeset bounding box