osmo-ttcn3-hacks/ISUP_Q.762_CNL113365_LATEST/demo/ISUP_Mapping.ttcn

129 lines
4.6 KiB
Plaintext

///////////////////////////////////////////////////////////////////////////////
//
// Copyright Test Competence Center (TCC) ETH 2006
// //
// The copyright to the computer program(s) herein is the property of TCC. //
// The program(s) may be used and/or copied only with the written permission //
// of TCC or in accordance with the terms and conditions stipulated in the //
// agreement/contract under which the program(s) have been supplied //
///////////////////////////////////////////////////////////////////////////////
//
// File: ISUP_Mapping.ttcn
// Rev: R7D
// Prodnr: CNL 113 365
// Updated: 2006-05-10
// Contact: http://ttcn.ericsson.se
///////////////////////////////////////////////////////////////////////////////
module ISUP_Mapping
{
import from MTP3asp_PortType all;
import from MTP3asp_Types all;
import from ISUP_Types all;
group Types
{
type record MSC_ISUP_MTP3_parameters
{
MTP3_Field_sio sio,
integer opc,
integer dpc,
integer sls
}
group PortTypes
{
//*************************************************************************
//* ISUP port types *
//*************************************************************************
type port MTP3asp_ISUP_PT message
{
inout PDU_ISUP;
} with {extension "internal"}
type port MTC_ISUP_PT message // Coordination message
{
inout charstring;
inout octetstring;
} with {extension "internal"}
}//end group PortTypes
group ComponentTypes
{
//*************************************************************************
//* ISUP Component types *
//*************************************************************************
type component ISUP_CT
{
//========================Component constants===========================
//========================Component variables===========================
var PDU_ISUP v_PDU_ISUP;
//========================Component Timers-=============================
//========================Component Port Declarations====================
port MTC_ISUP_PT MTC_ISUP_PORT; //up
port MTP3asp_ISUP_PT MTP3_ISUP_PORT; //down
} // end component type definition
//*************************************************************************
//* ISUP EncDec component *
//*************************************************************************
type component ISUP_EncDec_CT
{
//========================Component Port Declarations====================
port MTP3asp_ISUP_PT MTP3_ISUP_PORT; //<= SP_PT=_PT
port MTP3asp_PT MTP3_PORT;
} // end component type definition
}//end group ComponentTypes
}//end group Types
//*************************************************************************
//* ISUP EncDec component behaviour *
//*************************************************************************
function f_ISUP_EncDecComp_Behaviour
( MSC_ISUP_MTP3_parameters pl_address_ISUP ) runs on ISUP_EncDec_CT
{
var ASP_MTP3_TRANSFERind vl_ASP_MTP3_TRANSFERind;
var PDU_ISUP vl_PDU_ISUP;
pl_address_ISUP.sio.si := '0101'B;
while (true)
{
alt
{
[] MTP3_ISUP_PORT.receive ( PDU_ISUP : ?) -> value vl_PDU_ISUP
{
MTP3_PORT.send (t_ASP_MTP3_TRANSFERreq
(pl_address_ISUP.sio,
pl_address_ISUP.opc,
pl_address_ISUP.dpc,
pl_address_ISUP.sls,
enc_PDU_ISUP(vl_PDU_ISUP)));
repeat;
}
// receive message from below (to be decoded)
[] MTP3_PORT.receive (tr_ASP_MTP3_TRANSFERind_sio
(pl_address_ISUP.sio.ni,
?, //priority: no filtering
pl_address_ISUP.sio.si,
?,
?,
?,
? )) -> value vl_ASP_MTP3_TRANSFERind
{
MTP3_ISUP_PORT.send (dec_PDU_ISUP(vl_ASP_MTP3_TRANSFERind.data));
repeat;
}
[] MTP3_PORT.receive (t_ASP_MTP3_TRANSFERind( ?, ?, ?, ?, ? ))
{ log("Invalid SIO: MESSAGE dropped!!!"); }
} //end of alt
} // end while
} // end of f_ISUP_EncDecComp_Behaviour
}