summaryrefslogtreecommitdiffstats
path: root/src/stateless/messaging/trex_stateless_messaging.cpp
blob: 257de168a3e8b9a278d057dfc5cd1efa734adb52 (plain)
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
/*
 Itay Marom
 Hanoch Haim
 Cisco Systems, Inc.
*/

/*
Copyright (c) 2015-2015 Cisco Systems, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <trex_stateless_messaging.h>
#include <trex_stateless_dp_core.h>
#include <trex_streams_compiler.h>
#include <trex_stateless.h>
#include <bp_sim.h>

#include <string.h>

/*************************
  start traffic message
 ************************/ 
TrexStatelessDpStart::TrexStatelessDpStart(uint8_t port_id, int event_id, TrexStreamsCompiledObj *obj, double duration) {
    m_port_id = port_id;
    m_event_id = event_id;
    m_obj = obj;
    m_duration = duration;
}


/**
 * clone for DP start message
 * 
 */
TrexStatelessCpToDpMsgBase *
TrexStatelessDpStart::clone() {

    TrexStreamsCompiledObj *new_obj = m_obj->clone();

    TrexStatelessCpToDpMsgBase *new_msg = new TrexStatelessDpStart(m_port_id, m_event_id, new_obj, m_duration);

    return new_msg;
}

TrexStatelessDpStart::~TrexStatelessDpStart() {
    if (m_obj) {
        delete m_obj;
    }
}

bool
TrexStatelessDpStart::handle(TrexStatelessDpCore *dp_core) {

    /* staet traffic */
    dp_core->start_traffic(m_obj, m_duration,m_event_id);

    return true;
}

/*************************
  stop traffic message
 ************************/ 
bool
TrexStatelessDpStop::handle(TrexStatelessDpCore *dp_core) {


    dp_core->stop_traffic(m_port_id,m_stop_only_for_event_id,m_event_id);
    return true;
}


void TrexStatelessDpStop::on_node_remove(){
    if ( m_core ) {
        assert(m_core->m_non_active_nodes>0);
        m_core->m_non_active_nodes--;
    }
}


TrexStatelessCpToDpMsgBase * TrexStatelessDpPause::clone(){

    TrexStatelessDpPause *new_msg = new TrexStatelessDpPause(m_port_id);
    return new_msg;
}


bool TrexStatelessDpPause::handle(TrexStatelessDpCore *dp_core){
    dp_core->pause_traffic(m_port_id);
    return (true);
}



TrexStatelessCpToDpMsgBase * TrexStatelessDpResume::clone(){
    TrexStatelessDpResume *new_msg = new TrexStatelessDpResume(m_port_id);
    return new_msg;
}

bool TrexStatelessDpResume::handle(TrexStatelessDpCore *dp_core){
    dp_core->resume_traffic(m_port_id);
    return (true);
}


/**
 * clone for DP stop message
 * 
 */
TrexStatelessCpToDpMsgBase *
TrexStatelessDpStop::clone() {
    TrexStatelessDpStop *new_msg = new TrexStatelessDpStop(m_port_id);

    new_msg->set_event_id(m_event_id);
    new_msg->set_wait_for_event_id(m_stop_only_for_event_id);
    /* set back pointer to master */
    new_msg->set_core_ptr(m_core);

    return new_msg;
}



TrexStatelessCpToDpMsgBase * 
TrexStatelessDpQuit::clone(){

    TrexStatelessCpToDpMsgBase *new_msg = new TrexStatelessDpQuit();

    return new_msg;
}


bool TrexStatelessDpQuit::handle(TrexStatelessDpCore *dp_core){
    
    /* quit  */
    dp_core->quit_main_loop();
    return (true);
}

bool TrexStatelessDpCanQuit::handle(TrexStatelessDpCore *dp_core){

    if ( dp_core->are_all_ports_idle() ){
        /* if all ports are idle quit now */
        set_quit(true);
    }
    return (true);
}

TrexStatelessCpToDpMsgBase * 
TrexStatelessDpCanQuit::clone(){

    TrexStatelessCpToDpMsgBase *new_msg = new TrexStatelessDpCanQuit();

    return new_msg;
}

/*************************
  update traffic message
 ************************/ 
bool
TrexStatelessDpUpdate::handle(TrexStatelessDpCore *dp_core) {
    dp_core->update_traffic(m_port_id, m_factor);

    return true;
}

TrexStatelessCpToDpMsgBase *
TrexStatelessDpUpdate::clone() {
    TrexStatelessCpToDpMsgBase *new_msg = new TrexStatelessDpUpdate(m_port_id, m_factor);

    return new_msg;
}

/************************* messages from DP to CP **********************/
bool
TrexDpPortEventMsg::handle() {
    TrexStatelessPort *port = get_stateless_obj()->get_port_by_id(m_port_id);
    port->get_dp_events().handle_event(m_event_type, m_thread_id, m_event_id);

    return (true);
}