| #! /usr/bin/python |
| |
| # Copyright 2013 Linaro Limited |
| # Author Matt Hart <matthew.hart@linaro.org> |
| # |
| # This program is free software; you can redistribute it and/or modify |
| # it under the terms of the GNU General Public License as published by |
| # the Free Software Foundation; either version 2 of the License, or |
| # (at your option) any later version. |
| # |
| # This program is distributed in the hope that it will be useful, |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| # GNU General Public License for more details. |
| # |
| # You should have received a copy of the GNU General Public License |
| # along with this program; if not, write to the Free Software |
| # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| # MA 02110-1301, USA. |
| |
| import logging |
| import pexpect |
| from lavapdu.drivers.driver import PDUDriver |
| log = logging.getLogger(__name__) |
| |
| |
| class APCBase(PDUDriver): |
| connection = None |
| |
| def __init__(self, hostname, settings): |
| self.hostname = hostname |
| log.debug(settings) |
| self.settings = settings |
| telnetport = 23 |
| if "telnetport" in settings: |
| telnetport = settings["telnetport"] |
| self.exec_string = "/usr/bin/telnet %s %d" % (hostname, telnetport) |
| self.get_connection() |
| super(APCBase, self).__init__() |
| |
| @classmethod |
| def accepts(cls, drivername): |
| log.debug(drivername) |
| return False |
| |
| def port_interaction(self, command, port_number): |
| log.debug("Running port_interaction from APCBase") |
| self._port_interaction(command, # pylint: disable=no-member |
| port_number) |
| |
| def get_connection(self): |
| log.debug("Connecting to APC PDU with: %s", self.exec_string) |
| # only uncomment this line for FULL debug when developing |
| # self.connection = pexpect.spawn(self.exec_string, logfile=sys.stdout) |
| self.connection = pexpect.spawn(self.exec_string) |
| self._pdu_login("apc", "apc") |
| |
| def _cleanup(self): |
| self._pdu_logout() # pylint: disable=no-member |
| |
| def _bombout(self): |
| log.debug("Bombing out of driver: %s", self.connection) |
| self.connection.close(force=True) |
| del self |
| |
| def _pdu_login(self, username, password): |
| log.debug("attempting login with username %s, password %s", |
| username, password) |
| self.connection.send("\r") |
| self.connection.expect("User Name :") |
| self.connection.send("%s\r" % username) |
| self.connection.expect("Password :") |
| self.connection.send("%s\r" % password) |