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'].classify, 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.downcase
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("relation", new_relation.id)
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 rel = 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 relation #{rel.id}.") unless rel.nil?
242 self.changeset_id = new_relation.changeset_id
250 def update_from(new_relation, user)
251 check_consistency(self, new_relation, user)
252 unless new_relation.preconditions_ok?
253 raise OSM::APIPreconditionFailedError.new("Cannot update relation #{self.id}: data or member data is invalid.")
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 unless self.preconditions_ok?
266 raise OSM::APIPreconditionFailedError.new("Cannot create relation: data or member data is invalid.")
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
285 hash = elements[m[0].downcase.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)
290 # get the element with that ID
291 element = model.find(m[1])
293 # and check that it is OK to use.
294 unless element and element.visible? and element.preconditions_ok?
306 # Temporary method to match interface to nodes
312 # if any members are referenced by placeholder IDs (i.e: negative) then
313 # this calling this method will fix them using the map from placeholders
315 def fix_placeholders!(id_map)
316 self.members.map! do |type, id, role|
319 new_id = id_map[type.downcase.to_sym][old_id]
320 raise "invalid placeholder" if new_id.nil?
330 def save_with_history!
331 Relation.transaction do
332 # have to be a little bit clever here - to detect if any tags
333 # changed then we have to monitor their before and after state.
341 tags = self.tags.clone
342 self.relation_tags.each do |old_tag|
344 # if we can match the tags we currently have to the list
345 # of old tags, then we never set the tags_changed flag. but
346 # if any are different then set the flag and do the DB
349 tags_changed |= (old_tag.v != tags[key])
351 # remove from the map, so that we can expect an empty map
352 # at the end if there are no new tags
356 # this means a tag was deleted
360 # if there are left-over tags then they are new and will have to
362 tags_changed |= (not tags.empty?)
363 RelationTag.delete_all(:id => self.id)
364 self.tags.each do |k,v|
365 logger.info "TAG added: #{k} -> #{v}"
366 tag = RelationTag.new
373 # same pattern as before, but this time we're collecting the
374 # changed members in an array, as the bounding box updates for
375 # elements are per-element, not blanked on/off like for tags.
376 changed_members = Array.new
378 self.members.each do |m|
379 # should be: h[[m.id, m.type]] = m.role, but someone prefers arrays
380 members[[m[1], m[0]]] = m[2]
382 relation_members.each do |old_member|
383 key = [old_member.member_id.to_s, old_member.member_type]
384 if members.has_key? key
387 changed_members << key
390 # any remaining members must be new additions
391 changed_members += members.keys
393 # update the members. first delete all the old members, as the new
394 # members may be in a different order and i don't feel like implementing
395 # a longest common subsequence algorithm to optimise this.
396 members = self.members
397 RelationMember.delete_all(:id => self.id)
398 members.each_with_index do |m,i|
399 mem = RelationMember.new
400 mem.id = [self.id, i]
401 mem.member_type = m[0]
403 mem.member_role = m[2]
407 old_relation = OldRelation.from_relation(self)
408 old_relation.timestamp = t
409 old_relation.save_with_dependencies!
411 # update the bbox of the changeset and save it too.
412 # discussion on the mailing list gave the following definition for
413 # the bounding box update procedure of a relation:
415 # adding or removing nodes or ways from a relation causes them to be
416 # added to the changeset bounding box. adding a relation member or
417 # changing tag values causes all node and way members to be added to the
418 # bounding box. this is similar to how the map call does things and is
419 # reasonable on the assumption that adding or removing members doesn't
420 # materially change the rest of the relation.
422 changed_members.collect { |id,type| type == "relation" }.
423 inject(false) { |b,s| b or s }
425 if tags_changed or any_relations
426 # add all non-relation bounding boxes to the changeset
427 # FIXME: check for tag changes along with element deletions and
428 # make sure that the deleted element's bounding box is hit.
429 self.members.each do |type, id, role|
430 if type != "Relation"
431 update_changeset_element(type, id)
435 # add only changed members to the changeset
436 changed_members.each do |id, type|
437 if type != "Relation"
438 update_changeset_element(type, id)
443 # tell the changeset we updated one element only
444 changeset.add_changes! 1
446 # save the (maybe updated) changeset bounding box