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 | Device level CLI commands |
| 20 | """ |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 21 | from optparse import make_option |
| 22 | from cmd2 import Cmd, options |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 23 | from simplejson import dumps |
| 24 | |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 25 | from cli.table import print_pb_as_table, print_pb_list_as_table |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 26 | from cli.utils import print_flows, pb2dict, enum2name |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 27 | from voltha.protos import third_party |
| 28 | |
| 29 | _ = third_party |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 30 | from voltha.protos import voltha_pb2, common_pb2 |
Sergio Slobodrian | 3ba3d56 | 2017-04-21 10:07:56 -0400 | [diff] [blame] | 31 | import sys |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 32 | import json |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 33 | from google.protobuf.json_format import MessageToDict |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 34 | |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 35 | # Since proto3 won't send fields that are set to 0/false/"" any object that |
| 36 | # might have those values set in them needs to be replicated here such that the |
Sergio Slobodrian | 3ba3d56 | 2017-04-21 10:07:56 -0400 | [diff] [blame] | 37 | # fields can be adequately |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 38 | |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 39 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 40 | class DeviceCli(Cmd): |
| 41 | |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 42 | def __init__(self, device_id, get_stub): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 43 | Cmd.__init__(self) |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 44 | self.get_stub = get_stub |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 45 | self.device_id = device_id |
| 46 | self.prompt = '(' + self.colorize( |
| 47 | self.colorize('device {}'.format(device_id), 'red'), 'bold') + ') ' |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 48 | self.pm_config_last = None |
| 49 | self.pm_config_dirty = False |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 50 | |
Zsolt Haraszti | 9b485fb | 2016-12-26 23:11:15 -0800 | [diff] [blame] | 51 | def cmdloop(self): |
| 52 | self._cmdloop() |
| 53 | |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 54 | def get_device(self, depth=0): |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 55 | stub = self.get_stub() |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 56 | res = stub.GetDevice(voltha_pb2.ID(id=self.device_id), |
| 57 | metadata=(('get-depth', str(depth)), )) |
| 58 | return res |
| 59 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 60 | do_exit = Cmd.do_quit |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 61 | |
Sergio Slobodrian | 6e9fb69 | 2017-03-17 14:46:33 -0400 | [diff] [blame] | 62 | def do_quit(self, line): |
| 63 | if self.pm_config_dirty: |
| 64 | self.poutput("Uncommited changes for " + \ |
| 65 | self.colorize( |
| 66 | self.colorize("perf_config,", "blue"), |
| 67 | "bold") + " please either " + self.colorize( |
| 68 | self.colorize("commit", "blue"), "bold") + \ |
| 69 | " or " + self.colorize( |
| 70 | self.colorize("reset", "blue"), "bold") + \ |
| 71 | " your changes using " + \ |
| 72 | self.colorize( |
| 73 | self.colorize("perf_config", "blue"), "bold")) |
| 74 | return False |
| 75 | else: |
| 76 | return self._STOP_AND_EXIT |
| 77 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 78 | def do_show(self, line): |
| 79 | """Show detailed device information""" |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 80 | print_pb_as_table('Device {}'.format(self.device_id), |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 81 | self.get_device(depth=-1)) |
Zsolt Haraszti | 85f1285 | 2016-12-24 08:30:58 -0800 | [diff] [blame] | 82 | |
| 83 | def do_ports(self, line): |
| 84 | """Show ports of device""" |
| 85 | device = self.get_device(depth=-1) |
| 86 | omit_fields = { |
| 87 | } |
| 88 | print_pb_list_as_table('Device ports:', device.ports, |
| 89 | omit_fields, self.poutput) |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 90 | |
Sergio Slobodrian | 3ba3d56 | 2017-04-21 10:07:56 -0400 | [diff] [blame] | 91 | def complete_perf_config(self, text, line, begidx, endidx): |
| 92 | sub_cmds = {"show", "set", "commit", "reset"} |
| 93 | sub_opts = {"-f", "-e", "-d", "-o"} |
| 94 | # Help the interpreter complete the paramters. |
| 95 | completions = [] |
| 96 | if not self.pm_config_last: |
| 97 | device = self.get_device(depth=-1) |
| 98 | self.pm_config_last = device.pm_configs |
| 99 | m_names = [d.name for d in self.pm_config_last.metrics] |
| 100 | cur_cmd = line.strip().split(" ") |
| 101 | try: |
| 102 | if not text and len(cur_cmd) == 1: |
| 103 | completions = ("show", "set", "commit", "reset") |
| 104 | elif len(cur_cmd) == 2: |
| 105 | if "set" == cur_cmd[1]: |
| 106 | completions = [d for d in sub_opts] |
| 107 | else: |
| 108 | completions = [d for d in sub_cmds if d.startswith(text)] |
| 109 | elif len(cur_cmd) > 2 and cur_cmd[1] == "set": |
| 110 | if cur_cmd[len(cur_cmd)-1] == "-": |
| 111 | completions = [list(d)[1] for d in sub_opts] |
| 112 | elif cur_cmd[len(cur_cmd)-1] == "-f": |
| 113 | completions = ("\255","Please enter a sampling frequency in 10ths of a second") |
| 114 | elif cur_cmd[len(cur_cmd)-2] == "-f": |
| 115 | completions = [d for d in sub_opts] |
| 116 | elif cur_cmd[len(cur_cmd)-1] in {"-e","-d","-o"}: |
| 117 | if self.pm_config_last.grouped: |
| 118 | pass |
| 119 | else: |
| 120 | completions = [d.name for d in self.pm_config_last.metrics] |
| 121 | elif cur_cmd[len(cur_cmd)-2] in {"-e","-d"}: |
| 122 | if text and text not in m_names: |
| 123 | completions = [d for d in m_names if d.startswith(text)] |
| 124 | else: |
| 125 | completions = [d for d in sub_opts] |
| 126 | elif cur_cmd[len(cur_cmd)-2] == "-o": |
| 127 | if cur_cmd[len(cur_cmd)-1] in [d.name for d in self.pm_config_last.metrics]: |
| 128 | completions = ("\255","Please enter a sampling frequency in 10ths of a second") |
| 129 | else: |
| 130 | completions = [d for d in m_names if d.startswith(text)] |
| 131 | elif cur_cmd[len(cur_cmd)-3] == "-o": |
| 132 | completions = [d for d in sub_opts] |
| 133 | except: |
| 134 | e = sys.exc_info() |
| 135 | print(e) |
| 136 | return completions |
| 137 | |
| 138 | |
Sergio Slobodrian | 6e9fb69 | 2017-03-17 14:46:33 -0400 | [diff] [blame] | 139 | def help_perf_config(self): |
| 140 | self.poutput( |
| 141 | ''' |
Sergio Slobodrian | 57979ec | 2017-03-21 22:32:17 -0400 | [diff] [blame] | 142 | perf_config [show | set | commit | reset] [-f <default frequency>] [{-e <metric/group |
| 143 | name>}] [{-d <metric/group name>}] [{-o <metric/group name> <override |
| 144 | frequency>}] |
Sergio Slobodrian | 038bd3c | 2017-03-22 15:53:25 -0400 | [diff] [blame] | 145 | |
Sergio Slobodrian | 3fb99b3 | 2017-03-22 22:18:21 -0400 | [diff] [blame] | 146 | show: displays the performance configuration of the device |
Sergio Slobodrian | 57979ec | 2017-03-21 22:32:17 -0400 | [diff] [blame] | 147 | set: changes the parameters specified with -e, -d, and -o |
| 148 | reset: reverts any changes made since the last commit |
| 149 | commit: commits any changes made which applies them to the device. |
| 150 | |
| 151 | -e: enable collection of the specified metric, more than one -e may be |
| 152 | specified. |
Sergio Slobodrian | 3fb99b3 | 2017-03-22 22:18:21 -0400 | [diff] [blame] | 153 | -d: disable collection of the specified metric, more than on -d may be |
Sergio Slobodrian | 57979ec | 2017-03-21 22:32:17 -0400 | [diff] [blame] | 154 | specified. |
Sergio Slobodrian | ec6e391 | 2017-04-02 11:46:55 -0400 | [diff] [blame] | 155 | -o: override the collection frequency of the specified metric, more than one -o |
Sergio Slobodrian | 57979ec | 2017-03-21 22:32:17 -0400 | [diff] [blame] | 156 | may be specified. Note that -o isn't valid unless |
Sergio Slobodrian | 3fb99b3 | 2017-03-22 22:18:21 -0400 | [diff] [blame] | 157 | frequency_override is set to True for the device. |
Sergio Slobodrian | 57979ec | 2017-03-21 22:32:17 -0400 | [diff] [blame] | 158 | |
Sergio Slobodrian | 6e9fb69 | 2017-03-17 14:46:33 -0400 | [diff] [blame] | 159 | Changes made by set are held locally until a commit or reset command is issued. |
| 160 | A commit command will write the configuration to the device and it takes effect |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 161 | immediately. The reset command will undo any changes since the start of the |
Sergio Slobodrian | 6e9fb69 | 2017-03-17 14:46:33 -0400 | [diff] [blame] | 162 | device session. |
| 163 | |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 164 | If grouped is true then the -d, -e and -o commands refer to groups and not |
Sergio Slobodrian | 6e9fb69 | 2017-03-17 14:46:33 -0400 | [diff] [blame] | 165 | individual metrics. |
| 166 | ''' |
| 167 | ) |
| 168 | |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 169 | @options([ |
| 170 | make_option('-f', '--default_freq', action="store", dest='default_freq', |
| 171 | type='long', default=None), |
| 172 | make_option('-e', '--enable', action='append', dest='enable', |
| 173 | default=None), |
| 174 | make_option('-d', '--disable', action='append', dest='disable', |
| 175 | default=None), |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 176 | make_option('-o', '--override', action='append', dest='override', |
Sergio Slobodrian | 6e9fb69 | 2017-03-17 14:46:33 -0400 | [diff] [blame] | 177 | nargs=2, default=None, type='string'), |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 178 | ]) |
| 179 | def do_perf_config(self, line, opts): |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 180 | """Show and set the performance monitoring configuration of the device""" |
| 181 | |
| 182 | device = self.get_device(depth=-1) |
| 183 | if not self.pm_config_last: |
| 184 | self.pm_config_last = device.pm_configs |
| 185 | |
| 186 | # Ensure that a valid sub-command was provided |
| 187 | if line.strip() not in {"set", "show", "commit", "reset", ""}: |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 188 | self.poutput(self.colorize('Error: ', 'red') + |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 189 | self.colorize(self.colorize(line.strip(), 'blue'), |
| 190 | 'bold') + ' is not recognized') |
| 191 | return |
| 192 | |
| 193 | # Ensure no options are provided when requesting to view the config |
| 194 | if line.strip() == "show" or line.strip() == "": |
| 195 | if opts.default_freq or opts.enable or opts.disable: |
| 196 | self.poutput(opts.disable) |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 197 | self.poutput(self.colorize('Error: ', 'red') + 'use ' + |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 198 | self.colorize(self.colorize('"set"', 'blue'), |
| 199 | 'bold') + ' to change settings') |
| 200 | return |
| 201 | |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 202 | if line.strip() == "set": # Set the supplied values |
| 203 | metric_list = set() |
| 204 | if opts.enable is not None: |
| 205 | metric_list |= {metric for metric in opts.enable} |
| 206 | if opts.disable is not None: |
| 207 | metric_list |= {metric for metric in opts.disable} |
| 208 | if opts.override is not None: |
| 209 | metric_list |= {metric for metric, _ in opts.override} |
| 210 | |
| 211 | # The default frequency |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 212 | if opts.default_freq: |
| 213 | self.pm_config_last.default_freq = opts.default_freq |
| 214 | self.pm_config_dirty = True |
| 215 | |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 216 | # Field or group visibility |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 217 | if self.pm_config_last.grouped: |
| 218 | for g in self.pm_config_last.groups: |
| 219 | if opts.enable: |
| 220 | if g.group_name in opts.enable: |
| 221 | g.enabled = True |
| 222 | self.pm_config_dirty = True |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 223 | metric_list.discard(g.group_name) |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 224 | for g in self.pm_config_last.groups: |
| 225 | if opts.disable: |
| 226 | if g.group_name in opts.disable: |
| 227 | g.enabled = False |
| 228 | self.pm_config_dirty = True |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 229 | metric_list.discard(g.group_name) |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 230 | else: |
| 231 | for m in self.pm_config_last.metrics: |
| 232 | if opts.enable: |
| 233 | if m.name in opts.enable: |
| 234 | m.enabled = True |
| 235 | self.pm_config_dirty = True |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 236 | metric_list.discard(m.name) |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 237 | for m in self.pm_config_last.metrics: |
| 238 | if opts.disable: |
| 239 | if m.name in opts.disable: |
| 240 | m.enabled = False |
| 241 | self.pm_config_dirty = True |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 242 | metric_list.discard(m.name) |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 243 | |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 244 | # Frequency overrides. |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 245 | if opts.override: |
| 246 | if self.pm_config_last.freq_override: |
| 247 | oo = dict() |
| 248 | for o in opts.override: |
| 249 | oo[o[0]] = o[1] |
| 250 | if self.pm_config_last.grouped: |
| 251 | for g in self.pm_config_last.groups: |
| 252 | if g.group_name in oo: |
| 253 | try: |
| 254 | g.group_freq = int(oo[g.group_name]) |
| 255 | except ValueError: |
| 256 | self.poutput(self.colorize('Warning: ', |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 257 | 'yellow') + |
| 258 | self.colorize(oo[g.group_name], |
| 259 | 'blue') + |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 260 | " is not an integer... ignored") |
| 261 | del oo[g.group_name] |
| 262 | self.pm_config_dirty = True |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 263 | metric_list.discard(g.group_name) |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 264 | else: |
| 265 | for m in self.pm_config_last.metrics: |
| 266 | if m.name in oo: |
| 267 | try: |
| 268 | m.sample_freq = int(oo[m.name]) |
| 269 | except ValueError: |
| 270 | self.poutput(self.colorize('Warning: ', |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 271 | 'yellow') + |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 272 | self.colorize(oo[m.name], |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 273 | 'blue') + |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 274 | " is not an integer... ignored") |
| 275 | del oo[m.name] |
| 276 | self.pm_config_dirty = True |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 277 | metric_list.discard(m.name) |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 278 | |
| 279 | # If there's anything left the input was typoed |
| 280 | if self.pm_config_last.grouped: |
| 281 | field = 'group' |
| 282 | else: |
| 283 | field = 'metric' |
| 284 | for o in oo: |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 285 | self.poutput(self.colorize('Warning: ', 'yellow') + |
| 286 | 'the parameter' + ' ' + |
| 287 | self.colorize(o, 'blue') + ' is not ' + |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 288 | 'a ' + field + ' name... ignored') |
| 289 | if oo: |
| 290 | return |
| 291 | |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 292 | else: # Frequency overrides not enabled |
| 293 | self.poutput(self.colorize('Error: ', 'red') + |
| 294 | 'Individual overrides are only ' + |
| 295 | 'supported if ' + |
| 296 | self.colorize('freq_override', 'blue') + |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 297 | ' is set to ' + self.colorize('True', 'blue')) |
| 298 | return |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 299 | |
| 300 | if len(metric_list): |
| 301 | metric_name_list = ", ".join(str(metric) for metric in metric_list) |
| 302 | self.poutput(self.colorize('Error: ', 'red') + |
| 303 | 'Metric/Metric Group{} '.format('s' if len(metric_list) > 1 else '') + |
| 304 | self.colorize(metric_name_list, 'blue') + |
| 305 | ' {} not found'.format('were' if len(metric_list) > 1 else 'was')) |
| 306 | return |
| 307 | |
Sergio Slobodrian | 4236ade | 2017-03-17 22:01:20 -0400 | [diff] [blame] | 308 | self.poutput("Success") |
| 309 | return |
| 310 | |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 311 | elif line.strip() == "commit" and self.pm_config_dirty: |
khenaidoo | 108f05c | 2017-07-06 11:15:29 -0400 | [diff] [blame] | 312 | stub = self.get_stub() |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 313 | stub.UpdateDevicePmConfigs(self.pm_config_last) |
| 314 | self.pm_config_last = self.get_device(depth=-1).pm_configs |
| 315 | self.pm_config_dirty = False |
Chip Boling | 825764b | 2018-08-17 16:17:07 -0500 | [diff] [blame] | 316 | |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 317 | elif line.strip() == "reset" and self.pm_config_dirty: |
| 318 | self.pm_config_last = self.get_device(depth=-1).pm_configs |
| 319 | self.pm_config_dirty = False |
| 320 | |
| 321 | omit_fields = {'groups', 'metrics', 'id'} |
| 322 | print_pb_as_table('PM Config:', self.pm_config_last, omit_fields, |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 323 | self.poutput,show_nulls=True) |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 324 | if self.pm_config_last.grouped: |
| 325 | #self.poutput("Supported metric groups:") |
| 326 | for g in self.pm_config_last.groups: |
| 327 | if self.pm_config_last.freq_override: |
| 328 | omit_fields = {'metrics'} |
| 329 | else: |
| 330 | omit_fields = {'group_freq','metrics'} |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 331 | print_pb_as_table('', g, omit_fields, self.poutput, |
| 332 | show_nulls=True) |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 333 | if g.enabled: |
| 334 | state = 'enabled' |
| 335 | else: |
| 336 | state = 'disabled' |
| 337 | print_pb_list_as_table( |
Sergio Slobodrian | a4b89c0 | 2017-04-03 12:48:36 -0400 | [diff] [blame] | 338 | 'Metric group {} is {}'.format(g.group_name,state), |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 339 | g.metrics, {'enabled', 'sample_freq'}, self.poutput, |
Sergio Slobodrian | a95f99b | 2017-03-21 10:22:47 -0400 | [diff] [blame] | 340 | dividers=100, show_nulls=True) |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 341 | else: |
| 342 | if self.pm_config_last.freq_override: |
| 343 | omit_fields = {} |
| 344 | else: |
| 345 | omit_fields = {'sample_freq'} |
| 346 | print_pb_list_as_table('Supported metrics:', self.pm_config_last.metrics, |
Sergio Slobodrian | 038bd3c | 2017-03-22 15:53:25 -0400 | [diff] [blame] | 347 | omit_fields, self.poutput, dividers=100, |
| 348 | show_nulls=True) |
Sergio Slobodrian | 901bf4e | 2017-03-17 12:54:39 -0400 | [diff] [blame] | 349 | |
Zsolt Haraszti | 8017520 | 2016-12-24 00:17:51 -0800 | [diff] [blame] | 350 | def do_flows(self, line): |
Zsolt Haraszti | d036b7e | 2016-12-23 15:36:01 -0800 | [diff] [blame] | 351 | """Show flow table for device""" |
| 352 | device = pb2dict(self.get_device(-1)) |
| 353 | print_flows( |
| 354 | 'Device', |
| 355 | self.device_id, |
| 356 | type=device['type'], |
| 357 | flows=device['flows']['items'], |
| 358 | groups=device['flow_groups']['items'] |
| 359 | ) |
| 360 | |
ggowdru | 236bd95 | 2017-06-20 20:32:55 -0700 | [diff] [blame] | 361 | def do_images(self, line): |
| 362 | """Show software images on the device""" |
| 363 | device = self.get_device(depth=-1) |
| 364 | omit_fields = {} |
| 365 | print_pb_list_as_table('Software Images:', device.images.image, |
| 366 | omit_fields, self.poutput, show_nulls=True) |
| 367 | |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 368 | @options([ |
| 369 | make_option('-u', '--url', action='store', dest='url', |
| 370 | help="URL to get sw image"), |
| 371 | make_option('-n', '--name', action='store', dest='name', |
| 372 | help="Image name"), |
| 373 | make_option('-c', '--crc', action='store', dest='crc', |
| 374 | help="CRC code to verify with", default=0), |
| 375 | make_option('-v', '--version', action='store', dest='version', |
| 376 | help="Image version", default=0), |
lcui | 33d6a8e | 2018-08-28 12:51:38 -0700 | [diff] [blame] | 377 | make_option('-d', '--dir', action='store', dest='dir', |
| 378 | help="local directory"), |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 379 | ]) |
| 380 | def do_img_dnld_request(self, line, opts): |
| 381 | """ |
| 382 | Request image download to a device |
| 383 | """ |
| 384 | device = self.get_device(depth=-1) |
| 385 | self.poutput('device_id {}'.format(device.id)) |
| 386 | self.poutput('name {}'.format(opts.name)) |
| 387 | self.poutput('url {}'.format(opts.url)) |
| 388 | self.poutput('crc {}'.format(opts.crc)) |
| 389 | self.poutput('version {}'.format(opts.version)) |
lcui | 33d6a8e | 2018-08-28 12:51:38 -0700 | [diff] [blame] | 390 | self.poutput('local dir {}'.format(opts.dir)) |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 391 | try: |
| 392 | device_id = device.id |
| 393 | if device_id and opts.name and opts.url: |
| 394 | kw = dict(id=device_id) |
| 395 | kw['name'] = opts.name |
| 396 | kw['url'] = opts.url |
| 397 | else: |
| 398 | self.poutput('Device ID and URL are needed') |
| 399 | raise Exception('Device ID and URL are needed') |
lcui | 33d6a8e | 2018-08-28 12:51:38 -0700 | [diff] [blame] | 400 | if opts.dir: |
| 401 | kw['local_dir'] = opts.dir |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 402 | except Exception as e: |
| 403 | self.poutput('Error request img dnld {}. Error:{}'.format(device_id, e)) |
| 404 | return |
| 405 | kw['crc'] = long(opts.crc) |
| 406 | kw['image_version'] = opts.version |
| 407 | response = None |
| 408 | try: |
| 409 | request = voltha_pb2.ImageDownload(**kw) |
| 410 | stub = self.get_stub() |
| 411 | response = stub.DownloadImage(request) |
| 412 | except Exception as e: |
| 413 | self.poutput('Error download image {}. Error:{}'.format(kw['id'], e)) |
| 414 | return |
| 415 | name = enum2name(common_pb2.OperationResp, |
| 416 | 'OperationReturnCode', response.code) |
| 417 | self.poutput('response: {}'.format(name)) |
| 418 | self.poutput('{}'.format(response)) |
| 419 | |
| 420 | @options([ |
| 421 | make_option('-n', '--name', action='store', dest='name', |
| 422 | help="Image name"), |
| 423 | ]) |
| 424 | def do_img_dnld_status(self, line, opts): |
| 425 | """ |
| 426 | Get a image download status |
| 427 | """ |
| 428 | device = self.get_device(depth=-1) |
| 429 | self.poutput('device_id {}'.format(device.id)) |
| 430 | self.poutput('name {}'.format(opts.name)) |
| 431 | try: |
| 432 | device_id = device.id |
| 433 | if device_id and opts.name: |
| 434 | kw = dict(id=device_id) |
| 435 | kw['name'] = opts.name |
| 436 | else: |
| 437 | self.poutput('Device ID, Image Name are needed') |
| 438 | raise Exception('Device ID, Image Name are needed') |
| 439 | except Exception as e: |
| 440 | self.poutput('Error get img dnld status {}. Error:{}'.format(device_id, e)) |
| 441 | return |
| 442 | status = None |
| 443 | try: |
| 444 | img_dnld = voltha_pb2.ImageDownload(**kw) |
| 445 | stub = self.get_stub() |
| 446 | status = stub.GetImageDownloadStatus(img_dnld) |
| 447 | except Exception as e: |
| 448 | self.poutput('Error get img dnld status {}. Error:{}'.format(device_id, e)) |
| 449 | return |
| 450 | fields_to_omit = { |
| 451 | 'crc', |
| 452 | 'local_dir', |
| 453 | } |
| 454 | try: |
| 455 | print_pb_as_table('ImageDownload Status:', status, fields_to_omit, self.poutput) |
| 456 | except Exception, e: |
| 457 | self.poutput('Error {}. Error:{}'.format(device_id, e)) |
| 458 | |
| 459 | def do_img_dnld_list(self, line): |
| 460 | """ |
| 461 | List all image download records for a given device |
| 462 | """ |
| 463 | device = self.get_device(depth=-1) |
| 464 | device_id = device.id |
| 465 | self.poutput('Get all img dnld records {}'.format(device_id)) |
| 466 | try: |
| 467 | stub = self.get_stub() |
| 468 | img_dnlds = stub.ListImageDownloads(voltha_pb2.ID(id=device_id)) |
| 469 | except Exception, e: |
| 470 | self.poutput('Error list img dnlds {}. Error:{}'.format(device_id, e)) |
| 471 | return |
| 472 | fields_to_omit = { |
| 473 | 'crc', |
| 474 | 'local_dir', |
| 475 | } |
| 476 | try: |
| 477 | print_pb_list_as_table('ImageDownloads:', img_dnlds.items, fields_to_omit, self.poutput) |
| 478 | except Exception, e: |
| 479 | self.poutput('Error {}. Error:{}'.format(device_id, e)) |
| 480 | |
| 481 | |
| 482 | @options([ |
| 483 | make_option('-n', '--name', action='store', dest='name', |
| 484 | help="Image name"), |
| 485 | ]) |
| 486 | def do_img_dnld_cancel(self, line, opts): |
| 487 | """ |
| 488 | Cancel a requested image download |
| 489 | """ |
| 490 | device = self.get_device(depth=-1) |
| 491 | self.poutput('device_id {}'.format(device.id)) |
| 492 | self.poutput('name {}'.format(opts.name)) |
| 493 | device_id = device.id |
| 494 | try: |
| 495 | if device_id and opts.name: |
| 496 | kw = dict(id=device_id) |
| 497 | kw['name'] = opts.name |
| 498 | else: |
| 499 | self.poutput('Device ID, Image Name are needed') |
| 500 | raise Exception('Device ID, Image Name are needed') |
| 501 | except Exception as e: |
| 502 | self.poutput('Error cancel sw dnld {}. Error:{}'.format(device_id, e)) |
| 503 | return |
| 504 | response = None |
| 505 | try: |
| 506 | img_dnld = voltha_pb2.ImageDownload(**kw) |
| 507 | stub = self.get_stub() |
| 508 | img_dnld = stub.GetImageDownload(img_dnld) |
| 509 | response = stub.CancelImageDownload(img_dnld) |
| 510 | except Exception as e: |
| 511 | self.poutput('Error cancel sw dnld {}. Error:{}'.format(device_id, e)) |
| 512 | return |
| 513 | name = enum2name(common_pb2.OperationResp, |
| 514 | 'OperationReturnCode', response.code) |
| 515 | self.poutput('response: {}'.format(name)) |
| 516 | self.poutput('{}'.format(response)) |
| 517 | |
Scott Baker | d319095 | 2018-09-04 15:47:28 -0700 | [diff] [blame] | 518 | def help_simulate_alarm(self): |
| 519 | self.poutput( |
| 520 | ''' |
| 521 | simulate_alarm <alarm_name> [-b <bit rate>] [-c] [-d <drift>] [-e <eqd>] |
| 522 | [-i <interface id>] [-o <onu device id>] [-p <port type name>] |
| 523 | |
| 524 | <name> is the name of the alarm to raise. Other rguments are alarm specific |
| 525 | and only have meaning in the context of a particular alarm. Below is a list |
| 526 | of the alarms that may be raised: |
| 527 | |
| 528 | simulate_alarm los -i <interface_id> -p <port_type_name> |
| 529 | simulate_alarm dying_gasp -i <interface_id> -o <onu_device_id> |
| 530 | simulate_alarm onu_los -i <interface_id> -o <onu_device_id> |
| 531 | simulate_alarm onu_lopc_miss -i <interface_id> -o <onu_device_id> |
| 532 | simulate_alarm onu_lopc_mic -i <interface_id> -o <onu_device_id> |
| 533 | simulate_alarm onu_lob -i <interface_id> -o <onu_device_id> |
| 534 | simulate_alarm onu_signal_degrade -i <interface_id> -o <onu_device_id> |
| 535 | -b <bit_rate> |
| 536 | simulate_alarm onu_drift_of_window -i <interface_id> |
| 537 | -o <onu_device_id> -d <drift> -e <eqd> |
| 538 | simulate_alarm onu_signal_fail -i <interface_id> -o <onu_device_id> |
| 539 | -b <bit_rate> |
| 540 | simulate_alarm onu_activation -i <interface_id> -o <onu_device_id> |
| 541 | simulate_alarm onu_startup -i <interface_id> -o <onu_device_id> |
| 542 | simulate_alarm onu_discovery -i <interface_id> -s <onu_serial_number> |
| 543 | |
| 544 | If the -c option is specified then the alarm will be cleared. By default, |
| 545 | it will be raised. Note that only some alarms can be cleared. |
| 546 | ''' |
| 547 | ) |
| 548 | |
| 549 | @options([ |
| 550 | make_option('-c', '--clear', action='store_true', default=False, |
| 551 | help="Clear alarm instead of raising"), |
| 552 | make_option('-b', '--inverse_bit_error_rate', action='store', dest='inverse_bit_error_rate', |
| 553 | help="Inverse bit error rate", default=0, type="int"), |
| 554 | make_option('-d', '--drift', action='store', dest='drift', |
| 555 | help="Drift", default=0, type="int"), |
| 556 | make_option('-e', '--new_eqd', action='store', dest='new_eqd', |
| 557 | help="New EQD", default=0, type="int"), |
| 558 | make_option('-i', '--intf_id', action='store', dest='intf_id', |
| 559 | help="Interface ID", default=""), |
| 560 | make_option('-o', '--onu_device_id', action='store', dest='onu_device_id', |
| 561 | help="ONU device ID", default=""), |
| 562 | make_option('-p', '--port_type_name', action='store', dest='port_type_name', |
| 563 | help="Port type name", default=""), |
| 564 | make_option('-s', '--onu_serial_number', action='store', dest='onu_serial_number', |
| 565 | help="ONU Serial Number", default=""), |
| 566 | ]) |
| 567 | def do_simulate_alarm(self, line, opts): |
| 568 | indicator = line |
| 569 | device = self.get_device(depth=-1) |
| 570 | device_id = device.id |
| 571 | |
| 572 | alarm_args = {"los": ["intf_id", "port_type_name"], |
| 573 | "dying_gasp": ["intf_id", "onu_device_id"], |
| 574 | "onu_los": ["intf_id", "onu_device_id"], |
| 575 | "onu_lopc_miss": ["intf_id", "onu_device_id"], |
| 576 | "onu_lopc_mic": ["intf_id", "onu_device_id"], |
| 577 | "onu_lob": ["intf_id", "onu_device_id"], |
| 578 | "onu_signal_degrade": ["intf_id", "onu_device_id", "inverse_bit_error_rate"], |
| 579 | "onu_drift_of_window": ["intf_id", "onu_device_id", "drift", "new_eqd"], |
| 580 | "onu_signal_fail": ["intf_id", "onu_device_id", "inverse_bit_error_rate"], |
| 581 | "onu_activation": ["intf_id", "onu_device_id"], |
| 582 | "onu_startup": ["intf_id", "onu_device_id"], |
| 583 | "onu_discovery": ["intf_id", "onu_serial_number"] |
| 584 | } |
| 585 | try: |
| 586 | if indicator not in alarm_args: |
| 587 | self.poutput("Unknown alarm indicator %s. Valid choices are %s." % (indicator, |
| 588 | ", ".join(alarm_args.keys()))) |
| 589 | raise Exception("Unknown alarm indicator %s" % indicator) |
| 590 | |
| 591 | for arg_name in alarm_args[indicator]: |
| 592 | if not getattr(opts, arg_name): |
| 593 | self.poutput("Option %s is required for alarm %s. See help." % (arg_name, indicator)) |
| 594 | raise Exception("Option %s is required for alarm %s" % (arg_name, indicator)) |
| 595 | |
| 596 | # TODO: check for required arguments |
| 597 | kw = dict(id=device_id) |
| 598 | |
| 599 | kw["indicator"] = indicator |
| 600 | kw["intf_id"] = opts.intf_id |
| 601 | kw["onu_device_id"] = opts.onu_device_id |
| 602 | kw["port_type_name"] = opts.port_type_name |
| 603 | kw["inverse_bit_error_rate"] = opts.inverse_bit_error_rate |
| 604 | kw["drift"] = opts.drift |
| 605 | kw["new_eqd"] = opts.new_eqd |
| 606 | kw["onu_serial_number"] = opts.onu_serial_number |
| 607 | |
| 608 | if opts.clear: |
| 609 | kw["operation"] = voltha_pb2.SimulateAlarmRequest.CLEAR |
| 610 | else: |
| 611 | kw["operation"] = voltha_pb2.SimulateAlarmRequest.RAISE |
| 612 | except Exception as e: |
| 613 | self.poutput('Error simulate alarm {}. Error:{}'.format(device_id, e)) |
| 614 | return |
| 615 | response = None |
| 616 | try: |
| 617 | simulate_alarm = voltha_pb2.SimulateAlarmRequest(**kw) |
| 618 | stub = self.get_stub() |
| 619 | response = stub.SimulateAlarm(simulate_alarm) |
| 620 | except Exception as e: |
| 621 | self.poutput('Error simulate alarm {}. Error:{}'.format(kw['id'], e)) |
| 622 | return |
| 623 | name = enum2name(common_pb2.OperationResp, |
| 624 | 'OperationReturnCode', response.code) |
| 625 | self.poutput('response: {}'.format(name)) |
| 626 | self.poutput('{}'.format(response)) |
| 627 | |
Lydia Fang | 01f2e85 | 2017-06-28 17:24:58 -0700 | [diff] [blame] | 628 | @options([ |
| 629 | make_option('-n', '--name', action='store', dest='name', |
| 630 | help="Image name"), |
| 631 | make_option('-s', '--save', action='store', dest='save_config', |
| 632 | help="Save Config", default="True"), |
| 633 | make_option('-d', '--dir', action='store', dest='local_dir', |
| 634 | help="Image on device location"), |
| 635 | ]) |
| 636 | def do_img_activate(self, line, opts): |
| 637 | """ |
| 638 | Activate an image update on device |
| 639 | """ |
| 640 | device = self.get_device(depth=-1) |
| 641 | device_id = device.id |
| 642 | try: |
| 643 | if device_id and opts.name and opts.local_dir: |
| 644 | kw = dict(id=device_id) |
| 645 | kw['name'] = opts.name |
| 646 | kw['local_dir'] = opts.local_dir |
| 647 | else: |
| 648 | self.poutput('Device ID, Image Name, and Location are needed') |
| 649 | raise Exception('Device ID, Image Name, and Location are needed') |
| 650 | except Exception as e: |
| 651 | self.poutput('Error activate image {}. Error:{}'.format(device_id, e)) |
| 652 | return |
| 653 | kw['save_config'] = json.loads(opts.save_config.lower()) |
| 654 | self.poutput('activate image update {} {} {} {}'.format( \ |
| 655 | kw['id'], kw['name'], |
| 656 | kw['local_dir'], kw['save_config'])) |
| 657 | response = None |
| 658 | try: |
| 659 | img_dnld = voltha_pb2.ImageDownload(**kw) |
| 660 | stub = self.get_stub() |
| 661 | img_dnld = stub.GetImageDownload(img_dnld) |
| 662 | response = stub.ActivateImageUpdate(img_dnld) |
| 663 | except Exception as e: |
| 664 | self.poutput('Error activate image {}. Error:{}'.format(kw['id'], e)) |
| 665 | return |
| 666 | name = enum2name(common_pb2.OperationResp, |
| 667 | 'OperationReturnCode', response.code) |
| 668 | self.poutput('response: {}'.format(name)) |
| 669 | self.poutput('{}'.format(response)) |
| 670 | |
| 671 | @options([ |
| 672 | make_option('-n', '--name', action='store', dest='name', |
| 673 | help="Image name"), |
| 674 | make_option('-s', '--save', action='store', dest='save_config', |
| 675 | help="Save Config", default="True"), |
| 676 | make_option('-d', '--dir', action='store', dest='local_dir', |
| 677 | help="Image on device location"), |
| 678 | ]) |
| 679 | def do_img_revert(self, line, opts): |
| 680 | """ |
| 681 | Revert an image update on device |
| 682 | """ |
| 683 | device = self.get_device(depth=-1) |
| 684 | device_id = device.id |
| 685 | try: |
| 686 | if device_id and opts.name and opts.local_dir: |
| 687 | kw = dict(id=device_id) |
| 688 | kw['name'] = opts.name |
| 689 | kw['local_dir'] = opts.local_dir |
| 690 | else: |
| 691 | self.poutput('Device ID, Image Name, and Location are needed') |
| 692 | raise Exception('Device ID, Image Name, and Location are needed') |
| 693 | except Exception as e: |
| 694 | self.poutput('Error revert image {}. Error:{}'.format(device_id, e)) |
| 695 | return |
| 696 | kw['save_config'] = json.loads(opts.save_config.lower()) |
| 697 | self.poutput('revert image update {} {} {} {}'.format( \ |
| 698 | kw['id'], kw['name'], |
| 699 | kw['local_dir'], kw['save_config'])) |
| 700 | response = None |
| 701 | try: |
| 702 | img_dnld = voltha_pb2.ImageDownload(**kw) |
| 703 | stub = self.get_stub() |
| 704 | img_dnld = stub.GetImageDownload(img_dnld) |
| 705 | response = stub.RevertImageUpdate(img_dnld) |
| 706 | except Exception as e: |
| 707 | self.poutput('Error revert image {}. Error:{}'.format(kw['id'], e)) |
| 708 | return |
| 709 | name = enum2name(common_pb2.OperationResp, |
| 710 | 'OperationReturnCode', response.code) |
| 711 | self.poutput('response: {}'.format(name)) |
| 712 | self.poutput('{}'.format(response)) |