blob: 26c85df5d6837573a6e40a67565b076f4ad75d8b [file] [log] [blame]
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +01001# osmo_gsm_tester: run_node: object holding information on a target env to run stuff.
2#
3# Copyright (C) 2020 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Pau Espin Pedrol <pespin@sysmocom.de>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
Pau Espin Pedrole1a58bd2020-04-10 20:46:07 +020020from ..core import log
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020021from ..core import schema
22
23def on_register_schemas():
24 resource_schema = {
25 'run_type': schema.STR,
26 'run_addr': schema.IPV4,
27 'ssh_user': schema.STR,
28 'ssh_addr': schema.IPV4,
29 }
30 schema.register_resource_schema('run_node', resource_schema)
31
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +010032
33class RunNode(log.Origin):
34
35 T_LOCAL = 'local'
36 T_REM_SSH = 'ssh'
37
38 def __init__(self, type=None, run_addr=None, ssh_user=None, ssh_addr=None):
39 super().__init__(log.C_RUN, 'runnode')
40 self._type = type
41 self._run_addr = run_addr
42 self._ssh_user = ssh_user
43 self._ssh_addr = ssh_addr
44 if not self._type:
45 raise log.Error('run_type not set')
46 if not self._run_addr:
47 raise log.Error('run_addr not set')
48 if self._type == RunNode.T_LOCAL and (self._ssh_user or self._ssh_addr):
49 raise log.Error('run_type=%s but ssh info set' % RunNode.T_LOCAL)
50 if self._type == RunNode.T_REM_SSH and not (self._ssh_user and self._ssh_addr):
51 raise log.Error('run_type=%s but ssh info NOT set' % RunNode.T_LOCAL)
52
53 if self._type == RunNode.T_LOCAL:
54 self.set_name('run-' + self._run_addr)
55 else:
56 self.set_name('run-' + self._run_addr + "(" + self._ssh_user + '@' + self._ssh_addr + ")")
57
58 @classmethod
59 def from_conf(cls, conf):
60 return cls(conf.get('run_type', None), conf.get('run_addr', None), conf.get('ssh_user', None), conf.get('ssh_addr', None))
61
62 def is_local(self):
63 return self._type == RunNode.T_LOCAL
64
65 def __str__(self):
66 return self.name()
67
68 def run_type(self):
69 return self._type
70
71 def run_addr(self):
72 return self._run_addr
73
74 def ssh_user(self):
75 return self._ssh_user
76
77 def ssh_addr(self):
78 return self._ssh_addr
79
80# vim: expandtab tabstop=4 shiftwidth=4