Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright 2016 the original author or authors. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | |
| 18 | """ |
| 19 | Logical device level CLI commands |
| 20 | """ |
| 21 | from cmd2 import Cmd |
| 22 | from simplejson import dumps |
| 23 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 24 | from cli.table import print_pb_as_table, print_pb_list_as_table |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 25 | from cli.utils import pb2dict |
Gertjan Van Droogenbroeck | 308a9cf | 2017-10-11 15:59:51 -0500 | [diff] [blame] | 26 | from cli.utils import print_flows, print_groups |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 27 | from voltha.protos import third_party |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 28 | from google.protobuf.empty_pb2 import Empty |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 29 | |
| 30 | _ = third_party |
| 31 | from voltha.protos import voltha_pb2 |
| 32 | |
| 33 | |
| 34 | class LogicalDeviceCli(Cmd): |
| 35 | |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 36 | def __init__(self, logical_device_id, get_stub): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 37 | Cmd.__init__(self) |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 38 | self.get_stub = get_stub |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 39 | self.logical_device_id = logical_device_id |
| 40 | self.prompt = '(' + self.colorize( |
| 41 | self.colorize('logical device {}'.format(logical_device_id), 'red'), |
| 42 | 'bold') + ') ' |
| 43 | |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 44 | def cmdloop(self): |
| 45 | self._cmdloop() |
| 46 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 47 | def get_logical_device(self, depth=0): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 48 | stub = self.get_stub() |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 49 | res = stub.GetLogicalDevice(voltha_pb2.ID(id=self.logical_device_id), |
| 50 | metadata=(('get-depth', str(depth)), )) |
| 51 | return res |
| 52 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 53 | def get_device(self, id): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 54 | stub = self.get_stub() |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 55 | return stub.GetDevice(voltha_pb2.ID(id=id)) |
| 56 | |
| 57 | def get_devices(self): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 58 | stub = self.get_stub() |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 59 | res = stub.ListDevices(Empty()) |
| 60 | return res.items |
| 61 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 62 | do_exit = Cmd.do_quit |
| 63 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 64 | def do_show(self, _): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 65 | """Show detailed logical device information""" |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 66 | print_pb_as_table('Logical device {}'.format(self.logical_device_id), |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 67 | self.get_logical_device(depth=-1)) |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 68 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 69 | def do_ports(self, _): |
| 70 | """Show ports of logical device""" |
| 71 | device = self.get_logical_device(depth=-1) |
| 72 | omit_fields = { |
| 73 | 'ofp_port.advertised', |
| 74 | 'ofp_port.peer', |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 75 | 'ofp_port.max_speed' |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 76 | } |
| 77 | print_pb_list_as_table('Logical device ports:', device.ports, |
| 78 | omit_fields, self.poutput) |
| 79 | |
| 80 | def do_flows(self, _): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 81 | """Show flow table for logical device""" |
| 82 | logical_device = pb2dict(self.get_logical_device(-1)) |
| 83 | print_flows( |
| 84 | 'Logical Device', |
| 85 | self.logical_device_id, |
| 86 | type='n/a', |
| 87 | flows=logical_device['flows']['items'], |
| 88 | groups=logical_device['flow_groups']['items'] |
| 89 | ) |
| 90 | |
Gertjan Van Droogenbroeck | 308a9cf | 2017-10-11 15:59:51 -0500 | [diff] [blame] | 91 | def do_groups(self, _): |
| 92 | """Show flow group table for logical device""" |
| 93 | logical_device = pb2dict(self.get_logical_device(-1)) |
| 94 | print_groups( |
| 95 | 'Logical Device', |
| 96 | self.logical_device_id, |
| 97 | type='n/a', |
| 98 | groups=logical_device['flow_groups']['items'] |
| 99 | ) |
| 100 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 101 | def do_devices(self, line): |
| 102 | """List devices that belong to this logical device""" |
| 103 | logical_device = self.get_logical_device() |
| 104 | root_device_id = logical_device.root_device_id |
| 105 | devices = [self.get_device(root_device_id)] |
| 106 | for d in self.get_devices(): |
| 107 | if d.parent_id == root_device_id: |
| 108 | devices.append(d) |
| 109 | omit_fields = { |
| 110 | 'adapter', |
| 111 | 'vendor', |
| 112 | 'model', |
| 113 | 'hardware_version', |
| 114 | 'software_version', |
| 115 | 'firmware_version', |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 116 | 'serial_number' |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 117 | } |
| 118 | print_pb_list_as_table('Devices:', devices, omit_fields, self.poutput) |
| 119 | |