File: actions.hpp

package info (click to toggle)
sip-tester 1%3A3.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,872 kB
  • ctags: 2,681
  • sloc: cpp: 16,880; ansic: 2,138; sh: 412; makefile: 168
file content (229 lines) | stat: -rw-r--r-- 6,881 bytes parent folder | download | duplicates (2)
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
/*
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  Authors : Benjamin GAUTHIER - 24 Mar 2004
 *            Joseph BANINO
 *            Olivier JACQUES
 *            Richard GAYRAUD
 *            From Hewlett Packard Company.
 */

#ifndef _CACTIONS
#define _CACTIONS

#include "variables.hpp"
#include "message.hpp"
class CSample;

#ifdef PCAPPLAY
#include "prepare_pcap.h"
#endif

#define MAX_ACTION_MESSAGE 3

class CAction
{
  public:
    enum T_ActionType
    {
      E_AT_NO_ACTION = 0,
      E_AT_ASSIGN_FROM_REGEXP,
      E_AT_CHECK,
      E_AT_ASSIGN_FROM_VALUE,
      E_AT_ASSIGN_FROM_SAMPLE,
      E_AT_ASSIGN_FROM_STRING,
      E_AT_ASSIGN_FROM_INDEX,
      E_AT_ASSIGN_FROM_GETTIMEOFDAY,
      E_AT_JUMP,
      E_AT_LOOKUP,
      E_AT_INSERT,
      E_AT_REPLACE,
      E_AT_PAUSE_RESTORE,
      E_AT_LOG_TO_FILE,
      E_AT_LOG_WARNING,
      E_AT_LOG_ERROR,
      E_AT_EXECUTE_CMD,
      E_AT_EXEC_INTCMD,
      E_AT_VAR_ADD,
      E_AT_VAR_SUBTRACT,
      E_AT_VAR_MULTIPLY,
      E_AT_VAR_DIVIDE,
      E_AT_VAR_TEST,
      E_AT_VAR_TO_DOUBLE,
      E_AT_VAR_STRCMP,
      E_AT_VAR_TRIM,
      E_AT_VERIFY_AUTH,
      E_AT_SET_DEST,
      E_AT_CLOSE_CON,
#ifdef PCAPPLAY
      E_AT_PLAY_PCAP_AUDIO,
      E_AT_PLAY_PCAP_VIDEO,
#endif
      E_AT_NB_ACTION
    };

    enum T_LookingPlace
    {
      E_LP_MSG = 0,
      E_LP_HDR,
      E_LP_BODY,
      E_LP_VAR,
      E_LP_NB_LOOKING_PLACE
    };

    enum T_Comparator
    {
      E_C_EQ,
      E_C_NE,
      E_C_GT,
      E_C_LT,
      E_C_GEQ,
      E_C_LEQ,
      E_C_NB_COMPARATOR
    };

    enum T_IntCmdType
    {
      E_INTCMD_INVALID = 0,
      E_INTCMD_STOPCALL,
      E_INTCMD_STOP_ALL,
      E_INTCMD_STOP_NOW
    };

    typedef struct _T_Action
    {
    } T_Action;

    void afficheInfo();
    const char *comparatorToString(T_Comparator comp);
    bool compare(VariableTable *variableTable);

    T_ActionType   getActionType();
    T_VarType      getVarType();
    T_LookingPlace getLookingPlace();
    T_Comparator   getComparator();
    bool           getCheckIt();
    bool           getCheckItInverse();
    bool           getCaseIndep();
    bool           getHeadersOnly();
    int            getVarId();
    int            getVarInId();
    int            getVarIn2Id();
    int            getOccurence();
    char*          getLookingChar();
    char*          getRegularExpression();
    SendingMessage *getMessage(int n = 0);  /* log specific function  */
    T_IntCmdType   getIntCmd();   /* exec specific function */
#ifdef PCAPPLAY
    pcap_pkts     *getPcapPkts(); /* send_packets specific function */
#endif

    void setActionType   (T_ActionType   P_value);
    void setLookingPlace (T_LookingPlace P_value);
    void setComparator   (T_Comparator   P_value);
    void setCheckIt      (bool           P_value);
    void setCheckItInverse (bool           P_value);
    void setVarId        (int            P_value);
    void setVarInId      (int            P_value);
    void setVarIn2Id      (int            P_value);
    void setLookingChar  (char*          P_value);
    void setAction       (CAction        P_action);
    void setCaseIndep    (bool           P_action);
    void setOccurence   (int            P_value);
    void setHeadersOnly  (bool           P_value);
    void setScenario     (scenario *     P_scenario);
    void setRegExp       (char*		 P_value);  /* ereg specific function. */
    int  executeRegExp   (char* P_string, VariableTable *P_callVarTable);
    void setMessage      (char*          P_value, int n = 0);  /* log specific function  */
    void setIntCmd       (T_IntCmdType   P_type );  /* exec specific function */
    void setDistribution (CSample *      P_value);  /* sample specific function  */
    void setDoubleValue  (double         P_value);  /* assign value specific function  */
    void setStringValue  (char *         P_value);  /* strcmp value specific function  */
#ifdef PCAPPLAY
    void setPcapArgs     (char *         P_value);  /* send_packets specific function */
    void setPcapArgs     (pcap_pkts   *  P_value);  /* send_packets specific function */
#endif

    void setSubVarId     (int P_value);
    int  getSubVarId     (int P_index);
    void setNbSubVarId   (int P_value);
    int  getNbSubVarId   ();
    int* getSubVarId() ;
    CSample *getDistribution ();  /* sample specific function  */
    double getDoubleValue ();  /* assign value specific function  */
    char * getStringValue ();  /* strcmp specific function  */

    CAction(scenario *scenario);
    ~CAction();

  private:
      T_ActionType   M_action;
      T_LookingPlace M_lookingPlace;
      T_Comparator   M_comp;
      bool           M_checkIt;
      bool           M_checkItInverse;
      bool           M_caseIndep;
      bool           M_headersOnly;
      int            M_varId;
      int            M_varInId;
      int            M_varIn2Id;
      int            M_occurence;
      int            M_nbSubVarId;
      int            M_maxNbSubVarId;
      int *          M_subVarId;

      char*          M_lookingChar;
      /* log specific member  */
      SendingMessage *M_message[MAX_ACTION_MESSAGE];
      char *	     M_message_str[MAX_ACTION_MESSAGE];
      /* exec specific member */
      T_IntCmdType   M_IntCmd;
      /* sample specific member. */
      CSample	     *M_distribution;
      /* assign value specific member. */
      double         M_doubleValue;
      /* strcmp specific member. */
      char *         M_stringValue;
      /* what scenario we belong to. */
      scenario *     M_scenario;
      /* Our regular expression. */
      bool	     M_regExpSet;
      regex_t        M_internalRegExp;
      char *         M_regularExpression;
#ifdef PCAPPLAY
      /* pcap specific member */
      pcap_pkts  *   M_pcapArgs;
#endif
      void setSubString(char** P_target, char* P_source, int P_start, int P_stop);
};

class CActions
{
  public:
    void afficheInfo();
    void setAction(CAction *P_action);
    void reset();
    int  getActionSize();
    CAction* getAction(int i);
    CActions();
    ~CActions();
  
  private:
    CAction ** M_actionList;
    int        M_nbAction;
    int        M_currentSettedAction;
};

#endif