forked from sonic-net/sonic-swss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfake_portorch.cpp
More file actions
695 lines (552 loc) · 12.9 KB
/
Copy pathfake_portorch.cpp
File metadata and controls
695 lines (552 loc) · 12.9 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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
extern "C"
{
#include "sai.h"
}
#include <map>
#include <string>
#include "portsorch.h"
#define PORT_STAT_FLEX_COUNTER_POLLING_INTERVAL_MS 1000
#define PORT_BUFFER_DROP_STAT_POLLING_INTERVAL_MS 60000
#define QUEUE_STAT_FLEX_COUNTER_POLLING_INTERVAL_MS 10000
PortsOrch::PortsOrch(DBConnector *db, DBConnector *stateDb, vector<table_name_with_pri_t> &tableNames,
DBConnector *chassisAppDb)
: Orch(db, tableNames), m_portStateTable(stateDb, STATE_PORT_TABLE_NAME),
port_stat_manager(PORT_STAT_COUNTER_FLEX_COUNTER_GROUP, StatsMode::READ,
PORT_STAT_FLEX_COUNTER_POLLING_INTERVAL_MS, true),
port_buffer_drop_stat_manager(PORT_BUFFER_DROP_STAT_FLEX_COUNTER_GROUP, StatsMode::READ,
PORT_BUFFER_DROP_STAT_POLLING_INTERVAL_MS, true),
queue_stat_manager(QUEUE_STAT_COUNTER_FLEX_COUNTER_GROUP, StatsMode::READ,
QUEUE_STAT_FLEX_COUNTER_POLLING_INTERVAL_MS, true)
{
}
bool PortsOrch::allPortsReady()
{
return true;
}
bool PortsOrch::isInitDone()
{
return true;
}
bool PortsOrch::isConfigDone()
{
return true;
}
bool PortsOrch::isPortAdminUp(const string &alias)
{
return true;
}
std::map<string, Port> &PortsOrch::getAllPorts()
{
return m_portList;
}
bool PortsOrch::bake()
{
return true;
}
void PortsOrch::cleanPortTable(const vector<string> &keys)
{
}
bool PortsOrch::getBridgePort(sai_object_id_t id, Port &port)
{
return true;
}
bool PortsOrch::setBridgePortLearningFDB(Port &port, sai_bridge_port_fdb_learning_mode_t mode)
{
return true;
}
bool PortsOrch::getPort(string alias, Port &port)
{
if (m_portList.find(alias) == m_portList.end())
{
return false;
}
port = m_portList[alias];
return true;
}
bool PortsOrch::getPort(sai_object_id_t id, Port &port)
{
for (const auto &p : m_portList)
{
if (p.second.m_port_id == id)
{
port = p.second;
return true;
}
}
return false;
}
void PortsOrch::increasePortRefCount(const string &alias)
{
}
void PortsOrch::decreasePortRefCount(const string &alias)
{
}
bool PortsOrch::getPortByBridgePortId(sai_object_id_t bridge_port_id, Port &port)
{
return true;
}
void PortsOrch::setPort(string alias, Port port)
{
m_portList[alias] = port;
}
void PortsOrch::getCpuPort(Port &port)
{
}
bool PortsOrch::getInbandPort(Port &port)
{
return true;
}
bool PortsOrch::getVlanByVlanId(sai_vlan_id_t vlan_id, Port &vlan)
{
return true;
}
bool PortsOrch::setHostIntfsOperStatus(const Port &port, bool up) const
{
return true;
}
void PortsOrch::updateDbPortOperStatus(const Port &port, sai_port_oper_status_t status) const
{
}
bool PortsOrch::createVlanHostIntf(Port &vl, string hostif_name)
{
return true;
}
bool PortsOrch::removeVlanHostIntf(Port vl)
{
return true;
}
bool PortsOrch::createBindAclTableGroup(sai_object_id_t port_oid, sai_object_id_t acl_table_oid,
sai_object_id_t &group_oid, acl_stage_type_t acl_stage)
{
return true;
}
bool PortsOrch::unbindRemoveAclTableGroup(sai_object_id_t port_oid, sai_object_id_t acl_table_oid,
acl_stage_type_t acl_stage)
{
return true;
}
bool PortsOrch::bindAclTable(sai_object_id_t id, sai_object_id_t table_oid, sai_object_id_t &group_member_oid,
acl_stage_type_t acl_stage)
{
return true;
}
bool PortsOrch::unbindAclTable(sai_object_id_t port_oid, sai_object_id_t acl_table_oid,
sai_object_id_t acl_group_member_oid, acl_stage_type_t acl_stage)
{
return true;
}
bool PortsOrch::bindUnbindAclTableGroup(Port &port, bool ingress, bool bind)
{
return true;
}
bool PortsOrch::getPortPfc(sai_object_id_t portId, uint8_t *pfc_bitmask)
{
return true;
}
bool PortsOrch::setPortPfc(sai_object_id_t portId, uint8_t pfc_bitmask)
{
return true;
}
void PortsOrch::generateQueueMap()
{
}
void PortsOrch::generatePriorityGroupMap()
{
}
void PortsOrch::generatePortCounterMap()
{
}
void PortsOrch::generatePortBufferDropCounterMap()
{
}
void PortsOrch::refreshPortStatus()
{
}
bool PortsOrch::removeAclTableGroup(const Port &p)
{
return true;
}
bool PortsOrch::addSubPort(Port &port, const string &alias, const bool &adminUp, const uint32_t &mtu)
{
return true;
}
bool PortsOrch::removeSubPort(const string &alias)
{
return true;
}
bool PortsOrch::updateL3VniStatus(uint16_t vlan_id, bool status)
{
return true;
}
void PortsOrch::getLagMember(Port &lag, vector<Port> &portv)
{
}
void PortsOrch::updateChildPortsMtu(const Port &p, const uint32_t mtu)
{
}
bool PortsOrch::addTunnel(string tunnel, sai_object_id_t, bool learning)
{
return true;
}
bool PortsOrch::removeTunnel(Port tunnel)
{
return true;
}
bool PortsOrch::addBridgePort(Port &port)
{
return true;
}
bool PortsOrch::removeBridgePort(Port &port)
{
return true;
}
bool PortsOrch::addVlanMember(Port &vlan, Port &port, string &tagging_mode, string end_point_ip)
{
return true;
}
bool PortsOrch::removeVlanMember(Port &vlan, Port &port, string end_point_ip)
{
return true;
}
bool PortsOrch::isVlanMember(Port &vlan, Port &port, string end_point_ip)
{
return true;
}
bool PortsOrch::addVlanFloodGroups(Port &vlan, Port &port, string end_point_ip)
{
return true;
}
bool PortsOrch::removeVlanEndPointIp(Port &vlan, Port &port, string end_point_ip)
{
return true;
}
void PortsOrch::increaseBridgePortRefCount(Port &port)
{
}
void PortsOrch::decreaseBridgePortRefCount(Port &port)
{
}
bool PortsOrch::getBridgePortReferenceCount(Port &port)
{
return true;
}
bool PortsOrch::isInbandPort(const string &alias)
{
return true;
}
bool PortsOrch::setVoqInbandIntf(string &alias, string &type)
{
return true;
}
bool PortsOrch::getRecircPort(Port &p, string role)
{
return true;
}
const gearbox_phy_t *PortsOrch::getGearboxPhy(const Port &port)
{
return nullptr;
}
bool PortsOrch::getPortIPG(sai_object_id_t port_id, uint32_t &ipg)
{
return true;
}
bool PortsOrch::setPortIPG(sai_object_id_t port_id, uint32_t ipg)
{
return true;
}
bool PortsOrch::getPortOperStatus(const Port &port, sai_port_oper_status_t &status) const
{
status = port.m_oper_status;
return true;
}
std::string PortsOrch::getQueueWatermarkFlexCounterTableKey(std::string s)
{
return "";
}
std::string PortsOrch::getPriorityGroupWatermarkFlexCounterTableKey(std::string s)
{
return "";
}
std::string PortsOrch::getPriorityGroupDropPacketsFlexCounterTableKey(std::string s)
{
return "";
}
std::string PortsOrch::getPortRateFlexCounterTableKey(std::string s)
{
return "";
}
void PortsOrch::doTask()
{
}
void PortsOrch::doTask(Consumer &consumer)
{
}
void PortsOrch::doPortTask(Consumer &consumer)
{
}
void PortsOrch::doVlanTask(Consumer &consumer)
{
}
void PortsOrch::doVlanMemberTask(Consumer &consumer)
{
}
void PortsOrch::doLagTask(Consumer &consumer)
{
}
void PortsOrch::doLagMemberTask(Consumer &consumer)
{
}
void PortsOrch::doTask(NotificationConsumer &consumer)
{
}
void PortsOrch::removePortFromLanesMap(string alias)
{
}
void PortsOrch::removePortFromPortListMap(sai_object_id_t port_id)
{
}
void PortsOrch::removeDefaultVlanMembers()
{
}
void PortsOrch::removeDefaultBridgePorts()
{
}
bool PortsOrch::initializePort(Port &port)
{
return true;
}
void PortsOrch::initializePriorityGroups(Port &port)
{
}
void PortsOrch::initializePortMaximumHeadroom(Port &port)
{
}
void PortsOrch::initializeQueues(Port &port)
{
}
bool PortsOrch::addHostIntfs(Port &port, string alias, sai_object_id_t &host_intfs_id)
{
return true;
}
bool PortsOrch::setHostIntfsStripTag(Port &port, sai_hostif_vlan_tag_t strip)
{
return true;
}
bool PortsOrch::setBridgePortLearnMode(Port &port, string learn_mode)
{
return true;
}
bool PortsOrch::addVlan(string vlan)
{
return true;
}
bool PortsOrch::removeVlan(Port vlan)
{
return true;
}
bool PortsOrch::addLag(string lag, uint32_t spa_id, int32_t switch_id)
{
return true;
}
bool PortsOrch::removeLag(Port lag)
{
return true;
}
bool PortsOrch::setLagTpid(sai_object_id_t id, sai_uint16_t tpid)
{
return true;
}
bool PortsOrch::addLagMember(Port &lag, Port &port, bool enableForwarding)
{
return true;
}
bool PortsOrch::removeLagMember(Port &lag, Port &port)
{
return true;
}
bool PortsOrch::setCollectionOnLagMember(Port &lagMember, bool enableCollection)
{
return true;
}
bool PortsOrch::setDistributionOnLagMember(Port &lagMember, bool enableDistribution)
{
return true;
}
bool PortsOrch::addPort(const set<int> &lane_set, uint32_t speed, int an, string fec)
{
return true;
}
sai_status_t PortsOrch::removePort(sai_object_id_t port_id)
{
return SAI_STATUS_SUCCESS;
}
bool PortsOrch::initPort(const string &alias, const string &role, const int index, const set<int> &lane_set)
{
return true;
}
void PortsOrch::deInitPort(string alias, sai_object_id_t port_id)
{
}
bool PortsOrch::setPortAdminStatus(Port &port, bool up)
{
return true;
}
bool PortsOrch::getPortAdminStatus(sai_object_id_t id, bool &up)
{
return true;
}
bool PortsOrch::setPortMtu(sai_object_id_t id, sai_uint32_t mtu)
{
return true;
}
bool PortsOrch::setPortTpid(sai_object_id_t id, sai_uint16_t tpid)
{
return true;
}
bool PortsOrch::setPortPvid(Port &port, sai_uint32_t pvid)
{
return true;
}
bool PortsOrch::getPortPvid(Port &port, sai_uint32_t &pvid)
{
return true;
}
bool PortsOrch::setPortFec(Port &port, std::string &mode)
{
return true;
}
bool PortsOrch::setPortPfcAsym(Port &port, string pfc_asym)
{
return true;
}
bool PortsOrch::getDestPortId(sai_object_id_t src_port_id, dest_port_type_t port_type, sai_object_id_t &des_port_id)
{
return true;
}
bool PortsOrch::setBridgePortAdminStatus(sai_object_id_t id, bool up)
{
return true;
}
bool PortsOrch::isSpeedSupported(const std::string &alias, sai_object_id_t port_id, sai_uint32_t speed)
{
return true;
}
void PortsOrch::getPortSupportedSpeeds(const std::string &alias, sai_object_id_t port_id,
PortSupportedSpeeds &supported_speeds)
{
}
void PortsOrch::initPortSupportedSpeeds(const std::string &alias, sai_object_id_t port_id)
{
}
task_process_status PortsOrch::setPortSpeed(Port &port, sai_uint32_t speed)
{
return task_success;
}
bool PortsOrch::getPortSpeed(sai_object_id_t port_id, sai_uint32_t &speed)
{
return true;
}
bool PortsOrch::setGearboxPortsAttr(Port &port, sai_port_attr_t id, void *value)
{
return true;
}
bool PortsOrch::setGearboxPortAttr(Port &port, dest_port_type_t port_type, sai_port_attr_t id, void *value)
{
return true;
}
task_process_status PortsOrch::setPortAdvSpeeds(sai_object_id_t port_id, std::vector<sai_uint32_t> &speed_list)
{
return task_success;
}
bool PortsOrch::getQueueTypeAndIndex(sai_object_id_t queue_id, string &type, uint8_t &index)
{
return true;
}
void PortsOrch::generateQueueMapPerPort(const Port &port)
{
}
void PortsOrch::generatePriorityGroupMapPerPort(const Port &port)
{
}
task_process_status PortsOrch::setPortAutoNeg(sai_object_id_t id, int an)
{
return task_success;
}
bool PortsOrch::setPortFecMode(sai_object_id_t id, int fec)
{
return true;
}
task_process_status PortsOrch::setPortInterfaceType(sai_object_id_t id, sai_port_interface_type_t interface_type)
{
return task_success;
}
task_process_status PortsOrch::setPortAdvInterfaceTypes(sai_object_id_t id, std::vector<uint32_t> &interface_types)
{
return task_success;
}
void PortsOrch::updatePortOperStatus(Port &port, sai_port_oper_status_t status)
{
}
bool PortsOrch::getPortOperSpeed(const Port &port, sai_uint32_t &speed) const
{
return true;
}
void PortsOrch::updateDbPortOperSpeed(Port &port, sai_uint32_t speed)
{
}
void PortsOrch::getPortSerdesVal(const std::string &s, std::vector<uint32_t> &lane_values)
{
}
bool PortsOrch::getPortAdvSpeedsVal(const std::string &s, std::vector<uint32_t> &speed_values)
{
return true;
}
bool PortsOrch::getPortInterfaceTypeVal(const std::string &s, sai_port_interface_type_t &interface_type)
{
return true;
}
bool PortsOrch::getPortAdvInterfaceTypesVal(const std::string &s, std::vector<uint32_t> &type_values)
{
return true;
}
void PortsOrch::removePortSerdesAttribute(sai_object_id_t port_id)
{
}
bool PortsOrch::getSaiAclBindPointType(Port::Type type, sai_acl_bind_point_type_t &sai_acl_bind_type)
{
return true;
}
void PortsOrch::initGearbox()
{
}
bool PortsOrch::initGearboxPort(Port &port)
{
return true;
}
bool PortsOrch::getSystemPorts()
{
return true;
}
bool PortsOrch::addSystemPorts()
{
return true;
}
void PortsOrch::voqSyncAddLag(Port &lag)
{
}
void PortsOrch::voqSyncDelLag(Port &lag)
{
}
void PortsOrch::voqSyncAddLagMember(Port &lag, Port &port)
{
}
void PortsOrch::voqSyncDelLagMember(Port &lag, Port &port)
{
}
std::unordered_set<std::string> PortsOrch::generateCounterStats(const string &type)
{
return {};
}
void PortsOrch::doTask(swss::SelectableTimer &timer)
{
}