-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransqueue.cpp
More file actions
119 lines (104 loc) · 3.28 KB
/
transqueue.cpp
File metadata and controls
119 lines (104 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*******************************************************************
*
* DESCRIPTION: class TransQueue
*
* AUTHOR: Umar Farooq
*
* EMAIL: ufarooq@sce.carleton.ca
*
* DATE: 17/10/2003
*
*******************************************************************/
/** include files **/
#include "transqueue.h" // class Transqueue
#include "message.h" // class ExternalMessage, InternalMessage
#include "mainsimu.h" // MainSimulator::Instance().getParameter( ... )
/** public functions **/
/*******************************************************************
* Function Name: TransQueue
* Description: Constructor
********************************************************************/
Transqueue::Transqueue( const string &name )
: Atomic( name )
, inApp( addInputPort( "inApp" ) )
, position( addInputPort( "position" ) )
, inGateway( addInputPort( "inGateway" ) )
, done( addInputPort( "done" ) )
, outCObject( addOutputPort( "outCObject" ) )
, outSObject( addOutputPort( "outSObject" ) )
, location( addOutputPort( "location" ) )
, preparationTime( 0, 0, 10, 0 )
{
string time( MainSimulator::Instance().getParameter( description(), "preparation" ) ) ;
if( time != "" )
preparationTime = time ;
}
/*******************************************************************
* Function Name: initFunction
********************************************************************/
Model &Transqueue::initFunction()
{
elements.erase( elements.begin(), elements.end() ) ;
return *this ;
}
/*******************************************************************
* Function Name: externalFunction
********************************************************************/
Model &Transqueue::externalFunction( const ExternalMessage &msg )
{
if( msg.port() == inApp )
{
j.objid = msg.value();
j.portid = 1;
elements.push_back( j ) ;
if( elements.size() == 1 )
holdIn( active, preparationTime );
}
if( msg.port() == inGateway )
{
j.objid = msg.value();
j.portid = 2;
elements.push_back( j ) ;
if( elements.size() == 1 )
holdIn( active, preparationTime );
}
if( msg.port() == position )
{
j.objid = msg.value();
j.portid = 3;
elements.push_back( j ) ;
if( elements.size() == 1 )
holdIn( active, preparationTime );
}
if( msg.port() == done )
{
elements.pop_front() ;
if( !elements.empty() )
holdIn( active, preparationTime );
}
return *this;
}
/*******************************************************************
* Function Name: internalFunction
********************************************************************/
Model &Transqueue::internalFunction( const InternalMessage & )
{
passivate();
return *this ;
}
/*******************************************************************
* Function Name: outputFunction
********************************************************************/
Model &Transqueue::outputFunction( const InternalMessage &msg )
{
if(elements.front().portid == 1){
sendOutput( msg.time(), outCObject, elements.front().objid ) ;
}
else if(elements.front().portid == 2){
sendOutput( msg.time(), outSObject, elements.front().objid ) ;
}
else if(elements.front().portid == 3){
sendOutput( msg.time(), location, elements.front().objid ) ;
}
return *this ;
}