blob: 6a030ac986beb8a4bd2308e8aacda9e67129e854 [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():
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +020024 resource_schema = RunNode.schema()
Pau Espin Pedrolea8c3d42020-05-04 12:05:05 +020025 schema.register_resource_schema('run_node', resource_schema)
26
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +010027
28class RunNode(log.Origin):
29
30 T_LOCAL = 'local'
31 T_REM_SSH = 'ssh'
32
Pau Espin Pedrol6e0b6fb2020-05-25 19:49:29 +020033 def __init__(self, type=None, run_addr=None, ssh_user=None, ssh_addr=None, run_label=None):
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +010034 super().__init__(log.C_RUN, 'runnode')
35 self._type = type
36 self._run_addr = run_addr
37 self._ssh_user = ssh_user
38 self._ssh_addr = ssh_addr
Pau Espin Pedrol6e0b6fb2020-05-25 19:49:29 +020039 self._run_label = run_label
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +010040 if not self._type:
41 raise log.Error('run_type not set')
42 if not self._run_addr:
43 raise log.Error('run_addr not set')
44 if self._type == RunNode.T_LOCAL and (self._ssh_user or self._ssh_addr):
45 raise log.Error('run_type=%s but ssh info set' % RunNode.T_LOCAL)
46 if self._type == RunNode.T_REM_SSH and not (self._ssh_user and self._ssh_addr):
47 raise log.Error('run_type=%s but ssh info NOT set' % RunNode.T_LOCAL)
48
49 if self._type == RunNode.T_LOCAL:
50 self.set_name('run-' + self._run_addr)
51 else:
52 self.set_name('run-' + self._run_addr + "(" + self._ssh_user + '@' + self._ssh_addr + ")")
53
54 @classmethod
55 def from_conf(cls, conf):
Pau Espin Pedrol6e0b6fb2020-05-25 19:49:29 +020056 return cls(conf.get('run_type', None), conf.get('run_addr', None),
57 conf.get('ssh_user', None), conf.get('ssh_addr', None),
58 conf.get('run_label', None))
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +010059
Pau Espin Pedrol1abff4e2020-05-26 12:32:19 +020060 @classmethod
61 def schema(cls):
62 resource_schema = {
63 'run_type': schema.STR,
64 'run_addr': schema.IPV4,
65 'ssh_user': schema.STR,
66 'ssh_addr': schema.IPV4,
67 'run_label': schema.STR,
68 }
69 return resource_schema
70
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +010071 def is_local(self):
72 return self._type == RunNode.T_LOCAL
73
74 def __str__(self):
75 return self.name()
76
77 def run_type(self):
78 return self._type
79
80 def run_addr(self):
81 return self._run_addr
82
83 def ssh_user(self):
84 return self._ssh_user
85
86 def ssh_addr(self):
87 return self._ssh_addr
88
Pau Espin Pedrol6e0b6fb2020-05-25 19:49:29 +020089 def run_label(self):
90 return self._run_label
91
Pau Espin Pedrol116a2c42020-02-11 17:41:13 +010092# vim: expandtab tabstop=4 shiftwidth=4