Skip to content

Instantly share code, notes, and snippets.

@cjcolvar
Created January 10, 2013 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjcolvar/4504645 to your computer and use it in GitHub Desktop.
Save cjcolvar/4504645 to your computer and use it in GitHub Desktop.
[23] pry(main)> doc.source_tracks(0).track_id
=> ["027df29d-454d-4d7f-9421-842da037c47f"]
[24] pry(main)> doc.streaming_tracks(0).track_id
NoMethodError: undefined method `track_id' for #<Array:0x000000073baa40>
from /home/cjcolvar/.rvm/gems/ruby-1.9.3-p194@hydrant/gems/om-1.8.0/lib/om/xml/dynamic_node.rb:51:in `method_missing'
require "om"
module Rubyhorn
class Workflow
include OM::XML::Document
set_terminology do |t|
t.root(:path=>"workflow", :xmlns=>"http://workflow.opencastproject.org", "xmlns:ns3"=>"http://mediapackage.opencastproject.org")
t.id(:path => {:attribute=>"id"})
t.state(:path => {:attribute=>"state"})
t.template
t.title
t.description
t.mediapackage(:namespace_prefix=>"ns3") {
t.id(:path => {:attribute=>"id"})
t.title(:namespace_prefix=>"ns3")
t.media(:namespace_prefix=>"ns3") {
t.track(:namespace_prefix=>"ns3") {
t.track_id(path: {attribute: "id"})
t.type(:path => {:attribute => "type"})
t.mimetype(:namespace_prefix=>"ns3")
t.url(:namespace_prefix=>"ns3")
t.duration(:namespace_prefix=>"ns3")
t.checksum(namespace_prefix: 'ns3')
t.tags(:namespace_prefix=>"ns3") {
t.tag(:namespace_prefix=>"ns3")
t.quality(namespace_prefix: 'ns3',
path: 'tag[starts-with(., "quality")]')
}
t.audio(namespace_prefix: 'ns3') {
t.a_codec(namespace_prefix: 'ns3', path: 'encoder/@type')
t.a_bitrate(namespace_prefix: 'ns3', path: 'bitrate')
}
t.video(namespace_prefix: 'ns3') {
t.v_codec(namespace_prefix: 'ns3', path: 'encoder/@type')
t.v_bitrate(namespace_prefix: 'ns3', path: 'bitrate')
t.resolution(namespace_prefix: 'ns3')
}
}
}
t.metadata(:namespace_prefix=>"ns3") {
t.catalog(:namespace_prefix=>"ns3") {
t.mimetype(:namespace_prefix=>"ns3")
t.url(:namespace_prefix=>"ns3")
}
}
t.attachments(:namespace_prefix=>"ns3"){
t.attachment(:namespace_prefix=>"ns3"){
t.type(:path => {:attribute => "type"})
t.url(:namespace_prefix=>"ns3")
}
}
}
t.operations {
t.operation {
t.operation_state(:path => {:attribute=>"state"})
t.configurations {
t.configuration
}
}
}
# Breakdown some tracks using refs and proxies so that you can use
# them to get to key points of the XML
t.streaming_tracks(path: 'workflow/ns3:mediapackage/ns3:media/ns3:track[@type="presenter/delivery" and ns3:tags/ns3:tag="streaming"]')
t.source_tracks(ref: [:mediapackage, :media, :track],
attributes: {type: "presenter/source"})
t.thumbnail_images(ref: [:mediapackage, :attachments, :attachment],
attributes: {type: "presenter/search+preview"})
t.poster_images(ref: [:mediapackage, :attachments, :attachment],
attributes: {type: "presenter/player+preview"})
t.configurations
t.errors
t.feed_preview(:path=>'workflow/ns3:mediapackage/ns3:attachments/ns3:attachment[@type="presenter/feed+preview"]/ns3:url')
t.search_preview(:path=>'workflow/ns3:mediapackage/ns3:attachments/ns3:attachment[@type="presenter/search+preview"]/ns3:url')
t.player_preview(:path=>'workflow/ns3:mediapackage/ns3:attachments/ns3:attachment[@type="presenter/player+preview"]/ns3:url')
t.streaming_mime_type(:path=>'workflow/ns3:mediapackage/ns3:media/ns3:track[@type="presenter/delivery" and tags/tag = "streaming"]/ns3:mimetype')
t.streaming_url(:path=>'workflow/ns3:mediapackage/ns3:media/ns3:track[@type="presenter/delivery" and ns3:tags/ns3:tag = "streaming"]/ns3:url')
t.streaming_resolution(:path=>'workflow/ns3:mediapackage/ns3:media/ns3:track[@type="presenter/delivery" and ns3:tags/ns3:tag = "streaming"]/ns3:video/ns3:resolution')
t.http_mime_type(:path=>'workflow/ns3:mediapackage/ns3:media/ns3:track[@type="presenter/delivery" and not(tags/tag = "streaming") and tags/tag = "engage"]/ns3:mimetype')
t.http_url(:path=>'workflow/ns3:mediapackage/ns3:media/ns3:track[@type="presenter/delivery" and not(tags/tag = "streaming") and tags/tag = "engage"]/ns3:url')
end
# Given a list of symbols from the terminology it will return the
# nodeset
#
# For example
# workflow.nodeset_for(:source_tracks)
#
# should return a list of the files used to generate derivatives
def nodeset_for(symbols)
ng_xml.xpath(self.class.terminology.xpath_for(symbols))
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment