[go: up one dir, main page]

Menu

[r955]: / trunk / VTS3 / ScriptPacket.cpp  Maximize  Restore  History

Download this file

245 lines (194 with data), 4.5 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// ScriptPacket.cpp: implementation of the ScriptPacket class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "VTS.h"
#include "ScriptDocument.h"
#include "ScriptParmList.h"
#include "ScriptPacket.h"
#include "ScriptKeywords.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//
// ScriptPacketExpr::ScriptPacketExpr
//
ScriptPacketExpr::ScriptPacketExpr( void )
: exprKeyword(0)
, exprIsData(false)
, exprOp(0)
, exprValue("")
{
m_fNoneValue = false;
}
bool ScriptPacketExpr::IsAssignment()
{
return exprOp == '>>';
}
bool ScriptPacketExpr::IsDontCare()
{
return exprOp == '?=';
}
//
// ScriptPacketExpr::~ScriptPacketExpr
//
ScriptPacketExpr::~ScriptPacketExpr( void )
{
}
//
// ScriptPacketExprList::ScriptPacketExprList
//
ScriptPacketExprList::ScriptPacketExprList( ScriptPacketExprListPtr prev )
: listPrevious(prev)
{
}
//
// ScriptPacketExprList::~ScriptPacketExprList
//
ScriptPacketExprList::~ScriptPacketExprList()
{
for (POSITION pos = GetHeadPosition(); pos; )
delete (ScriptPacketExprPtr)GetNext( pos );
}
//
// ScriptPacketExprList::Append
//
void ScriptPacketExprList::Append( ScriptPacketExprPtr spep )
{
// add to the end of the list
AddTail( spep );
}
//
// ScriptPacketExprList::Remove
//
void ScriptPacketExprList::Remove( int indx )
{
POSITION pos = FindIndex( indx )
;
ASSERT( pos != NULL );
delete (ScriptPacketExprPtr)GetAt( pos );
RemoveAt( pos );
}
//
// ScriptPacketExprList::Length
//
int ScriptPacketExprList::Length( void )
{
return CList<ScriptPacketExprPtr,ScriptPacketExprPtr>::GetCount();
}
//
// ScriptPacketExprList::Child
//
ScriptPacketExprPtr ScriptPacketExprList::Child( int indx )
{
POSITION pos = FindIndex( indx )
;
if (pos != NULL )
return (ScriptPacketExprPtr)GetAt( pos );
else
return 0;
}
//
// ScriptPacketExprList::Find
//
ScriptPacketExprPtr ScriptPacketExprList::Find( int keyword )
{
for (POSITION pos = GetHeadPosition(); pos; ) {
ScriptPacketExprPtr spep = (ScriptPacketExprPtr)GetNext( pos );
if (spep->exprKeyword == keyword)
return spep;
}
// if there is a previous packet, continue search
return (listPrevious ? listPrevious->Find( keyword ) : 0);
}
//
// ScriptPacketExprList::FirstData
//
int ScriptPacketExprList::FirstData( void )
{
int len = Length()
;
for (int i = 0; i < len; i++) {
ScriptPacketExprPtr spep = (ScriptPacketExprPtr)GetAt( FindIndex( i ) );
if (spep->exprIsData)
return i;
}
// failed
return -1;
}
ScriptCommand::ScriptCommand( ScriptBaseType type )
: m_pcmdNext(0), m_pcmdPass(0), m_pcmdFail(0), m_nCaseLevel(0)
{
baseType = type;
baseStatus = 0;
}
ScriptCommand::~ScriptCommand( void )
{
}
//
// ScriptPacket::ScriptPacket
//
//ScriptPacket::ScriptPacket( ScriptPacketType type, ScriptPacketSubtype subtype, ScriptPacketPtr prev )
// : packetType(type)
// , packetSubtype(subtype)
// , packetExprList( prev ? &prev->packetExprList : 0 )
// , packetNext(0), packetDelay( kMaxPacketDelay )
// , packetPass(0), packetFail(0)
ScriptPacket::ScriptPacket( ScriptPacketType type, ScriptPacketSubtype subtype, ScriptPacketPtr prev )
: ScriptCommand( ScriptBase::scriptPacket)
, packetType(type)
, packetSubtype(subtype)
, packetExprList( prev ? &prev->packetExprList : 0 )
, bpacketNotExpect(false) //Added by Zhu Zhenhua, 2003-11-25
// , packetDelay( kMaxPacketDelay ) madanner 6/03
, packetDelay( kDefaultPacketDelay )
{
// tell the base class this is a packet
// baseType = scriptPacket;
CString str;
if ( prev != NULL && prev->baseType == ScriptBase::scriptPacket )
{
// have to do this... otherwise multiple ors and ands look like: Or Expect, Or Or Expect, And Or Or Expect
str = prev->baseLabel.Find("Expect", 0) == -1 ? "Send" : "Expect";
m_pcmdMake = prev->m_pcmdMake;
}
else
{
m_pcmdMake = NULL;
str = "";
}
// set the label based on the type
switch (packetSubtype) {
case rootPacket:
switch (packetType) {
case sendPacket:
baseLabel = "Send";
break;
case expectPacket:
baseLabel = "Expect";
break;
}
break;
case andPacket:
baseLabel = "And " + str;
break;
case orPacket:
baseLabel = "Or " + str;
break;
}
// set the image, clear the status
baseImage = 13;
baseStatus = 0;
}
//
// ScriptPacket::~ScriptPacket
//
ScriptPacket::~ScriptPacket( void )
{
}
bool ScriptPacket::Execute(CString * pstrError)
{
return false;
}