Class: Adhearsion::Call
- Includes:
- Celluloid, HasGuardedHandlers
- Defined in:
- lib/adhearsion/call.rb
Overview
Encapsulates call-related data and behavior.
Direct Known Subclasses
Constant Summary collapse
- Hangup =
Class.new Adhearsion::Error
- CommandTimeout =
Class.new Adhearsion::Error
- ExpiredError =
Class.new Celluloid::DeadActorError
Instance Attribute Summary collapse
-
#after_hangup_lifetime ⇒ Integer
The number of seconds after the call is hung up that the controller will remain active.
-
#auto_hangup ⇒ true, false
Whether or not the call should be automatically hung up after executing its controller.
-
#controllers ⇒ Array<Adhearsion::CallController>
readonly
The set of call controllers executing on the call.
-
#end_code ⇒ String
readonly
The reason code for the call ending.
-
#end_reason ⇒ Symbol
readonly
The reason for the call ending.
-
#end_time ⇒ Time
readonly
The time at which the call began.
-
#start_time ⇒ Time
readonly
The time at which the call began.
-
#variables ⇒ Hash<String => String>
readonly
A collection of SIP headers set during the call.
Class Method Summary collapse
Instance Method Summary collapse
- #accept(headers = nil) ⇒ Object
-
#active? ⇒ Boolean
If the call is currently active or not (disconnected).
- #answer(headers = nil) ⇒ Object
- #commands ⇒ Object
- #deliver_message(message) ⇒ Object (also: #<<)
-
#domain ⇒ String?
The domain on which the call resides.
-
#duration ⇒ Float
The call duration until the current time, or until the call was disconnected, whichever is earlier.
-
#execute_controller(controller = nil, completion_callback = nil) { ... } ⇒ Celluloid::ThreadHandle
Execute a call controller asynchronously against this call.
-
#from ⇒ String
The value of the From header from the signaling protocol.
- #hangup(headers = nil) ⇒ Object
-
#id ⇒ String?
(also: #to_s)
The globally unique ID for the call.
-
#initialize(offer = nil) ⇒ Call
constructor
A new instance of Call.
-
#join(target, options = {}) ⇒ Hash
Joins this call to another call or a mixer.
- #mute ⇒ Object
- #on_end(&block) ⇒ Object
-
#on_joined(target = nil, &block) ⇒ Object
Registers a callback for when this call is joined to another call or a mixer.
-
#on_unjoined(target = nil, &block) ⇒ Object
Registers a callback for when this call is unjoined from another call or a mixer.
-
#peers ⇒ Hash<String => Adhearsion::Call>
Hash of joined peers.
-
#redirect(to, headers = nil) ⇒ Object
Redirect the call to some other target system.
-
#register_event_handler(*guards) {|Object| ... } ⇒ String
Register a handler for events on this call.
- #reject(reason = :busy, headers = nil) ⇒ Object
-
#remove_tag(label) ⇒ Object
Remove a label.
-
#send_message(body, options = {}) ⇒ Object
Sends a message to the caller.
-
#tag(label) ⇒ Object
Tag a call with an arbitrary label.
-
#tagged_with?(label) ⇒ Boolean
Establish if the call is tagged with the provided label.
-
#tags ⇒ Array
The set of labels with which this call has been tagged.
- #terminating! ⇒ Object
-
#terminating? ⇒ Boolean
If the call is currently terminating/terminated.
-
#to ⇒ String
The value of the To header from the signaling protocol.
-
#unjoin(target = nil) ⇒ Object
Unjoins this call from another call or a mixer.
- #unmute ⇒ Object
-
#uri ⇒ String?
The uri at which the call resides.
-
#wait_for_end ⇒ Symbol
Wait for the call to end.
- #wait_for_joined(expected_target) ⇒ Object
- #wait_for_unjoined(expected_target) ⇒ Object
Methods included from Celluloid
Constructor Details
#initialize(offer = nil) ⇒ Call
Returns a new instance of Call.
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/adhearsion/call.rb', line 77 def initialize(offer = nil) register_initial_handlers @offer = nil @tags = [] @commands = CommandRegistry.new @variables = HashWithIndifferentAccess.new @controllers = [] @end_reason = nil @end_code = nil @end_blocker = Celluloid::Condition.new @peers = {} @duration = nil @auto_hangup = true @after_hangup_lifetime = nil @call_terminating = false self << offer if offer end |
Instance Attribute Details
#after_hangup_lifetime ⇒ Integer
Returns the number of seconds after the call is hung up that the controller will remain active.
58 59 60 |
# File 'lib/adhearsion/call.rb', line 58 def after_hangup_lifetime @after_hangup_lifetime end |
#auto_hangup ⇒ true, false
Returns whether or not the call should be automatically hung up after executing its controller.
55 56 57 |
# File 'lib/adhearsion/call.rb', line 55 def auto_hangup @auto_hangup end |
#controllers ⇒ Array<Adhearsion::CallController> (readonly)
Returns the set of call controllers executing on the call.
43 44 45 |
# File 'lib/adhearsion/call.rb', line 43 def controllers @controllers end |
#end_code ⇒ String (readonly)
Returns the reason code for the call ending.
40 41 42 |
# File 'lib/adhearsion/call.rb', line 40 def end_code @end_code end |
#end_reason ⇒ Symbol (readonly)
Returns the reason for the call ending.
37 38 39 |
# File 'lib/adhearsion/call.rb', line 37 def end_reason @end_reason end |
#end_time ⇒ Time (readonly)
Returns the time at which the call began. For inbound calls this is the time at which the call was offered to Adhearsion. For outbound calls it is the time at which the remote party answered.
52 53 54 |
# File 'lib/adhearsion/call.rb', line 52 def end_time @end_time end |
#start_time ⇒ Time (readonly)
Returns the time at which the call began. For inbound calls this is the time at which the call was offered to Adhearsion. For outbound calls it is the time at which the remote party answered.
49 50 51 |
# File 'lib/adhearsion/call.rb', line 49 def start_time @start_time end |
#variables ⇒ Hash<String => String> (readonly)
Returns a collection of SIP headers set during the call.
46 47 48 |
# File 'lib/adhearsion/call.rb', line 46 def variables @variables end |
Class Method Details
.uri(transport, id, domain) ⇒ Object
68 69 70 71 72 73 74 75 |
# File 'lib/adhearsion/call.rb', line 68 def self.uri(transport, id, domain) return nil unless id s = "" s << transport << ":" if transport s << id s << "@" << domain if domain s end |
Instance Method Details
#accept(headers = nil) ⇒ Object
323 324 325 326 327 |
# File 'lib/adhearsion/call.rb', line 323 def accept(headers = nil) @accept_command ||= write_and_await_response Punchblock::Command::Accept.new(:headers => headers) rescue Punchblock::ProtocolError => e abort e end |
#active? ⇒ Boolean
Returns if the call is currently active or not (disconnected).
319 320 321 |
# File 'lib/adhearsion/call.rb', line 319 def active? !end_reason end |
#answer(headers = nil) ⇒ Object
329 330 331 332 333 |
# File 'lib/adhearsion/call.rb', line 329 def answer(headers = nil) write_and_await_response Punchblock::Command::Answer.new(:headers => headers) rescue Punchblock::ProtocolError => e abort e end |
#commands ⇒ Object
197 198 199 |
# File 'lib/adhearsion/call.rb', line 197 def commands @commands.clone end |
#deliver_message(message) ⇒ Object Also known as: <<
189 190 191 192 193 194 |
# File 'lib/adhearsion/call.rb', line 189 def () logger.debug "Receiving message: #{.inspect}" catching_standard_errors do trigger_handler :event, , broadcast: true, exception_callback: ->(e) { Adhearsion::Events.trigger :exception, [e, logger] } end end |
#domain ⇒ String?
Returns The domain on which the call resides.
108 109 110 |
# File 'lib/adhearsion/call.rb', line 108 def domain offer.domain if offer end |
#duration ⇒ Float
Returns The call duration until the current time, or until the call was disconnected, whichever is earlier.
261 262 263 264 265 266 267 268 269 |
# File 'lib/adhearsion/call.rb', line 261 def duration if @duration @duration elsif @start_time Time.now - @start_time else 0.0 end end |
#execute_controller(controller = nil, completion_callback = nil) { ... } ⇒ Celluloid::ThreadHandle
Execute a call controller asynchronously against this call.
To block and wait until the controller completes, call ‘#join` on the result of this method.
551 552 553 554 555 556 |
# File 'lib/adhearsion/call.rb', line 551 def execute_controller(controller = nil, completion_callback = nil, &block) raise ArgumentError, "Cannot supply a controller and a block at the same time" if controller && block_given? controller ||= CallController.new current_actor, &block logger.info "Executing controller #{controller.inspect}" controller.bg_exec completion_callback end |
#from ⇒ String
Returns the value of the From header from the signaling protocol.
66 |
# File 'lib/adhearsion/call.rb', line 66 delegate :from, to: :offer, allow_nil: true |
#hangup(headers = nil) ⇒ Object
362 363 364 365 366 367 368 369 |
# File 'lib/adhearsion/call.rb', line 362 def hangup(headers = nil) return false unless active? logger.info "Hanging up" @end_reason = true write_and_await_response Punchblock::Command::Hangup.new(:headers => headers) rescue Punchblock::ProtocolError => e abort e end |
#id ⇒ String? Also known as: to_s
Returns The globally unique ID for the call.
100 101 102 |
# File 'lib/adhearsion/call.rb', line 100 def id offer.target_call_id if offer end |
#join(target, options = {}) ⇒ Hash
Joins this call to another call or a mixer
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
# File 'lib/adhearsion/call.rb', line 386 def join(target, = {}) logger.debug "Joining to #{target}" joined_condition = CountDownLatch.new(1) on_joined target do joined_condition.countdown! end unjoined_condition = CountDownLatch.new(1) on_unjoined target do unjoined_condition.countdown! end on_end do joined_condition.countdown! unjoined_condition.countdown! end command = Punchblock::Command::Join.new .merge((target)) write_and_await_response command {command: command, joined_condition: joined_condition, unjoined_condition: unjoined_condition} rescue Punchblock::ProtocolError => e abort e end |
#mute ⇒ Object
464 465 466 467 468 |
# File 'lib/adhearsion/call.rb', line 464 def mute write_and_await_response Punchblock::Command::Mute.new rescue Punchblock::ProtocolError => e abort e end |
#on_end(&block) ⇒ Object
300 301 302 |
# File 'lib/adhearsion/call.rb', line 300 def on_end(&block) register_event_handler Punchblock::Event::End, &block end |
#on_joined(target = nil, &block) ⇒ Object
Registers a callback for when this call is joined to another call or a mixer
278 279 280 281 282 |
# File 'lib/adhearsion/call.rb', line 278 def on_joined(target = nil, &block) register_event_handler Punchblock::Event::Joined, *guards_for_target(target) do |event| block.call event end end |
#on_unjoined(target = nil, &block) ⇒ Object
Registers a callback for when this call is unjoined from another call or a mixer
291 292 293 |
# File 'lib/adhearsion/call.rb', line 291 def on_unjoined(target = nil, &block) register_event_handler Punchblock::Event::Unjoined, *guards_for_target(target), &block end |
#peers ⇒ Hash<String => Adhearsion::Call>
Hash of joined peers
158 159 160 |
# File 'lib/adhearsion/call.rb', line 158 def peers @peers.clone end |
#redirect(to, headers = nil) ⇒ Object
Redirect the call to some other target system.
If the redirect is successful, the call will be released from the telephony engine and Adhearsion will lose control of the call.
Note that for the common case, this will result in a SIP 302 or SIP REFER, which provides the caller with a new URI to dial. As such, the redirect target cannot be any telephony-engine specific address (such as sofia/gateway, agent/101, or SIP/mypeer); instead it should be a fully-qualified external SIP URI that the caller can independently reach.
356 357 358 359 360 |
# File 'lib/adhearsion/call.rb', line 356 def redirect(to, headers = nil) write_and_await_response Punchblock::Command::Redirect.new(to: to, headers: headers) rescue Punchblock::ProtocolError => e abort e end |
#register_event_handler(*guards) {|Object| ... } ⇒ String
Register a handler for events on this call. Note that Adhearsion::Call implements the has-guarded-handlers API, and all of its methods are available. Specifically, all Adhearsion events are available on the ‘:event` channel.
185 186 187 |
# File 'lib/adhearsion/call.rb', line 185 def register_event_handler(*guards, &block) register_handler :event, *guards, &block end |
#reject(reason = :busy, headers = nil) ⇒ Object
335 336 337 338 339 340 |
# File 'lib/adhearsion/call.rb', line 335 def reject(reason = :busy, headers = nil) write_and_await_response Punchblock::Command::Reject.new(:reason => reason, :headers => headers) Adhearsion::Events.trigger_immediately :call_rejected, call: current_actor, reason: reason rescue Punchblock::ProtocolError => e abort e end |
#remove_tag(label) ⇒ Object
Remove a label
141 142 143 |
# File 'lib/adhearsion/call.rb', line 141 def remove_tag(label) @tags.reject! { |tag| tag == label } end |
#send_message(body, options = {}) ⇒ Object
Sends a message to the caller
521 522 523 524 |
# File 'lib/adhearsion/call.rb', line 521 def (body, = {}) logger.debug "Sending message: #{body}" client. id, domain, body, end |
#tag(label) ⇒ Object
Tag a call with an arbitrary label
131 132 133 134 |
# File 'lib/adhearsion/call.rb', line 131 def tag(label) abort ArgumentError.new "Tag must be a String or Symbol" unless [String, Symbol].include?(label.class) @tags << label end |
#tagged_with?(label) ⇒ Boolean
Establish if the call is tagged with the provided label
150 151 152 |
# File 'lib/adhearsion/call.rb', line 150 def tagged_with?(label) @tags.include? label end |
#tags ⇒ Array
Returns The set of labels with which this call has been tagged.
122 123 124 |
# File 'lib/adhearsion/call.rb', line 122 def @tags.clone end |
#terminating! ⇒ Object
304 305 306 307 |
# File 'lib/adhearsion/call.rb', line 304 def terminating! logger.debug "Call is terminating" @call_terminating = true end |
#terminating? ⇒ Boolean
Returns if the call is currently terminating/terminated.
312 313 314 |
# File 'lib/adhearsion/call.rb', line 312 def terminating? !active? || @call_terminating end |
#to ⇒ String
Returns the value of the To header from the signaling protocol.
63 |
# File 'lib/adhearsion/call.rb', line 63 delegate :to, to: :offer, allow_nil: true |
#unjoin(target = nil) ⇒ Object
Unjoins this call from another call or a mixer
418 419 420 421 422 423 424 |
# File 'lib/adhearsion/call.rb', line 418 def unjoin(target = nil) logger.info "Unjoining from #{target}" command = Punchblock::Command::Unjoin.new (target) write_and_await_response command rescue Punchblock::ProtocolError => e abort e end |
#unmute ⇒ Object
470 471 472 473 474 |
# File 'lib/adhearsion/call.rb', line 470 def unmute write_and_await_response Punchblock::Command::Unmute.new rescue Punchblock::ProtocolError => e abort e end |
#uri ⇒ String?
Returns The uri at which the call resides.
115 116 117 |
# File 'lib/adhearsion/call.rb', line 115 def uri self.class.uri(transport, id, domain) end |
#wait_for_end ⇒ Symbol
Wait for the call to end. Returns immediately if the call has already ended, else blocks until it does so.
166 167 168 169 170 171 172 |
# File 'lib/adhearsion/call.rb', line 166 def wait_for_end if end_reason end_reason else @end_blocker.wait end end |
#wait_for_joined(expected_target) ⇒ Object
450 451 452 453 454 455 |
# File 'lib/adhearsion/call.rb', line 450 def wait_for_joined(expected_target) target = nil until target == expected_target do target = wait :joined end end |
#wait_for_unjoined(expected_target) ⇒ Object
457 458 459 460 461 462 |
# File 'lib/adhearsion/call.rb', line 457 def wait_for_unjoined(expected_target) target = nil until target == expected_target do target = wait :unjoined end end |