blob: 3ab4b0d5571a45183d58a76317da81e452fa5b52 [file] [log] [blame]
Zsolt Harasztid036b7e2016-12-23 15:36:01 -08001#!/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"""
19Device level CLI commands
20"""
21from cmd2 import Cmd
22from simplejson import dumps
23
Zsolt Haraszti85f12852016-12-24 08:30:58 -080024from cli.table import print_pb_as_table, print_pb_list_as_table
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080025from cli.utils import print_flows, pb2dict
26from voltha.protos import third_party
27
28_ = third_party
29from voltha.protos import voltha_pb2
30
31
32class DeviceCli(Cmd):
33
34 def __init__(self, get_channel, device_id):
35 Cmd.__init__(self)
36 self.get_channel = get_channel
37 self.device_id = device_id
38 self.prompt = '(' + self.colorize(
39 self.colorize('device {}'.format(device_id), 'red'), 'bold') + ') '
40
41 def get_device(self, depth=0):
42 stub = voltha_pb2.VolthaLocalServiceStub(self.get_channel())
43 res = stub.GetDevice(voltha_pb2.ID(id=self.device_id),
44 metadata=(('get-depth', str(depth)), ))
45 return res
46
Zsolt Haraszti80175202016-12-24 00:17:51 -080047 do_exit = Cmd.do_quit
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080048
Zsolt Haraszti80175202016-12-24 00:17:51 -080049 def do_show(self, line):
50 """Show detailed device information"""
Zsolt Haraszti85f12852016-12-24 08:30:58 -080051 print_pb_as_table('Device {}'.format(self.device_id),
52 self.get_device(depth=-1))
53
54 def do_ports(self, line):
55 """Show ports of device"""
56 device = self.get_device(depth=-1)
57 omit_fields = {
58 }
59 print_pb_list_as_table('Device ports:', device.ports,
60 omit_fields, self.poutput)
Zsolt Haraszti80175202016-12-24 00:17:51 -080061
62 def do_flows(self, line):
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080063 """Show flow table for device"""
64 device = pb2dict(self.get_device(-1))
65 print_flows(
66 'Device',
67 self.device_id,
68 type=device['type'],
69 flows=device['flows']['items'],
70 groups=device['flow_groups']['items']
71 )
72