Class: CPEE::NewInstance
- Inherits:
-
Riddl::Implementation
- Object
- Riddl::Implementation
- CPEE::NewInstance
- Defined in:
- lib/cpee/implementation.rb
Overview
}}}
Instance Method Summary collapse
Instance Method Details
#path(e) ⇒ Object
{{{
248 249 250 251 252 253 254 255 |
# File 'lib/cpee/implementation.rb', line 248 def path(e) ret = [] until e.qname.name == 'properties' ret << (e.class == XML::Smart::Dom::Attribute ? '@' : '') + e.qname.name e = e.parent end File.join(*ret.reverse) end |
#response ⇒ Object
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/cpee/implementation.rb', line 257 def response opts = @a[0] redis = opts[:redis] doc = XML::Smart::open_unprotected(opts[:properties_init]) doc.register_namespace 'p', 'http://cpee.org/ns/properties/2.0' name = @p[0].value id = CPEE::Persistence::new_object(opts) uuid = SecureRandom.uuid instance = CPEE::Persistence::OBJ + ':' + id.to_s redis.multi do |multi| multi.zadd('instances',id,id) doc.root.find(PROPERTIES_PATHS_FULL.join(' | ')).each do |e| if e.class == XML::Smart::Dom::Element && e.element_only? val = e.find('*').map { |f| f.dump }.join multi.set(File.join(instance, path(e)), val) else multi.set(File.join(instance, path(e)), e.text) end end doc.root.find(PROPERTIES_PATHS_INDEX_UNORDERED.join(' | ')).each do |e| p = path(e) multi.sadd(File.join(instance, File.dirname(p)), File.basename(p)) end doc.root.find(PROPERTIES_PATHS_INDEX_ORDERED.join(' | ')).each_with_index do |e,i| p = path(e) multi.zadd(File.join(instance, File.dirname(p)), i, File.basename(p)) end Dir[File.join(opts[:notifications_init],'*','subscription.xml')].each do |f| XML::Smart::open_unprotected(f) do |doc| doc.register_namespace 'np', 'http://riddl.org/ns/common-patterns/notifications-producer/2.0' key = File.basename(File.dirname(f)) url = doc.find('string(/np:subscription/@url)') multi.sadd(CPEE::Persistence::OBJ + ":#{id}/handlers",key) multi.set(CPEE::Persistence::OBJ + ":#{id}/handlers/#{key}/url",url) doc.find('/np:subscription/np:topic/*').each do |e| c = File.join(e.parent.attributes['id'],e.qname.name,e.text) multi.sadd(CPEE::Persistence::OBJ + ":#{id}/handlers/#{key}",c) multi.sadd(CPEE::Persistence::OBJ + ":#{id}/handlers/#{c}",key) end end rescue nil # all the ones that are not ok, are ignored end multi.set(File.join(instance, 'attributes', 'uuid'), uuid) multi.zadd(File.join(instance, 'attributes'), -2, 'uuid') multi.set(File.join(instance, 'attributes', 'info'), name) multi.zadd(File.join(instance, 'attributes'), -1, 'info') multi.set(File.join(instance, 'state', '@changed'), Time.now.xmlschema(3)) end content = { :state => 'ready', :attributes => CPEE::Persistence::extract_list(id,opts,'attributes').to_h } CPEE::Message::send(:event,'state/change',File.join(opts[:url],'/'),id,uuid,name,content,redis) @headers << Riddl::Header.new("CPEE-INSTANCE", id.to_s) @headers << Riddl::Header.new("CPEE-INSTANCE-URL", File.join(opts[:url].to_s,id.to_s,'/')) @headers << Riddl::Header.new("CPEE-INSTANCE-UUID", uuid) Riddl::Parameter::Simple.new("id", id.to_s) end |