summaryrefslogtreecommitdiffstats
path: root/src/target/trx_toolkit/trx_list.py
blob: 8b4013dd345362d34a79d8441c8de04d34b647f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# TRX Toolkit
# Transceiver list implementation
#
# (C) 2019 by Vadim Yanitskiy <axilirator@gmail.com>
#
# All Rights Reserved
#
# 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.

class TRXList:
	""" Transceiver list implementation.

	This class is a simple wrapper around generic Python's list.
	The aim is to simplify management of multiple Transceiver
	instances, e.g. appending, removing and finding them.

	"""

	def __init__(self):
		self.trx_list = []

	def __getitem__(self, i):
		return self.trx_list[i]

	def find_trx(self, remote_addr, base_port, child_idx = 0):
		for trx in self.trx_list:
			if trx.remote_addr != remote_addr:
				continue
			if trx.base_port != base_port:
				continue
			if trx.child_idx != child_idx:
				continue
			return trx

		return None

	def add_trx(self, trx):
		if trx in self.trx_list:
			raise IndexError("TRX '%s' is already in the list" % trx)
		if self.find_trx(trx.remote_addr, trx.base_port, trx.child_idx):
			raise IndexError("TRX '%s' has duplicate in the list" % trx)

		self.trx_list.append(trx)

	def del_trx(self, trx):
		if trx not in self.trx_list:
			raise IndexError("TRX '%s' is not in the list" % trx)
		self.trx_list.remove(trx)