81 lines
2.3 KiB
Python
81 lines
2.3 KiB
Python
# Copyright 2015 UnitedStack, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
"""
|
|
Command-line interface to Stetho APIs
|
|
"""
|
|
|
|
import sys
|
|
import logging
|
|
|
|
from cliff import app
|
|
from cliff import commandmanager
|
|
from stetho.stethoclient import agent_api
|
|
from stetho.stethoclient import strutils
|
|
|
|
|
|
VERSION = '0.1'
|
|
STETHO_API_VERSION = '0.1'
|
|
|
|
COMMAND_V1 = {
|
|
'setup-link': agent_api.SetUpLink,
|
|
'teardown-link': agent_api.TearDownLink,
|
|
'add-vlan-to-interface': agent_api.AddVlanToInterface,
|
|
'ping': agent_api.AgentPing,
|
|
'check-ports-on-br': agent_api.CheckPortsOnBr,
|
|
'get-interface': agent_api.GetInterface,
|
|
'check-vlan-interface': agent_api.CheckVlanInterface,
|
|
}
|
|
|
|
COMMANDS = {'0.1': COMMAND_V1}
|
|
|
|
|
|
class StethoShell(app.App):
|
|
|
|
def __init__(self, apiversion):
|
|
super(StethoShell, self).__init__(
|
|
description=__doc__.strip(),
|
|
version=VERSION,
|
|
command_manager=commandmanager.CommandManager('stetho.cli'),
|
|
)
|
|
self.commands = COMMANDS
|
|
for k, v in self.commands[apiversion].items():
|
|
self.command_manager.add_command(k, v)
|
|
|
|
def initialize_app(self, argv):
|
|
self.LOG.debug('initialize_app')
|
|
|
|
def prepare_to_run_command(self, cmd):
|
|
self.LOG.debug('prepare_to_run_command %s', cmd.__class__.__name__)
|
|
|
|
def clean_up(self, cmd, result, err):
|
|
self.LOG.debug('clean_up %s', cmd.__class__.__name__)
|
|
if err:
|
|
self.LOG.debug('got an error: %s', err)
|
|
|
|
|
|
def main(argv=sys.argv[1:]):
|
|
try:
|
|
return StethoShell(STETHO_API_VERSION).run(
|
|
list(map(strutils.safe_decode, argv)))
|
|
except KeyboardInterrupt:
|
|
print "... terminating neutron client"
|
|
return 1
|
|
except Exception as e:
|
|
print(e)
|
|
return 1
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main(sys.argv[1:]))
|