[Home]

Summary:ASTERISK-19548: Ability to run dialplan on callee channel before making call upon Dial()
Reporter:Mark Murawski (kobaz)Labels:
Date Opened:2012-03-15 12:46:46Date Closed:2012-04-27 19:36:19
Priority:MinorRegression?
Status:Closed/CompleteComponents:Applications/app_dial Core/PBX
Versions:SVN Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:PreDial
 
 Say SIP/abc is calling SIP/def
 You have: Dial(SIP/def)
 SIP/def-123234 is created.  But how can you tell that from dialplan?

 You can use a pickup macro: M or U options to Dial(), but you have to wait till pickup to know.
 'PreDial' new option 'b' to Dial(), will let you run dialplan on the newly created channel before it is connected to the end-device.

 New way:
 Dial(SIP/def,,b(predial,s,1))
 Dialplan will run on SIP/def-123234 and allow you to know right away what channel will be used, and you can set specific variables on that channel.

You can also run dialplan on the caller channel (option 'B') right before the dial, which is a great place to do a last microsecond UNLOCK to ensure good channel behavior.
Example:  LOCK(foo)
         do stuff
         UNLOCK(foo)
         Dial(SIP/abc)

With this above example, say SIP/123 and SIP/234 are running this dialplan.

SIP/123 locks foo
SIP/123 unlocks foo
due to some cpu load issue, SIP/123 takes its time getting to Dial(SIP/abc) and doesn't do it right away

Meanwhile... SIP/234 zips right by, lock 'foo' is already unlocked, it grabs the lock, does its thing and it gets to Dial(SIP/abc).  SIP/123 wakes up and finally gets to the Dial().  Now you have two channels dialing SIP/abc when there was supposed to be one.

If your intention is to ensure that Dial(SIP/abc) is only done one at a time, you may have unexpected behavior lurking.

New way:
 LOCK(foo)
 do stuff
 Dial(SIP/abc,,B(unlock,s,1))

context unlock {
 s => {
   UNLOCK(foo);
 }
}

Now, under no circumstances can this dialplan be run through and execute the Dial unless lock 'foo' is released.

Obviously this doesn't ensure that you're not calling SIP/abc more than once (you would need more dialplan logic for that), but it will allow a dialplan coder to also put the Dial in the locked section to ensure tighter control.
Comments:By: Richard Mudgett (rmudgett) 2012-04-27 18:05:50.344-0500

This feature increases the usefulness of PICKUPMARK.