8786c08376
This patch includes append method to ssh_remote.py and to remote.py Change-Id: Iaa7b9ade4de638d8575ebd2b24a36c806ff13755 Implements: blueprint append-to-remote-file
139 lines
4.2 KiB
Python
139 lines
4.2 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
# Copyright (c) 2013 Hortonworks, Inc.
|
|
#
|
|
# 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.
|
|
|
|
import abc
|
|
|
|
from oslo.config import cfg
|
|
import six
|
|
|
|
from sahara import exceptions as ex
|
|
|
|
|
|
# These options are for SSH remote only
|
|
ssh_opts = [
|
|
cfg.IntOpt('global_remote_threshold', default=100,
|
|
help='Maximum number of remote operations that will '
|
|
'be running at the same time. Note that each '
|
|
'remote operation requires its own process to '
|
|
'run.'),
|
|
cfg.IntOpt('cluster_remote_threshold', default=70,
|
|
help='The same as global_remote_threshold, but for '
|
|
'a single cluster.'),
|
|
]
|
|
|
|
|
|
CONF = cfg.CONF
|
|
CONF.register_opts(ssh_opts)
|
|
|
|
|
|
DRIVER = None
|
|
|
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
class RemoteDriver(object):
|
|
@abc.abstractmethod
|
|
def setup_remote(self, engine):
|
|
"""Performs driver initialization."""
|
|
|
|
@abc.abstractmethod
|
|
def get_remote(self, instance):
|
|
"""Returns driver specific Remote."""
|
|
|
|
@abc.abstractmethod
|
|
def get_userdata_template(self):
|
|
"""Returns userdata template preparing instance to work with driver."""
|
|
|
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
class Remote(object):
|
|
@abc.abstractmethod
|
|
def get_neutron_info(self):
|
|
"""Returns dict which later could be passed to get_http_client."""
|
|
|
|
@abc.abstractmethod
|
|
def get_http_client(self, port, info=None):
|
|
"""Returns HTTP client for a given instance's port."""
|
|
|
|
@abc.abstractmethod
|
|
def close_http_sessions(self):
|
|
"""Closes all cached HTTP sessions."""
|
|
|
|
@abc.abstractmethod
|
|
def execute_command(self, cmd, run_as_root=False, get_stderr=False,
|
|
raise_when_error=True, timeout=300):
|
|
"""Execute specified command remotely using existing ssh connection.
|
|
|
|
Return exit code, stdout data and stderr data of the executed command.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def write_file_to(self, remote_file, data, run_as_root=False, timeout=120):
|
|
"""Create remote file and write the given data to it.
|
|
|
|
Uses existing ssh connection.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def append_to_file(self, r_file, data, run_as_root=False, timeout=120):
|
|
"""Append the given data to remote file.
|
|
|
|
Uses existing ssh connection.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def write_files_to(self, files, run_as_root=False, timeout=120):
|
|
"""Copy file->data dictionary in a single ssh connection."""
|
|
|
|
@abc.abstractmethod
|
|
def append_to_files(self, files, run_as_root=False, timeout=120):
|
|
"""Copy file->data dictionary in a single ssh connection."""
|
|
|
|
@abc.abstractmethod
|
|
def read_file_from(self, remote_file, run_as_root=False, timeout=120):
|
|
"""Read remote file from the specified host and return given data."""
|
|
|
|
@abc.abstractmethod
|
|
def replace_remote_string(self, remote_file, old_str, new_str,
|
|
timeout=120):
|
|
"""Replaces strings in remote file using sed command."""
|
|
|
|
|
|
def setup_remote(driver, engine):
|
|
global DRIVER
|
|
|
|
DRIVER = driver
|
|
DRIVER.setup_remote(engine)
|
|
|
|
|
|
def _check_driver_is_loaded():
|
|
if not DRIVER:
|
|
raise ex.SystemError('Remote driver is not loaded. Most probably you '
|
|
'see this error because you are running Sahara '
|
|
'in distributed mode and it is broken. Try '
|
|
'running sahara-all instead.')
|
|
|
|
|
|
def get_remote(instance):
|
|
"""Returns Remote for a given instance."""
|
|
_check_driver_is_loaded()
|
|
return DRIVER.get_remote(instance)
|
|
|
|
|
|
def get_userdata_template():
|
|
"""Returns userdata template as a string."""
|
|
_check_driver_is_loaded()
|
|
return DRIVER.get_userdata_template()
|