[asterisk-dev] [Code Review]: Add replacement for SIP_CAUSE
wdoekes
reviewboard at asterisk.org
Fri Mar 23 01:59:02 CDT 2012
> On March 22, 2012, 3:01 p.m., Kevin Fleming wrote:
> > Would anyone object to calling this DIAL_CAUSE? PVT_CAUSE isn't really very user friendly at all. I understand that this could end up being set via other means than Dial(), but DIAL_CAUSE seems closer to what an end-user would expect it to be named.
Wouldn't that be DIAL_RESULT then? DIAL_CAUSE makes it sound like it's something completely different from HANGUPCAUSE, while it is just a different representation.
- wdoekes
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviewboard.asterisk.org/r/1822/#review5862
-----------------------------------------------------------
On March 20, 2012, 10:43 a.m., opticron wrote:
>
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviewboard.asterisk.org/r/1822/
> -----------------------------------------------------------
>
> (Updated March 20, 2012, 10:43 a.m.)
>
>
> Review request for Asterisk Developers.
>
>
> Summary
> -------
>
> Add PVT_CAUSE as a drop-in replacement for SIP_CAUSE that does not incur the overhead of the MASTER_CHANNEL dialplan function. This feature uses control frames to pass the data and creates a mechanism by which any channel driver can report cause information. This implementation includes only SIP, but implementations for other channel drivers will be available in the next month.
>
>
> This addresses bug SWP-4221.
> https://issues.asterisk.org/jira/browse/SWP-4221
>
>
> Diffs
> -----
>
> trunk/apps/app_dial.c 359891
> trunk/channels/chan_sip.c 359891
> trunk/include/asterisk/frame.h 359891
> trunk/main/channel.c 359891
> trunk/main/features.c 359891
>
> Diff: https://reviewboard.asterisk.org/r/1822/diff
>
>
> Testing
> -------
>
> Verified that this functions identically to SIP_CAUSE in single-channel dials, forked dials, and forked dials behind a local dial.
>
> Sample dialplan:
> [foo]
> exten => s,1,Dial(SIP/bar)
>
> exten => h,1,noop()
> exten => h,n,set(PVT_CAUSE_STRING=${HASHKEYS(PVT_CAUSE)})
> ; start loop
> exten => h,n(pvt_begin),noop()
>
> ; check exit condition (no more array to check)
> exten => h,n,gotoif($[${LEN(${PVT_CAUSE_STRING})} = 0]?pvt_exit)
>
> ; pull the next item
> exten => h,n,set(ARRAY(item)=${PVT_CAUSE_STRING})
> exten => h,n,set(PVT_CAUSE_STRING=${PVT_CAUSE_STRING:${LEN(${item})}})
>
> ; display the channel ID and cause code
> exten => h,n,noop(got channel ID ${item} with pvt cause ${HASH(PVT_CAUSE,${item})})
>
> ; check exit condition (no more array to check)
> exten => h,n,gotoif($[${LEN(${PVT_CAUSE_STRING})} = 0]?pvt_exit)
>
> ; we still have entries to process, so strip the leading comma
> exten => h,n,set(PVT_CAUSE_STRING=${PVT_CAUSE_STRING:1})
> ; go back to the beginning of the loop
> exten => h,n,goto(pvt_begin)
> exten => h,n(pvt_exit),noop(All PVT_CAUSE entries processed)
>
>
> Thanks,
>
> opticron
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-dev/attachments/20120323/e75597bc/attachment-0001.htm>
More information about the asterisk-dev
mailing list