hkouser | 24361d4 | 2020-12-14 19:21:47 +0530 | [diff] [blame] | 1 | // Copyright (c) 2018 Open Networking Foundation |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at: |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | syntax = "proto3"; |
amit.ghosh | ee17c00 | 2021-06-10 12:14:38 +0200 | [diff] [blame] | 16 | |
| 17 | option go_package = "github.com/opencord/bbsim/api/bbsim"; |
| 18 | |
hkouser | 24361d4 | 2020-12-14 19:21:47 +0530 | [diff] [blame] | 19 | package bbsim; |
| 20 | |
| 21 | |
| 22 | message DmiEvent { |
| 23 | string event_name= 1; |
| 24 | } |
| 25 | |
Elia Battiston | e8d1fa4 | 2022-04-01 10:47:37 +0200 | [diff] [blame] | 26 | message DmiResponse { |
hkouser | 24361d4 | 2020-12-14 19:21:47 +0530 | [diff] [blame] | 27 | int32 status_code = 1; |
| 28 | string message = 2; |
| 29 | } |
| 30 | |
Elia Battiston | e8d1fa4 | 2022-04-01 10:47:37 +0200 | [diff] [blame] | 31 | message DmiEmpty { |
| 32 | } |
| 33 | |
| 34 | message TransceiverRequest { |
| 35 | uint32 TransceiverId = 1; |
| 36 | } |
| 37 | |
| 38 | message Transceiver{ |
| 39 | uint32 ID = 1; |
| 40 | string UUID = 2; |
| 41 | string Name = 3; |
| 42 | string Technology = 4; |
| 43 | bool PluggedIn = 5; |
| 44 | repeated uint32 PonIds = 6; |
| 45 | } |
| 46 | |
| 47 | message Transceivers{ |
| 48 | repeated Transceiver Items = 1; |
| 49 | } |
| 50 | |
| 51 | |
hkouser | 24361d4 | 2020-12-14 19:21:47 +0530 | [diff] [blame] | 52 | service BBsim_dmi { |
| 53 | // Ask the DMI Server to create an event |
Elia Battiston | e8d1fa4 | 2022-04-01 10:47:37 +0200 | [diff] [blame] | 54 | rpc CreateEvent (DmiEvent) returns (DmiResponse){ |
| 55 | } |
| 56 | |
| 57 | rpc GetTransceivers (DmiEmpty) returns (Transceivers) { |
| 58 | } |
| 59 | |
| 60 | // Plug out the transceiver by transceiverId |
| 61 | rpc PlugOutTransceiver (TransceiverRequest) returns (DmiResponse) { |
| 62 | } |
| 63 | // Plug in the transceiver of a PON by pon-port-ID |
| 64 | rpc PlugInTransceiver (TransceiverRequest) returns (DmiResponse) { |
hkouser | 24361d4 | 2020-12-14 19:21:47 +0530 | [diff] [blame] | 65 | } |
| 66 | } |