blob: cbbbaada8031cf54f359df9c585dba07e0fb1bfd [file] [log] [blame]
Shad Ansari7193ae22018-08-08 22:23:18 +00001/*
2 Copyright (C) 2018 Open Networking Foundation
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include <iostream>
19#include <memory>
20#include <string>
Shad Ansari627b5782018-08-13 22:49:32 +000021#include <unistd.h>
Shad Ansari7193ae22018-08-08 22:23:18 +000022
23#include "Queue.h"
24#include <iostream>
25#include <sstream>
26
27#include "core.h"
Shad Ansari627b5782018-08-13 22:49:32 +000028#include "state.h"
Shad Ansari7193ae22018-08-08 22:23:18 +000029
Shad Ansari627b5782018-08-13 22:49:32 +000030State state;
31
32void* RunSim(void *) {
Craig Lutgen88a22ad2018-10-04 12:30:46 -050033
34 state.activate();
35
Shad Ansari627b5782018-08-13 22:49:32 +000036 while (!state.is_connected()) {
37 sleep(5);
38 }
39
40 // Send Olt up indication
41 {
42 openolt::Indication ind;
43 openolt::OltIndication* olt_ind = new openolt::OltIndication;
44 olt_ind->set_oper_state("up");
45 ind.set_allocated_olt_ind(olt_ind);
46 std::cout << "olt indication, oper_state:" << ind.olt_ind().oper_state() << std::endl;
47 oltIndQ.push(ind);
48 }
49
50 // TODO - Add interface and onu indication events
51}
52
53Status Enable_(int argc, char *argv[]) {
54 pthread_t simThread;
55
56 pthread_create(&simThread, NULL, RunSim, NULL);
Shad Ansari7193ae22018-08-08 22:23:18 +000057 return Status::OK;
58}
59
60Status Disable_() {
61 return Status::OK;
62}
63
64Status Reenable_() {
65 return Status::OK;
66}
67
68Status EnablePonIf_(uint32_t intf_id) {
69 return Status::OK;
70}
71
72Status DisableUplinkIf_(uint32_t intf_id) {
73 return Status::OK;
74}
75
76Status EnableUplinkIf_(uint32_t intf_id) {
77 return Status::OK;
78}
79
80Status DisablePonIf_(uint32_t intf_id) {
81 return Status::OK;
82}
83
84Status ActivateOnu_(uint32_t intf_id, uint32_t onu_id,
85 const char *vendor_id, const char *vendor_specific, uint32_t pir) {
86 return Status::OK;
87}
88
89Status DeactivateOnu_(uint32_t intf_id, uint32_t onu_id,
90 const char *vendor_id, const char *vendor_specific) {
91 return Status::OK;
92}
93
94Status DeleteOnu_(uint32_t intf_id, uint32_t onu_id,
95 const char *vendor_id, const char *vendor_specific) {
96 return Status::OK;;
97}
98
99Status OmciMsgOut_(uint32_t intf_id, uint32_t onu_id, const std::string pkt) {
100 return Status::OK;
101}
102
103Status OnuPacketOut_(uint32_t intf_id, uint32_t onu_id, const std::string pkt) {
104 return Status::OK;
105}
106
107Status UplinkPacketOut_(uint32_t intf_id, const std::string pkt) {
108 return Status::OK;
109}
110
111Status FlowAdd_(uint32_t onu_id,
112 uint32_t flow_id, const std::string flow_type,
113 uint32_t access_intf_id, uint32_t network_intf_id,
114 uint32_t gemport_id, uint32_t priority_value,
115 const ::openolt::Classifier& classifier,
116 const ::openolt::Action& action) {
117 return Status::OK;
118}
119
120Status SchedAdd_(int intf_id, int onu_id, int agg_port_id) {
121 return Status::OK;
122}
123
124Status SchedRemove_(int intf_id, int onu_id, int agg_port_id) {
125 return Status::OK;
126}
Shad Ansari627b5782018-08-13 22:49:32 +0000127
128Status FlowRemove_(uint32_t flow_id, const std::string flow_type) {
129 return Status::OK;
130}
131
Nicolas Palpacuer6a63ea92018-09-05 17:21:37 -0400132void stats_collection() {
Shad Ansari627b5782018-08-13 22:49:32 +0000133}
Nicolas Palpacuerdff96792018-09-06 14:59:32 -0400134
135Status GetDeviceInfo_(openolt::DeviceInfo* deviceInfo) {
136 return Status::OK;
137}