6829faae06
Call Completion Supplementary Service (CCSS) added for the following switch types: ETSI PTMP, ETSI PTP, Q.SIG. Specifications: ETS 300 359 CCBS for PTMP and PTP ETS 301 065 CCNR for PTMP and PTP ECMA-186 Call Completion for Q.SIG Several support services were added to support CC: Dummy Call Reference. Q.931 REGISTER message. Dynamic expansion of the number of available timers (up to 8192). Enhanced facility message handling. Current implementation limitations preclude the following: CC service retention is not supported. Q.SIG path reservation is not supported. (closes issue #14292) Reported by: tomaso Tested by: rmudgett JIRA SWP-1493 Review: https://reviewboard.asterisk.org/r/522/ git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.4@1714 2fbb986a-6c06-0410-b554-c9c1f0a7f128
192 lines
4.8 KiB
Plaintext
192 lines
4.8 KiB
Plaintext
/*
|
|
* FSM pseudo code used in the design/implementation of the CC PTP agent.
|
|
*/
|
|
FSM CC_PTP_Agent
|
|
{
|
|
State CC_STATE_IDLE {
|
|
Stimulus CC_EVENT_AVAILABLE {
|
|
Next_State CC_STATE_PENDING_AVAILABLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Set_Selfdestruct;
|
|
}
|
|
}
|
|
State CC_STATE_PENDING_AVAILABLE {
|
|
Stimulus CC_EVENT_MSG_ALERTING {
|
|
Action Send_CC_Available(Q931_ALERTING);
|
|
Next_State CC_STATE_AVAILABLE;
|
|
}
|
|
Stimulus CC_EVENT_MSG_DISCONNECT {
|
|
Action Send_CC_Available(Q931_DISCONNECT);
|
|
Next_State CC_STATE_AVAILABLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_AVAILABLE {
|
|
/*
|
|
* For PTP mode the T_RETENTION timer is not defined. However,
|
|
* we will use it anyway in this state to protect our resources
|
|
* from leaks caused by user A not requesting CC. This timer
|
|
* should be set much longer than the PTMP network link to
|
|
* allow for variations in user A's CC offer timer.
|
|
*/
|
|
Stimulus CC_EVENT_MSG_RELEASE {
|
|
Action Stop_T_RETENTION;
|
|
Action Start_T_RETENTION;
|
|
}
|
|
Stimulus CC_EVENT_MSG_RELEASE_COMPLETE {
|
|
Action Stop_T_RETENTION;
|
|
Action Start_T_RETENTION;
|
|
}
|
|
Stimulus CC_EVENT_CC_REQUEST {
|
|
Action Pass_Up_CC_Request;
|
|
Action Stop_T_RETENTION;
|
|
Next_State CC_STATE_REQUESTED;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_RETENTION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Stop_T_RETENTION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Stop_T_RETENTION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_REQUESTED {
|
|
Stimulus CC_EVENT_CC_REQUEST_ACCEPT {
|
|
/* Start T_CCBS5/T_CCNR5 depending upon CC mode. */
|
|
Action Start_T_SUPERVISION;
|
|
Action Reset_A_Status;
|
|
Next_State CC_STATE_ACTIVATED;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Hangup_Signaling_Link;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_ACTIVATED {
|
|
Stimulus CC_EVENT_REMOTE_USER_FREE {
|
|
Action Pass_Up_A_Status_Indirect;
|
|
Test = Get_A_Status;
|
|
Test == Busy {
|
|
Next_State CC_STATE_SUSPENDED;
|
|
}
|
|
Action Send_RemoteUserFree;
|
|
Next_State CC_STATE_WAIT_CALLBACK;
|
|
}
|
|
Stimulus CC_EVENT_SUSPEND {
|
|
/* Received CCBS_T_Suspend */
|
|
Action Set_A_Status_Busy;
|
|
}
|
|
Stimulus CC_EVENT_RESUME {
|
|
/* Received CCBS_T_Resume */
|
|
Action Reset_A_Status;
|
|
}
|
|
Stimulus CC_EVENT_RECALL {
|
|
/* Received CCBS_T_Call */
|
|
Action Pass_Up_CC_Call;
|
|
Action Set_Original_Call_Parameters;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_SUPERVISION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Hangup_Signaling_Link;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Hangup_Signaling_Link;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_WAIT_CALLBACK {
|
|
Stimulus CC_EVENT_SUSPEND {
|
|
/* Received CCBS_T_Suspend */
|
|
Action Set_A_Status_Busy;
|
|
Action Pass_Up_A_Status;
|
|
Next_State CC_STATE_SUSPENDED;
|
|
}
|
|
Stimulus CC_EVENT_RECALL {
|
|
/* Received CCBS_T_Call */
|
|
Action Pass_Up_CC_Call;
|
|
Action Set_Original_Call_Parameters;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_SUPERVISION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Hangup_Signaling_Link;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Hangup_Signaling_Link;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_SUSPENDED {
|
|
Stimulus CC_EVENT_RESUME {
|
|
/* Received CCBS_T_Resume */
|
|
Action Set_A_Status_Free;
|
|
Action Pass_Up_A_Status;
|
|
Action Reset_A_Status;
|
|
Next_State CC_STATE_ACTIVATED;
|
|
}
|
|
Stimulus CC_EVENT_RECALL {
|
|
/* Received CCBS_T_Call */
|
|
Action Pass_Up_CC_Call;
|
|
Action Set_Original_Call_Parameters;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_SUPERVISION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Hangup_Signaling_Link;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Hangup_Signaling_Link;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
}
|