Class: ONVIF::PtzAction::ContinuousMove

Inherits:
Action
  • Object
show all
Defined in:
lib/ruby_onvif_client/ptz/continuous_move.rb

Instance Method Summary collapse

Methods inherited from Action

#attribute, #callback, #create_event_onvif_message, #create_media_onvif_message, #create_ptz_onvif_message, #initialize, #send_message, #value

Constructor Details

This class inherits a constructor from ONVIF::Action

Instance Method Details

#run(options, cb) ⇒ Object

options 的结构

{

profile_token: "xxxxxxx",//[ReferenceToken] A reference to the MediaProfile where the operation should take place.
velocity: {  //optional
    pan_tilt: { //optional
        x: 1, //[float]
        y: 2, //[float]
        space: "http://www.onvif.org/ver10/tptz/PanTiltSpaces/PositionGenericSpace", //[anyURI]
        // http://www.onvif.org/ver10/tptz/PanTiltSpaces/PositionGenericSpace
        // http://www.onvif.org/ver10/tptz/PanTiltSpaces/TranslationGenericSpace
        // http://www.onvif.org/ver10/tptz/PanTiltSpaces/VelocityGenericSpace
        // http://www.onvif.org/ver10/tptz/PanTiltSpaces/GenericSpeedSpace
    },
    zoom: { //optional
        x: 1,//[float]
        space: "http://www.onvif.org/ver10/tptz/PanTiltSpaces/PositionGenericSpace",//[anyURI]
    }
},
timeout: '' //optional [duration]

}



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/ruby_onvif_client/ptz/continuous_move.rb', line 26

def run options, cb
    message = create_ptz_onvif_message namespaces: {:'xmlns:sch' => 'http://www.onvif.org/ver10/schema'}
    message.body =  ->(xml) do
        xml.wsdl(:ContinuousMove) do
            xml.wsdl :ProfileToken, options[:profile_token]
            unless options[:velocity].nil?
                xml.wsdl(:Velocity) do
                    unless options[:velocity][:pan_tilt].nil?
                        xml.sch :PanTilt, {
                            "x" => options[:velocity][:pan_tilt][:x],
                            "y" => options[:velocity][:pan_tilt][:y],
                            "space" => options[:velocity][:pan_tilt][:space]
                        }
                    end
                    unless options[:velocity][:zoom].nil?
                        xml.sch :Zoom, {
                            "x" => options[:velocity][:zoom][:x],
                            "space" => options[:velocity][:zoom][:space]
                        }
                    end
                end
            end
            xml.wsdl :Timeout, options[:timeout] unless options[:timeout].nil?
        end
    end
    send_message message do |success, result|
        callback cb, success, result
    end
end