blob: 3f02dcd2d7fecbc66bc767d5b9214f8db3d1cd4d [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"""
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -040021from optparse import make_option
22from cmd2 import Cmd, options
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080023from simplejson import dumps
24
Zsolt Haraszti85f12852016-12-24 08:30:58 -080025from cli.table import print_pb_as_table, print_pb_list_as_table
Lydia Fang01f2e852017-06-28 17:24:58 -070026from cli.utils import print_flows, pb2dict, enum2name
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080027from voltha.protos import third_party
28
29_ = third_party
Lydia Fang01f2e852017-06-28 17:24:58 -070030from voltha.protos import voltha_pb2, common_pb2
Sergio Slobodrian3ba3d562017-04-21 10:07:56 -040031import sys
Lydia Fang01f2e852017-06-28 17:24:58 -070032import json
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -040033from google.protobuf.json_format import MessageToDict
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080034
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -040035# 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 Slobodrian3ba3d562017-04-21 10:07:56 -040037# fields can be adequately
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080038
Chip Boling825764b2018-08-17 16:17:07 -050039
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080040class DeviceCli(Cmd):
41
khenaidoo108f05c2017-07-06 11:15:29 -040042 def __init__(self, device_id, get_stub):
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080043 Cmd.__init__(self)
khenaidoo108f05c2017-07-06 11:15:29 -040044 self.get_stub = get_stub
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080045 self.device_id = device_id
46 self.prompt = '(' + self.colorize(
47 self.colorize('device {}'.format(device_id), 'red'), 'bold') + ') '
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -040048 self.pm_config_last = None
49 self.pm_config_dirty = False
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080050
Zsolt Haraszti9b485fb2016-12-26 23:11:15 -080051 def cmdloop(self):
52 self._cmdloop()
53
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080054 def get_device(self, depth=0):
khenaidoo108f05c2017-07-06 11:15:29 -040055 stub = self.get_stub()
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080056 res = stub.GetDevice(voltha_pb2.ID(id=self.device_id),
57 metadata=(('get-depth', str(depth)), ))
58 return res
59
Zsolt Haraszti80175202016-12-24 00:17:51 -080060 do_exit = Cmd.do_quit
Zsolt Harasztid036b7e2016-12-23 15:36:01 -080061
Sergio Slobodrian6e9fb692017-03-17 14:46:33 -040062 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 Haraszti80175202016-12-24 00:17:51 -080078 def do_show(self, line):
79 """Show detailed device information"""
Zsolt Haraszti85f12852016-12-24 08:30:58 -080080 print_pb_as_table('Device {}'.format(self.device_id),
Sergio Slobodriana95f99b2017-03-21 10:22:47 -040081 self.get_device(depth=-1))
Zsolt Haraszti85f12852016-12-24 08:30:58 -080082
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 Haraszti80175202016-12-24 00:17:51 -080090
Sergio Slobodrian3ba3d562017-04-21 10:07:56 -040091 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 Slobodrian6e9fb692017-03-17 14:46:33 -0400139 def help_perf_config(self):
140 self.poutput(
141'''
Sergio Slobodrian57979ec2017-03-21 22:32:17 -0400142perf_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 Slobodrian038bd3c2017-03-22 15:53:25 -0400145
Sergio Slobodrian3fb99b32017-03-22 22:18:21 -0400146show: displays the performance configuration of the device
Sergio Slobodrian57979ec2017-03-21 22:32:17 -0400147set: changes the parameters specified with -e, -d, and -o
148reset: reverts any changes made since the last commit
149commit: 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 Slobodrian3fb99b32017-03-22 22:18:21 -0400153-d: disable collection of the specified metric, more than on -d may be
Sergio Slobodrian57979ec2017-03-21 22:32:17 -0400154 specified.
Sergio Slobodrianec6e3912017-04-02 11:46:55 -0400155-o: override the collection frequency of the specified metric, more than one -o
Sergio Slobodrian57979ec2017-03-21 22:32:17 -0400156 may be specified. Note that -o isn't valid unless
Sergio Slobodrian3fb99b32017-03-22 22:18:21 -0400157 frequency_override is set to True for the device.
Sergio Slobodrian57979ec2017-03-21 22:32:17 -0400158
Sergio Slobodrian6e9fb692017-03-17 14:46:33 -0400159Changes made by set are held locally until a commit or reset command is issued.
160A commit command will write the configuration to the device and it takes effect
Chip Boling825764b2018-08-17 16:17:07 -0500161immediately. The reset command will undo any changes since the start of the
Sergio Slobodrian6e9fb692017-03-17 14:46:33 -0400162device session.
163
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400164If grouped is true then the -d, -e and -o commands refer to groups and not
Sergio Slobodrian6e9fb692017-03-17 14:46:33 -0400165individual metrics.
166'''
167 )
168
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400169 @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 Boling825764b2018-08-17 16:17:07 -0500176 make_option('-o', '--override', action='append', dest='override',
Sergio Slobodrian6e9fb692017-03-17 14:46:33 -0400177 nargs=2, default=None, type='string'),
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400178 ])
179 def do_perf_config(self, line, opts):
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400180 """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 Boling825764b2018-08-17 16:17:07 -0500188 self.poutput(self.colorize('Error: ', 'red') +
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400189 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 Boling825764b2018-08-17 16:17:07 -0500197 self.poutput(self.colorize('Error: ', 'red') + 'use ' +
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400198 self.colorize(self.colorize('"set"', 'blue'),
199 'bold') + ' to change settings')
200 return
201
Chip Boling825764b2018-08-17 16:17:07 -0500202 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 Slobodrian901bf4e2017-03-17 12:54:39 -0400212 if opts.default_freq:
213 self.pm_config_last.default_freq = opts.default_freq
214 self.pm_config_dirty = True
215
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400216 # Field or group visibility
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400217 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 Boling825764b2018-08-17 16:17:07 -0500223 metric_list.discard(g.group_name)
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400224 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 Boling825764b2018-08-17 16:17:07 -0500229 metric_list.discard(g.group_name)
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400230 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 Boling825764b2018-08-17 16:17:07 -0500236 metric_list.discard(m.name)
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400237 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 Boling825764b2018-08-17 16:17:07 -0500242 metric_list.discard(m.name)
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400243
Chip Boling825764b2018-08-17 16:17:07 -0500244 # Frequency overrides.
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400245 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 Boling825764b2018-08-17 16:17:07 -0500257 'yellow') +
258 self.colorize(oo[g.group_name],
259 'blue') +
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400260 " is not an integer... ignored")
261 del oo[g.group_name]
262 self.pm_config_dirty = True
Chip Boling825764b2018-08-17 16:17:07 -0500263 metric_list.discard(g.group_name)
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400264 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 Boling825764b2018-08-17 16:17:07 -0500271 'yellow') +
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400272 self.colorize(oo[m.name],
Chip Boling825764b2018-08-17 16:17:07 -0500273 'blue') +
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400274 " is not an integer... ignored")
275 del oo[m.name]
276 self.pm_config_dirty = True
Chip Boling825764b2018-08-17 16:17:07 -0500277 metric_list.discard(m.name)
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400278
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 Boling825764b2018-08-17 16:17:07 -0500285 self.poutput(self.colorize('Warning: ', 'yellow') +
286 'the parameter' + ' ' +
287 self.colorize(o, 'blue') + ' is not ' +
Sergio Slobodrian4236ade2017-03-17 22:01:20 -0400288 'a ' + field + ' name... ignored')
289 if oo:
290 return
291
Chip Boling825764b2018-08-17 16:17:07 -0500292 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 Slobodrian4236ade2017-03-17 22:01:20 -0400297 ' is set to ' + self.colorize('True', 'blue'))
298 return
Chip Boling825764b2018-08-17 16:17:07 -0500299
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 Slobodrian4236ade2017-03-17 22:01:20 -0400308 self.poutput("Success")
309 return
310
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400311 elif line.strip() == "commit" and self.pm_config_dirty:
khenaidoo108f05c2017-07-06 11:15:29 -0400312 stub = self.get_stub()
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400313 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 Boling825764b2018-08-17 16:17:07 -0500316
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400317 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 Slobodriana95f99b2017-03-21 10:22:47 -0400323 self.poutput,show_nulls=True)
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400324 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 Slobodriana95f99b2017-03-21 10:22:47 -0400331 print_pb_as_table('', g, omit_fields, self.poutput,
332 show_nulls=True)
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400333 if g.enabled:
334 state = 'enabled'
335 else:
336 state = 'disabled'
337 print_pb_list_as_table(
Sergio Slobodriana4b89c02017-04-03 12:48:36 -0400338 'Metric group {} is {}'.format(g.group_name,state),
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400339 g.metrics, {'enabled', 'sample_freq'}, self.poutput,
Sergio Slobodriana95f99b2017-03-21 10:22:47 -0400340 dividers=100, show_nulls=True)
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400341 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 Slobodrian038bd3c2017-03-22 15:53:25 -0400347 omit_fields, self.poutput, dividers=100,
348 show_nulls=True)
Sergio Slobodrian901bf4e2017-03-17 12:54:39 -0400349
Zsolt Haraszti80175202016-12-24 00:17:51 -0800350 def do_flows(self, line):
Zsolt Harasztid036b7e2016-12-23 15:36:01 -0800351 """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
ggowdru236bd952017-06-20 20:32:55 -0700361 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 Fang01f2e852017-06-28 17:24:58 -0700368 @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),
377 ])
378 def do_img_dnld_request(self, line, opts):
379 """
380 Request image download to a device
381 """
382 device = self.get_device(depth=-1)
383 self.poutput('device_id {}'.format(device.id))
384 self.poutput('name {}'.format(opts.name))
385 self.poutput('url {}'.format(opts.url))
386 self.poutput('crc {}'.format(opts.crc))
387 self.poutput('version {}'.format(opts.version))
388 try:
389 device_id = device.id
390 if device_id and opts.name and opts.url:
391 kw = dict(id=device_id)
392 kw['name'] = opts.name
393 kw['url'] = opts.url
394 else:
395 self.poutput('Device ID and URL are needed')
396 raise Exception('Device ID and URL are needed')
397 except Exception as e:
398 self.poutput('Error request img dnld {}. Error:{}'.format(device_id, e))
399 return
400 kw['crc'] = long(opts.crc)
401 kw['image_version'] = opts.version
402 response = None
403 try:
404 request = voltha_pb2.ImageDownload(**kw)
405 stub = self.get_stub()
406 response = stub.DownloadImage(request)
407 except Exception as e:
408 self.poutput('Error download image {}. Error:{}'.format(kw['id'], e))
409 return
410 name = enum2name(common_pb2.OperationResp,
411 'OperationReturnCode', response.code)
412 self.poutput('response: {}'.format(name))
413 self.poutput('{}'.format(response))
414
415 @options([
416 make_option('-n', '--name', action='store', dest='name',
417 help="Image name"),
418 ])
419 def do_img_dnld_status(self, line, opts):
420 """
421 Get a image download status
422 """
423 device = self.get_device(depth=-1)
424 self.poutput('device_id {}'.format(device.id))
425 self.poutput('name {}'.format(opts.name))
426 try:
427 device_id = device.id
428 if device_id and opts.name:
429 kw = dict(id=device_id)
430 kw['name'] = opts.name
431 else:
432 self.poutput('Device ID, Image Name are needed')
433 raise Exception('Device ID, Image Name are needed')
434 except Exception as e:
435 self.poutput('Error get img dnld status {}. Error:{}'.format(device_id, e))
436 return
437 status = None
438 try:
439 img_dnld = voltha_pb2.ImageDownload(**kw)
440 stub = self.get_stub()
441 status = stub.GetImageDownloadStatus(img_dnld)
442 except Exception as e:
443 self.poutput('Error get img dnld status {}. Error:{}'.format(device_id, e))
444 return
445 fields_to_omit = {
446 'crc',
447 'local_dir',
448 }
449 try:
450 print_pb_as_table('ImageDownload Status:', status, fields_to_omit, self.poutput)
451 except Exception, e:
452 self.poutput('Error {}. Error:{}'.format(device_id, e))
453
454 def do_img_dnld_list(self, line):
455 """
456 List all image download records for a given device
457 """
458 device = self.get_device(depth=-1)
459 device_id = device.id
460 self.poutput('Get all img dnld records {}'.format(device_id))
461 try:
462 stub = self.get_stub()
463 img_dnlds = stub.ListImageDownloads(voltha_pb2.ID(id=device_id))
464 except Exception, e:
465 self.poutput('Error list img dnlds {}. Error:{}'.format(device_id, e))
466 return
467 fields_to_omit = {
468 'crc',
469 'local_dir',
470 }
471 try:
472 print_pb_list_as_table('ImageDownloads:', img_dnlds.items, fields_to_omit, self.poutput)
473 except Exception, e:
474 self.poutput('Error {}. Error:{}'.format(device_id, e))
475
476
477 @options([
478 make_option('-n', '--name', action='store', dest='name',
479 help="Image name"),
480 ])
481 def do_img_dnld_cancel(self, line, opts):
482 """
483 Cancel a requested image download
484 """
485 device = self.get_device(depth=-1)
486 self.poutput('device_id {}'.format(device.id))
487 self.poutput('name {}'.format(opts.name))
488 device_id = device.id
489 try:
490 if device_id and opts.name:
491 kw = dict(id=device_id)
492 kw['name'] = opts.name
493 else:
494 self.poutput('Device ID, Image Name are needed')
495 raise Exception('Device ID, Image Name are needed')
496 except Exception as e:
497 self.poutput('Error cancel sw dnld {}. Error:{}'.format(device_id, e))
498 return
499 response = None
500 try:
501 img_dnld = voltha_pb2.ImageDownload(**kw)
502 stub = self.get_stub()
503 img_dnld = stub.GetImageDownload(img_dnld)
504 response = stub.CancelImageDownload(img_dnld)
505 except Exception as e:
506 self.poutput('Error cancel sw dnld {}. Error:{}'.format(device_id, e))
507 return
508 name = enum2name(common_pb2.OperationResp,
509 'OperationReturnCode', response.code)
510 self.poutput('response: {}'.format(name))
511 self.poutput('{}'.format(response))
512
Scott Bakerd3190952018-09-04 15:47:28 -0700513 def help_simulate_alarm(self):
514 self.poutput(
515'''
516simulate_alarm <alarm_name> [-b <bit rate>] [-c] [-d <drift>] [-e <eqd>]
517 [-i <interface id>] [-o <onu device id>] [-p <port type name>]
518
519<name> is the name of the alarm to raise. Other rguments are alarm specific
520and only have meaning in the context of a particular alarm. Below is a list
521of the alarms that may be raised:
522
523simulate_alarm los -i <interface_id> -p <port_type_name>
524simulate_alarm dying_gasp -i <interface_id> -o <onu_device_id>
525simulate_alarm onu_los -i <interface_id> -o <onu_device_id>
526simulate_alarm onu_lopc_miss -i <interface_id> -o <onu_device_id>
527simulate_alarm onu_lopc_mic -i <interface_id> -o <onu_device_id>
528simulate_alarm onu_lob -i <interface_id> -o <onu_device_id>
529simulate_alarm onu_signal_degrade -i <interface_id> -o <onu_device_id>
530 -b <bit_rate>
531simulate_alarm onu_drift_of_window -i <interface_id>
532 -o <onu_device_id> -d <drift> -e <eqd>
533simulate_alarm onu_signal_fail -i <interface_id> -o <onu_device_id>
534 -b <bit_rate>
535simulate_alarm onu_activation -i <interface_id> -o <onu_device_id>
536simulate_alarm onu_startup -i <interface_id> -o <onu_device_id>
537simulate_alarm onu_discovery -i <interface_id> -s <onu_serial_number>
538
539If the -c option is specified then the alarm will be cleared. By default,
540it will be raised. Note that only some alarms can be cleared.
541'''
542 )
543
544 @options([
545 make_option('-c', '--clear', action='store_true', default=False,
546 help="Clear alarm instead of raising"),
547 make_option('-b', '--inverse_bit_error_rate', action='store', dest='inverse_bit_error_rate',
548 help="Inverse bit error rate", default=0, type="int"),
549 make_option('-d', '--drift', action='store', dest='drift',
550 help="Drift", default=0, type="int"),
551 make_option('-e', '--new_eqd', action='store', dest='new_eqd',
552 help="New EQD", default=0, type="int"),
553 make_option('-i', '--intf_id', action='store', dest='intf_id',
554 help="Interface ID", default=""),
555 make_option('-o', '--onu_device_id', action='store', dest='onu_device_id',
556 help="ONU device ID", default=""),
557 make_option('-p', '--port_type_name', action='store', dest='port_type_name',
558 help="Port type name", default=""),
559 make_option('-s', '--onu_serial_number', action='store', dest='onu_serial_number',
560 help="ONU Serial Number", default=""),
561 ])
562 def do_simulate_alarm(self, line, opts):
563 indicator = line
564 device = self.get_device(depth=-1)
565 device_id = device.id
566
567 alarm_args = {"los": ["intf_id", "port_type_name"],
568 "dying_gasp": ["intf_id", "onu_device_id"],
569 "onu_los": ["intf_id", "onu_device_id"],
570 "onu_lopc_miss": ["intf_id", "onu_device_id"],
571 "onu_lopc_mic": ["intf_id", "onu_device_id"],
572 "onu_lob": ["intf_id", "onu_device_id"],
573 "onu_signal_degrade": ["intf_id", "onu_device_id", "inverse_bit_error_rate"],
574 "onu_drift_of_window": ["intf_id", "onu_device_id", "drift", "new_eqd"],
575 "onu_signal_fail": ["intf_id", "onu_device_id", "inverse_bit_error_rate"],
576 "onu_activation": ["intf_id", "onu_device_id"],
577 "onu_startup": ["intf_id", "onu_device_id"],
578 "onu_discovery": ["intf_id", "onu_serial_number"]
579 }
580 try:
581 if indicator not in alarm_args:
582 self.poutput("Unknown alarm indicator %s. Valid choices are %s." % (indicator,
583 ", ".join(alarm_args.keys())))
584 raise Exception("Unknown alarm indicator %s" % indicator)
585
586 for arg_name in alarm_args[indicator]:
587 if not getattr(opts, arg_name):
588 self.poutput("Option %s is required for alarm %s. See help." % (arg_name, indicator))
589 raise Exception("Option %s is required for alarm %s" % (arg_name, indicator))
590
591 # TODO: check for required arguments
592 kw = dict(id=device_id)
593
594 kw["indicator"] = indicator
595 kw["intf_id"] = opts.intf_id
596 kw["onu_device_id"] = opts.onu_device_id
597 kw["port_type_name"] = opts.port_type_name
598 kw["inverse_bit_error_rate"] = opts.inverse_bit_error_rate
599 kw["drift"] = opts.drift
600 kw["new_eqd"] = opts.new_eqd
601 kw["onu_serial_number"] = opts.onu_serial_number
602
603 if opts.clear:
604 kw["operation"] = voltha_pb2.SimulateAlarmRequest.CLEAR
605 else:
606 kw["operation"] = voltha_pb2.SimulateAlarmRequest.RAISE
607 except Exception as e:
608 self.poutput('Error simulate alarm {}. Error:{}'.format(device_id, e))
609 return
610 response = None
611 try:
612 simulate_alarm = voltha_pb2.SimulateAlarmRequest(**kw)
613 stub = self.get_stub()
614 response = stub.SimulateAlarm(simulate_alarm)
615 except Exception as e:
616 self.poutput('Error simulate alarm {}. Error:{}'.format(kw['id'], e))
617 return
618 name = enum2name(common_pb2.OperationResp,
619 'OperationReturnCode', response.code)
620 self.poutput('response: {}'.format(name))
621 self.poutput('{}'.format(response))
622
Lydia Fang01f2e852017-06-28 17:24:58 -0700623 @options([
624 make_option('-n', '--name', action='store', dest='name',
625 help="Image name"),
626 make_option('-s', '--save', action='store', dest='save_config',
627 help="Save Config", default="True"),
628 make_option('-d', '--dir', action='store', dest='local_dir',
629 help="Image on device location"),
630 ])
631 def do_img_activate(self, line, opts):
632 """
633 Activate an image update on device
634 """
635 device = self.get_device(depth=-1)
636 device_id = device.id
637 try:
638 if device_id and opts.name and opts.local_dir:
639 kw = dict(id=device_id)
640 kw['name'] = opts.name
641 kw['local_dir'] = opts.local_dir
642 else:
643 self.poutput('Device ID, Image Name, and Location are needed')
644 raise Exception('Device ID, Image Name, and Location are needed')
645 except Exception as e:
646 self.poutput('Error activate image {}. Error:{}'.format(device_id, e))
647 return
648 kw['save_config'] = json.loads(opts.save_config.lower())
649 self.poutput('activate image update {} {} {} {}'.format( \
650 kw['id'], kw['name'],
651 kw['local_dir'], kw['save_config']))
652 response = None
653 try:
654 img_dnld = voltha_pb2.ImageDownload(**kw)
655 stub = self.get_stub()
656 img_dnld = stub.GetImageDownload(img_dnld)
657 response = stub.ActivateImageUpdate(img_dnld)
658 except Exception as e:
659 self.poutput('Error activate image {}. Error:{}'.format(kw['id'], e))
660 return
661 name = enum2name(common_pb2.OperationResp,
662 'OperationReturnCode', response.code)
663 self.poutput('response: {}'.format(name))
664 self.poutput('{}'.format(response))
665
666 @options([
667 make_option('-n', '--name', action='store', dest='name',
668 help="Image name"),
669 make_option('-s', '--save', action='store', dest='save_config',
670 help="Save Config", default="True"),
671 make_option('-d', '--dir', action='store', dest='local_dir',
672 help="Image on device location"),
673 ])
674 def do_img_revert(self, line, opts):
675 """
676 Revert an image update on device
677 """
678 device = self.get_device(depth=-1)
679 device_id = device.id
680 try:
681 if device_id and opts.name and opts.local_dir:
682 kw = dict(id=device_id)
683 kw['name'] = opts.name
684 kw['local_dir'] = opts.local_dir
685 else:
686 self.poutput('Device ID, Image Name, and Location are needed')
687 raise Exception('Device ID, Image Name, and Location are needed')
688 except Exception as e:
689 self.poutput('Error revert image {}. Error:{}'.format(device_id, e))
690 return
691 kw['save_config'] = json.loads(opts.save_config.lower())
692 self.poutput('revert image update {} {} {} {}'.format( \
693 kw['id'], kw['name'],
694 kw['local_dir'], kw['save_config']))
695 response = None
696 try:
697 img_dnld = voltha_pb2.ImageDownload(**kw)
698 stub = self.get_stub()
699 img_dnld = stub.GetImageDownload(img_dnld)
700 response = stub.RevertImageUpdate(img_dnld)
701 except Exception as e:
702 self.poutput('Error revert image {}. Error:{}'.format(kw['id'], e))
703 return
704 name = enum2name(common_pb2.OperationResp,
705 'OperationReturnCode', response.code)
706 self.poutput('response: {}'.format(name))
707 self.poutput('{}'.format(response))