blob: 01e09a0ce175b45a5dd938ccbdf4949810284cc4 [file] [log] [blame]
Shad Ansarib7b0ced2018-05-11 21:53:32 +00001/*
Nicolas Palpacuerb78def42018-06-07 12:55:26 -04002 Copyright (C) 2018 Open Networking Foundation
Shad Ansarib7b0ced2018-05-11 21:53:32 +00003
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#ifndef OPENOLT_CORE_H_
19#define OPENOLT_CORE_H_
20
21#include <grpc++/grpc++.h>
22using grpc::Status;
23#include <openolt.grpc.pb.h>
24
Shad Ansariedef2132018-08-10 22:14:50 +000025#include "state.h"
26
Shad Ansari627b5782018-08-13 22:49:32 +000027#define COLLECTION_PERIOD 15
28
Shad Ansariedef2132018-08-10 22:14:50 +000029extern State state;
30
Shad Ansari627b5782018-08-13 22:49:32 +000031Status Enable_(int argc, char *argv[]);
Shad Ansarib7b0ced2018-05-11 21:53:32 +000032Status ActivateOnu_(uint32_t intf_id, uint32_t onu_id,
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -070033 const char *vendor_id, const char *vendor_specific, uint32_t pir);
Jonathan Davis70c21812018-07-19 15:32:10 -040034Status DeactivateOnu_(uint32_t intf_id, uint32_t onu_id,
35 const char *vendor_id, const char *vendor_specific);
36Status DeleteOnu_(uint32_t intf_id, uint32_t onu_id,
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -070037 const char *vendor_id, const char *vendor_specific);
Shad Ansarib7b0ced2018-05-11 21:53:32 +000038Status EnablePonIf_(uint32_t intf_id);
Nicolas Palpacuer05ea0ea2018-07-06 11:47:21 -040039Status DisablePonIf_(uint32_t intf_id);
Nicolas Palpacuere3fc0d22018-08-02 16:51:05 -040040Status EnableUplinkIf_(uint32_t intf_id);
41Status DisableUplinkIf_(uint32_t intf_id);
Craig Lutgen88a22ad2018-10-04 12:30:46 -050042unsigned NumNniIf_();
43unsigned NumPonIf_();
Shad Ansarib7b0ced2018-05-11 21:53:32 +000044Status OmciMsgOut_(uint32_t intf_id, uint32_t onu_id, const std::string pkt);
Craig Lutgen967a1d02018-11-27 10:41:51 -060045Status OnuPacketOut_(uint32_t intf_id, uint32_t onu_id, uint32_t port_no, const std::string pkt);
Craig Lutgen88a22ad2018-10-04 12:30:46 -050046Status ProbeDeviceCapabilities_();
47Status ProbePonIfTechnology_();
Nicolas Palpacuerb78def42018-06-07 12:55:26 -040048Status UplinkPacketOut_(uint32_t intf_id, const std::string pkt);
Craig Lutgen967a1d02018-11-27 10:41:51 -060049Status FlowAdd_(int32_t access_intf_id, int32_t onu_id, int32_t uni_id, uint32_t port_no,
Shad Ansarib7b0ced2018-05-11 21:53:32 +000050 uint32_t flow_id, const std::string flow_type,
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -070051 int32_t alloc_id, int32_t network_intf_id,
52 int32_t gemport_id, const ::openolt::Classifier& classifier,
Craig Lutgen967a1d02018-11-27 10:41:51 -060053 const ::openolt::Action& action, int32_t priority_value, uint64_t cookie);
Nicolas Palpacueredfaa0c2018-07-05 15:05:27 -040054Status FlowRemove_(uint32_t flow_id, const std::string flow_type);
Nicolas Palpacuere3fc0d22018-08-02 16:51:05 -040055Status Disable_();
56Status Reenable_();
Nicolas Palpacuerdff96792018-09-06 14:59:32 -040057Status GetDeviceInfo_(openolt::DeviceInfo* device_info);
Girish Gowdru7c4ec2d2018-10-25 00:29:54 -070058Status CreateTconts_(const openolt::Tconts *tconts);
59Status RemoveTconts_(const openolt::Tconts *tconts);
Craig Lutgen967a1d02018-11-27 10:41:51 -060060uint32_t GetPortNum_(uint32_t flow_id);
Nicolas Palpacuere3fc0d22018-08-02 16:51:05 -040061
Nicolas Palpacuer6a63ea92018-09-05 17:21:37 -040062void stats_collection();
Shad Ansarib7b0ced2018-05-11 21:53:32 +000063#endif