4dbb55cbb0
The common RPC code has been updated to include the following: 8575d87af49ea276341908f83c8c51db13afca44 8b2b0b743e84ceed7841cf470afed6a5da8e1d07 23f602940c64ba408d77ceb8f5ba0f67ee4a18ef 6d0a6c3083218cdac52758a8b6aac6b03402c658 7cac1ac1bd9df36d4e5183afac3b643df10b1d4d 8159efddabb09dd9b7c99963ff7c9de0a6c62b62 Updated to include the following in modules in openstack-common.conf: py3kcompat, sslutils, and versionutils. The update also includes imports from the RPC code Change-Id: I84c5b8e2b17da0018dd69ecb354d123a609afe98
158 lines
5.1 KiB
Python
158 lines
5.1 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012, Nachi Ueno, NTT MCL, 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.
|
|
|
|
from cliff import lister
|
|
from neutronclient.common import utils
|
|
from neutronclient.neutron.v2_0 import NeutronCommand
|
|
from neutronclient.neutron.v2_0.port import _format_fixed_ips
|
|
|
|
from neutron.openstack.common import log as logging
|
|
|
|
|
|
class ProbeCommand(NeutronCommand):
|
|
log = logging.getLogger(__name__ + '.ProbeCommand')
|
|
|
|
def get_debug_agent(self):
|
|
return self.app.debug_agent
|
|
|
|
def run(self, parsed_args):
|
|
self.log.debug('run(%s)', parsed_args)
|
|
self.log.info(_('Unimplemented commands'))
|
|
|
|
|
|
class CreateProbe(ProbeCommand):
|
|
"""Create probe port and interface, then plug it in."""
|
|
|
|
log = logging.getLogger(__name__ + '.CreateProbe')
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(CreateProbe, self).get_parser(prog_name)
|
|
parser.add_argument(
|
|
'id', metavar='network_id',
|
|
help=_('ID of network to probe'))
|
|
parser.add_argument(
|
|
'--device-owner',
|
|
default='network', choices=['network', 'compute'],
|
|
help=_('Owner type of the device: network/compute'))
|
|
return parser
|
|
|
|
def run(self, parsed_args):
|
|
self.log.debug('run(%s)' % parsed_args)
|
|
debug_agent = self.get_debug_agent()
|
|
port = debug_agent.create_probe(parsed_args.id,
|
|
parsed_args.device_owner)
|
|
self.log.info(_('Probe created : %s '), port.id)
|
|
|
|
|
|
class DeleteProbe(ProbeCommand):
|
|
"""Delete probe - delete port then uplug."""
|
|
|
|
log = logging.getLogger(__name__ + '.DeleteProbe')
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(DeleteProbe, self).get_parser(prog_name)
|
|
parser.add_argument(
|
|
'id', metavar='port_id',
|
|
help=_('ID of probe port to delete'))
|
|
return parser
|
|
|
|
def run(self, parsed_args):
|
|
self.log.debug('run(%s)' % parsed_args)
|
|
debug_agent = self.get_debug_agent()
|
|
debug_agent.delete_probe(parsed_args.id)
|
|
self.log.info(_('Probe %s deleted'), parsed_args.id)
|
|
|
|
|
|
class ListProbe(NeutronCommand, lister.Lister):
|
|
"""List probes."""
|
|
|
|
log = logging.getLogger(__name__ + '.ListProbe')
|
|
_formatters = {'fixed_ips': _format_fixed_ips, }
|
|
|
|
def get_debug_agent(self):
|
|
return self.app.debug_agent
|
|
|
|
def get_data(self, parsed_args):
|
|
|
|
debug_agent = self.get_debug_agent()
|
|
info = debug_agent.list_probes()
|
|
columns = len(info) > 0 and sorted(info[0].keys()) or []
|
|
return (columns, (utils.get_item_properties(
|
|
s, columns, formatters=self._formatters, )
|
|
for s in info), )
|
|
|
|
|
|
class ClearProbe(ProbeCommand):
|
|
"""Clear All probes."""
|
|
|
|
log = logging.getLogger(__name__ + '.ClearProbe')
|
|
|
|
def run(self, parsed_args):
|
|
self.log.debug('run(%s)' % parsed_args)
|
|
debug_agent = self.get_debug_agent()
|
|
debug_agent.clear_probe()
|
|
self.log.info(_('All Probes deleted '))
|
|
|
|
|
|
class ExecProbe(ProbeCommand):
|
|
"""Exec commands on the namespace of the probe."""
|
|
|
|
log = logging.getLogger(__name__ + '.ExecProbe')
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(ExecProbe, self).get_parser(prog_name)
|
|
parser.add_argument(
|
|
'id', metavar='port_id',
|
|
help=_('ID of probe port to execute command'))
|
|
parser.add_argument(
|
|
'command', metavar='command',
|
|
nargs='?',
|
|
default=None,
|
|
help=_('Command to execute'))
|
|
return parser
|
|
|
|
def run(self, parsed_args):
|
|
self.log.debug('run(%s)' % parsed_args)
|
|
debug_agent = self.get_debug_agent()
|
|
result = debug_agent.exec_command(parsed_args.id, parsed_args.command)
|
|
self.app.stdout.write(result + '\n')
|
|
|
|
|
|
class PingAll(ProbeCommand):
|
|
"""Ping all fixed_ip."""
|
|
|
|
log = logging.getLogger(__name__ + '.ExecProbe')
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(PingAll, self).get_parser(prog_name)
|
|
parser.add_argument(
|
|
'--timeout', metavar='<timeout>',
|
|
default=10,
|
|
help=_('Ping timeout'))
|
|
parser.add_argument(
|
|
'--id', metavar='network_id',
|
|
default=None,
|
|
help=_('ID of network'))
|
|
return parser
|
|
|
|
def run(self, parsed_args):
|
|
self.log.debug('run(%s)' % parsed_args)
|
|
debug_agent = self.get_debug_agent()
|
|
result = debug_agent.ping_all(parsed_args.id,
|
|
timeout=parsed_args.timeout)
|
|
self.app.stdout.write(result + '\n')
|