-
Notifications
You must be signed in to change notification settings - Fork 350
/
Copy pathprimitives.cpp
114 lines (90 loc) · 2.87 KB
/
primitives.cpp
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
/* Copyright 2013-present Barefoot Networks, 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.
*/
/*
* Antonin Bas ([email protected])
*
*/
#include <bm/bm_sim/actions.h>
#include <bm/bm_sim/counters.h>
#include <bm/bm_sim/extern.h>
#include <bm/bm_sim/meters.h>
#include <bm/bm_sim/packet.h>
#include <string>
#include <thread>
using namespace bm;
class modify_field : public ActionPrimitive<Field &, const Data &> {
void operator ()(Field &f, const Data &d) {
f.set(d);
}
};
REGISTER_PRIMITIVE(modify_field);
class drop : public ActionPrimitive<> {
void operator ()() {
}
};
REGISTER_PRIMITIVE(drop);
class add_to_field : public ActionPrimitive<Field &, const Data &> {
void operator ()(Field &f, const Data &d) {
f.add(f, d);
}
};
REGISTER_PRIMITIVE(add_to_field);
class generate_digest : public ActionPrimitive<const Data &, const Data &> {
void operator ()(const Data &receiver, const Data &learn_id) {
// stub only
(void)receiver;
(void)learn_id;
}
};
REGISTER_PRIMITIVE(generate_digest);
class execute_meter
: public ActionPrimitive<MeterArray &, const Data &, Field &> {
void operator ()(MeterArray &meter_array, const Data &idx, Field &dst) {
dst.set(meter_array.execute_meter(get_packet(), idx.get_uint()));
}
};
REGISTER_PRIMITIVE(execute_meter);
class count : public ActionPrimitive<CounterArray &, const Data &> {
void operator ()(CounterArray &counter_array, const Data &idx) {
counter_array.get_counter(idx.get_uint()).increment_counter(get_packet());
}
};
REGISTER_PRIMITIVE(count);
class register_write
: public ActionPrimitive<RegisterArray &, const Data &, const Data &> {
void operator ()(RegisterArray &dst, const Data &idx, const Data &src) {
dst[idx.get_uint()].set(src);
}
};
REGISTER_PRIMITIVE(register_write);
class ignore_string : public ActionPrimitive<const std::string &> {
void operator ()(const std::string &s) {
(void)s;
}
};
REGISTER_PRIMITIVE(ignore_string);
class RegisterSpin : public ActionPrimitive<RegisterArray &, const Data &> {
void operator ()(RegisterArray ®ister_array, const Data &ts) {
register_array.at(0).set(ts);
std::this_thread::sleep_for(std::chrono::milliseconds(ts.get_uint()));
}
};
REGISTER_PRIMITIVE(RegisterSpin);
// one dummy extern
class DummyExtern : public ExternType {
public:
BM_EXTERN_ATTRIBUTES { }
};
BM_REGISTER_EXTERN(DummyExtern);