blob: c8fa59499fe67fb295cfc287e563698562587eef [file] [log] [blame]
Neels Hofmeyr17c139e2017-04-12 02:42:02 +02001# osmo_gsm_tester: specifics for running an osmo-bts-trx
Neels Hofmeyr3531a192017-03-28 14:30:28 +02002#
3# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Neels Hofmeyr <neels@hofmeyr.de>
6#
7# This program is free software: you can redistribute it and/or modify
Harald Welte27205342017-06-03 09:51:45 +02008# it under the terms of the GNU General Public License as
Neels Hofmeyr3531a192017-03-28 14:30:28 +02009# 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
Harald Welte27205342017-06-03 09:51:45 +020015# GNU General Public License for more details.
Neels Hofmeyr3531a192017-03-28 14:30:28 +020016#
Harald Welte27205342017-06-03 09:51:45 +020017# You should have received a copy of the GNU General Public License
Neels Hofmeyr3531a192017-03-28 14:30:28 +020018# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import os
Neels Hofmeyr943c81d2017-05-22 20:16:03 +020021import pprint
Neels Hofmeyr206803d2017-05-29 03:45:51 +020022from . import log, config, util, template, process, event_loop
Neels Hofmeyr3531a192017-03-28 14:30:28 +020023
24class OsmoBtsTrx(log.Origin):
25 suite_run = None
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020026 bsc = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020027 run_dir = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020028 inst = None
29 env = None
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020030 proc_trx = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020031
32 BIN_TRX = 'osmo-trx'
33 BIN_BTS_TRX = 'osmo-bts-trx'
34 BIN_PCU = 'osmo-pcu'
35
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020036 CONF_BTS_TRX = 'osmo-bts-trx.cfg'
37
Neels Hofmeyr3531a192017-03-28 14:30:28 +020038 def __init__(self, suite_run, conf):
Neels Hofmeyr1a7a3f02017-06-10 01:18:27 +020039 super().__init__(log.C_RUN, OsmoBtsTrx.BIN_BTS_TRX)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020040 self.suite_run = suite_run
41 self.conf = conf
Neels Hofmeyr3531a192017-03-28 14:30:28 +020042 self.env = {}
43
Neels Hofmeyrd41dae92017-05-22 19:58:41 +020044 def remote_addr(self):
45 # FIXME
46 return '127.0.0.1'
47
Neels Hofmeyr3531a192017-03-28 14:30:28 +020048 def start(self):
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020049 if self.bsc is None:
50 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be started')
Neels Hofmeyr3531a192017-03-28 14:30:28 +020051 self.suite_run.poll()
52
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020053 self.log('Starting to connect to', self.bsc)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020054 self.run_dir = util.Dir(self.suite_run.trial.get_run_dir().new_dir(self.name()))
55 self.configure()
56
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020057 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst(OsmoBtsTrx.BIN_BTS_TRX)))
Your Name3c6673a2017-04-08 18:52:39 +020058 lib = self.inst.child('lib')
59 if not os.path.isdir(lib):
60 raise RuntimeError('No lib/ in %r' % self.inst)
Pau Espin Pedrole39c6f12017-05-08 16:21:38 +020061 self.env = { 'LD_LIBRARY_PATH': util.prepend_library_path(lib) }
Neels Hofmeyr3531a192017-03-28 14:30:28 +020062
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020063 self.proc_trx = self.launch_process(OsmoBtsTrx.BIN_TRX, '-x')
64 self.log('Waiting for osmo-trx to start up...')
Neels Hofmeyr206803d2017-05-29 03:45:51 +020065 event_loop.wait(self, self.trx_ready)
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020066 self.proc_trx.log(self.proc_trx.get_stdout_tail(1))
Neels Hofmeyr6c8d9492017-06-17 17:44:05 +020067 self.log('Give some grace time (hopefully to avoid clock skews)')
68 event_loop.sleep(self, 5)
69
Pau Espin Pedrol6ab98982017-05-12 16:07:35 +020070 self.launch_process(OsmoBtsTrx.BIN_BTS_TRX, '-r', '1',
71 '-c', os.path.abspath(self.config_file),
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020072 '-i', self.bsc.addr())
Neels Hofmeyr3531a192017-03-28 14:30:28 +020073 #self.launch_process(OsmoBtsTrx.BIN_PCU, '-r', '1')
74 self.suite_run.poll()
75
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020076 def trx_ready(self):
77 if not self.proc_trx or not self.proc_trx.is_running:
78 return False
79 return '-- Transceiver active with' in (self.proc_trx.get_stdout() or '')
80
Neels Hofmeyr3531a192017-03-28 14:30:28 +020081 def launch_process(self, binary_name, *args):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020082 binary = os.path.abspath(self.inst.child('bin', binary_name))
83 run_dir = self.run_dir.new_dir(binary_name)
84 if not os.path.isfile(binary):
85 raise RuntimeError('Binary missing: %r' % binary)
86 proc = process.Process(binary_name, run_dir,
87 (binary,) + args,
88 env=self.env)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020089 self.suite_run.remember_to_stop(proc)
90 proc.launch()
Neels Hofmeyrfd39f3e2017-05-07 02:02:35 +020091 return proc
Neels Hofmeyr3531a192017-03-28 14:30:28 +020092
93 def configure(self):
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +020094 if self.bsc is None:
95 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be configured')
Neels Hofmeyr17c139e2017-04-12 02:42:02 +020096 self.config_file = self.run_dir.new_file(OsmoBtsTrx.CONF_BTS_TRX)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020097 self.dbg(config_file=self.config_file)
98
99 values = dict(osmo_bts_trx=config.get_defaults('osmo_bts_trx'))
100 config.overlay(values, self.suite_run.config())
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +0200101 config.overlay(values, dict(osmo_bts_trx=dict(oml_remote_ip=self.bsc.addr())))
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200102 config.overlay(values, dict(osmo_bts_trx=self.conf))
Neels Hofmeyr943c81d2017-05-22 20:16:03 +0200103
104 self.dbg('OSMO-BTS-TRX CONFIG:\n' + pprint.pformat(values))
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200105
106 with open(self.config_file, 'w') as f:
Neels Hofmeyr17c139e2017-04-12 02:42:02 +0200107 r = template.render(OsmoBtsTrx.CONF_BTS_TRX, values)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200108 self.dbg(r)
109 f.write(r)
110
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +0200111 def conf_for_bsc(self):
112 values = config.get_defaults('bsc_bts')
Neels Hofmeyr17c139e2017-04-12 02:42:02 +0200113 config.overlay(values, config.get_defaults('osmo_bts_trx'))
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200114 config.overlay(values, self.conf)
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200115 self.dbg(conf=values)
116 return values
117
Neels Hofmeyrc4ba4a62017-05-18 19:31:44 +0200118 def set_bsc(self, bsc):
119 self.bsc = bsc
Neels Hofmeyr3531a192017-03-28 14:30:28 +0200120
121# vim: expandtab tabstop=4 shiftwidth=4