2022-11-30 14:28:27 +00:00
|
|
|
#!/bin/python3
|
|
|
|
|
|
|
|
import random
|
2022-12-20 10:13:54 +00:00
|
|
|
import collections
|
2022-12-20 10:25:44 +00:00
|
|
|
import logging
|
2023-02-03 22:07:55 +00:00
|
|
|
import sys
|
2022-11-30 14:28:27 +00:00
|
|
|
from DAS.block import *
|
2022-12-07 14:25:48 +00:00
|
|
|
from bitarray import bitarray
|
|
|
|
from bitarray.util import zeros
|
2023-02-14 01:13:00 +00:00
|
|
|
from collections import deque
|
|
|
|
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-01-26 13:29:12 +00:00
|
|
|
def shuffled(lis):
|
|
|
|
# based on https://stackoverflow.com/a/60342323
|
|
|
|
for index in random.sample(range(len(lis)), len(lis)):
|
|
|
|
yield lis[index]
|
|
|
|
|
2023-02-03 22:07:55 +00:00
|
|
|
def sampleLine(line, limit):
|
|
|
|
""" sample up to 'limit' bits from a bitarray
|
|
|
|
|
|
|
|
Since this is quite expensive, we use a number of heuristics to get it fast.
|
|
|
|
"""
|
|
|
|
if limit == sys.maxsize :
|
|
|
|
return line
|
|
|
|
else:
|
|
|
|
w = line.count(1)
|
|
|
|
if limit >= w :
|
|
|
|
return line
|
|
|
|
else:
|
|
|
|
l = len(line)
|
|
|
|
r = zeros(l)
|
|
|
|
if w < l/10 or limit > l/2 :
|
|
|
|
indices = [ i for i in range(l) if line[i] ]
|
|
|
|
sample = random.sample(indices, limit)
|
|
|
|
for i in sample:
|
|
|
|
r[i] = 1
|
|
|
|
return r
|
|
|
|
else:
|
|
|
|
while limit:
|
|
|
|
i = random.randrange(0, l)
|
|
|
|
if line[i] and not r[i]:
|
|
|
|
r[i] = 1
|
|
|
|
limit -= 1
|
|
|
|
return r
|
|
|
|
|
2023-01-26 13:29:12 +00:00
|
|
|
class NextToSend:
|
|
|
|
def __init__(self, neigh, toSend, id, dim):
|
|
|
|
self.neigh = neigh
|
|
|
|
self.toSend = toSend
|
|
|
|
self.id = id
|
|
|
|
self.dim = dim
|
2023-02-15 14:06:42 +00:00
|
|
|
|
2023-01-25 17:19:18 +00:00
|
|
|
class Neighbor:
|
2023-02-15 14:06:42 +00:00
|
|
|
"""This class implements a node neighbor to monitor sent and received data."""
|
2023-01-25 17:19:18 +00:00
|
|
|
|
|
|
|
def __repr__(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It returns the amount of sent and received data."""
|
2023-01-25 20:38:21 +00:00
|
|
|
return "%d:%d/%d" % (self.node.ID, self.sent.count(1), self.received.count(1))
|
2023-01-25 17:19:18 +00:00
|
|
|
|
2023-01-25 20:36:53 +00:00
|
|
|
def __init__(self, v, blockSize):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It initializes the neighbor with the node and sets counters to zero."""
|
2023-01-25 17:19:18 +00:00
|
|
|
self.node = v
|
2023-01-26 09:08:19 +00:00
|
|
|
self.receiving = zeros(blockSize)
|
2023-01-25 20:36:53 +00:00
|
|
|
self.received = zeros(blockSize)
|
|
|
|
self.sent = zeros(blockSize)
|
2023-01-25 17:19:18 +00:00
|
|
|
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-02-15 14:06:42 +00:00
|
|
|
class Validator:
|
|
|
|
"""This class implements a validator/node in the network."""
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-01-25 20:38:21 +00:00
|
|
|
def __repr__(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It returns the validator ID."""
|
2023-01-25 20:38:21 +00:00
|
|
|
return str(self.ID)
|
|
|
|
|
2023-01-23 17:04:54 +00:00
|
|
|
def __init__(self, ID, amIproposer, logger, shape, rows, columns):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It initializes the validator with the logger, shape and assigned rows/columns."""
|
2023-01-23 17:04:54 +00:00
|
|
|
self.shape = shape
|
2022-11-30 14:28:27 +00:00
|
|
|
FORMAT = "%(levelname)s : %(entity)s : %(message)s"
|
|
|
|
self.ID = ID
|
|
|
|
self.format = {"entity": "Val "+str(self.ID)}
|
2023-01-23 17:04:54 +00:00
|
|
|
self.block = Block(self.shape.blockSize)
|
|
|
|
self.receivedBlock = Block(self.shape.blockSize)
|
2023-02-14 01:13:00 +00:00
|
|
|
self.receivedQueue = []
|
|
|
|
self.sendQueue = deque()
|
2023-01-13 15:51:27 +00:00
|
|
|
self.amIproposer = amIproposer
|
2022-11-30 14:28:27 +00:00
|
|
|
self.logger = logger
|
2023-01-23 17:04:54 +00:00
|
|
|
if self.shape.chi < 1:
|
2022-11-30 14:28:27 +00:00
|
|
|
self.logger.error("Chi has to be greater than 0", extra=self.format)
|
2023-01-23 17:04:54 +00:00
|
|
|
elif self.shape.chi > self.shape.blockSize:
|
2022-11-30 14:28:27 +00:00
|
|
|
self.logger.error("Chi has to be smaller than %d" % blockSize, extra=self.format)
|
|
|
|
else:
|
2023-01-13 15:51:27 +00:00
|
|
|
if amIproposer:
|
2023-01-23 17:04:54 +00:00
|
|
|
self.rowIDs = range(shape.blockSize)
|
|
|
|
self.columnIDs = range(shape.blockSize)
|
2022-12-20 10:13:54 +00:00
|
|
|
else:
|
2023-01-23 17:04:54 +00:00
|
|
|
self.rowIDs = rows[(self.ID*self.shape.chi):(self.ID*self.shape.chi + self.shape.chi)]
|
2023-02-16 16:32:57 +00:00
|
|
|
self.columnIDs = columns[(self.ID*self.shape.chi):(self.ID*self.shape.chi + self.shape.chi)]
|
2023-01-23 17:04:54 +00:00
|
|
|
#if shape.deterministic:
|
|
|
|
# random.seed(self.ID)
|
|
|
|
#self.rowIDs = random.sample(range(self.shape.blockSize), self.shape.chi)
|
|
|
|
#self.columnIDs = random.sample(range(self.shape.blockSize), self.shape.chi)
|
2023-01-25 20:36:53 +00:00
|
|
|
self.rowNeighbors = collections.defaultdict(dict)
|
|
|
|
self.columnNeighbors = collections.defaultdict(dict)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-01-25 23:34:21 +00:00
|
|
|
#statistics
|
|
|
|
self.statsTxInSlot = 0
|
|
|
|
self.statsTxPerSlot = []
|
|
|
|
self.statsRxInSlot = 0
|
|
|
|
self.statsRxPerSlot = []
|
|
|
|
|
2023-01-26 13:29:12 +00:00
|
|
|
# Set uplink bandwidth. In segments (~560 bytes) per timestep (50ms?)
|
|
|
|
# 1 Mbps ~= 1e6 / 20 / 8 / 560 ~= 11
|
|
|
|
# TODO: this should be a parameter
|
2023-02-14 01:09:28 +00:00
|
|
|
self.bwUplink = 110 if not self.amIproposer else 2200 # approx. 10Mbps and 200Mbps
|
2023-01-26 13:29:12 +00:00
|
|
|
|
|
|
|
self.sched = self.nextToSend()
|
|
|
|
|
2022-11-30 14:28:27 +00:00
|
|
|
def logIDs(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It logs the assigned rows and columns."""
|
2023-01-13 15:51:27 +00:00
|
|
|
if self.amIproposer == 1:
|
2022-11-30 14:28:27 +00:00
|
|
|
self.logger.warning("I am a block proposer."% self.ID)
|
|
|
|
else:
|
|
|
|
self.logger.debug("Selected rows: "+str(self.rowIDs), extra=self.format)
|
|
|
|
self.logger.debug("Selected columns: "+str(self.columnIDs), extra=self.format)
|
|
|
|
|
|
|
|
def initBlock(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It initializes the block for the proposer."""
|
|
|
|
if self.amIproposer == 1:
|
|
|
|
self.logger.debug("I am a block proposer.", extra=self.format)
|
|
|
|
self.block = Block(self.shape.blockSize)
|
|
|
|
self.block.fill()
|
|
|
|
#self.block.print()
|
|
|
|
else:
|
|
|
|
self.logger.warning("I am not a block proposer."% self.ID)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2022-12-20 10:13:54 +00:00
|
|
|
def broadcastBlock(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""The block proposer broadcasts the block to all validators."""
|
2023-01-13 15:51:27 +00:00
|
|
|
if self.amIproposer == 0:
|
2023-02-15 14:06:42 +00:00
|
|
|
self.logger.warning("I am not a block proposer", extra=self.format)
|
2022-11-30 14:28:27 +00:00
|
|
|
else:
|
|
|
|
self.logger.debug("Broadcasting my block...", extra=self.format)
|
2023-01-23 17:04:54 +00:00
|
|
|
order = [i for i in range(self.shape.blockSize * self.shape.blockSize)]
|
2022-11-30 14:28:27 +00:00
|
|
|
random.shuffle(order)
|
|
|
|
while(order):
|
|
|
|
i = order.pop()
|
2023-01-23 17:04:54 +00:00
|
|
|
if (random.randint(0,99) >= self.shape.failureRate):
|
2022-12-20 10:13:54 +00:00
|
|
|
self.block.data[i] = 1
|
|
|
|
else:
|
|
|
|
self.block.data[i] = 0
|
2023-01-26 00:12:13 +00:00
|
|
|
|
2023-01-11 16:20:19 +00:00
|
|
|
nbFailures = self.block.data.count(0)
|
2023-01-23 17:04:54 +00:00
|
|
|
measuredFailureRate = nbFailures * 100 / (self.shape.blockSize * self.shape.blockSize)
|
2023-01-16 21:43:52 +00:00
|
|
|
self.logger.debug("Number of failures: %d (%0.02f %%)", nbFailures, measuredFailureRate, extra=self.format)
|
2022-11-30 14:28:27 +00:00
|
|
|
#broadcasted.print()
|
2022-12-20 10:13:54 +00:00
|
|
|
|
|
|
|
def getColumn(self, index):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It returns a given column."""
|
2022-12-20 10:13:54 +00:00
|
|
|
return self.block.getColumn(index)
|
|
|
|
|
|
|
|
def getRow(self, index):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It returns a given row."""
|
2022-12-20 10:13:54 +00:00
|
|
|
return self.block.getRow(index)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-01-25 20:36:53 +00:00
|
|
|
def receiveColumn(self, id, column, src):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It receives the given column if it has been assigned to it."""
|
2022-12-20 10:13:54 +00:00
|
|
|
if id in self.columnIDs:
|
2023-01-25 20:36:53 +00:00
|
|
|
# register receive so that we are not sending back
|
2023-01-26 09:08:19 +00:00
|
|
|
self.columnNeighbors[id][src].receiving |= column
|
2022-12-20 10:13:54 +00:00
|
|
|
self.receivedBlock.mergeColumn(id, column)
|
2023-01-25 23:34:21 +00:00
|
|
|
self.statsRxInSlot += column.count(1)
|
2022-12-20 10:13:54 +00:00
|
|
|
else:
|
|
|
|
pass
|
|
|
|
|
2023-01-25 20:36:53 +00:00
|
|
|
def receiveRow(self, id, row, src):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It receives the given row if it has been assigned to it."""
|
2022-12-20 10:13:54 +00:00
|
|
|
if id in self.rowIDs:
|
2023-01-25 20:36:53 +00:00
|
|
|
# register receive so that we are not sending back
|
2023-01-26 09:08:19 +00:00
|
|
|
self.rowNeighbors[id][src].receiving |= row
|
2022-12-20 10:13:54 +00:00
|
|
|
self.receivedBlock.mergeRow(id, row)
|
2023-01-25 23:34:21 +00:00
|
|
|
self.statsRxInSlot += row.count(1)
|
2022-12-20 10:13:54 +00:00
|
|
|
else:
|
|
|
|
pass
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-02-14 01:11:44 +00:00
|
|
|
def receiveSegment(self, rID, cID, src):
|
|
|
|
# register receive so that we are not sending back
|
|
|
|
if rID in self.rowIDs:
|
|
|
|
if src in self.rowNeighbors[rID]:
|
|
|
|
self.rowNeighbors[rID][src].receiving[cID] = 1
|
|
|
|
if cID in self.columnIDs:
|
|
|
|
if src in self.columnNeighbors[cID]:
|
|
|
|
self.columnNeighbors[cID][src].receiving[rID] = 1
|
|
|
|
if not self.receivedBlock.getSegment(rID, cID):
|
|
|
|
self.receivedBlock.setSegment(rID, cID)
|
2023-02-14 01:13:00 +00:00
|
|
|
self.receivedQueue.append((rID, cID))
|
2023-02-14 01:11:44 +00:00
|
|
|
# else:
|
|
|
|
# self.statsRxDuplicateInSlot += 1
|
|
|
|
self.statsRxInSlot += 1
|
|
|
|
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2022-12-20 10:13:54 +00:00
|
|
|
def receiveRowsColumns(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It receives rows and columns."""
|
2023-01-13 15:51:27 +00:00
|
|
|
if self.amIproposer == 1:
|
2022-11-30 14:28:27 +00:00
|
|
|
self.logger.error("I am a block proposer", extra=self.format)
|
|
|
|
else:
|
|
|
|
self.logger.debug("Receiving the data...", extra=self.format)
|
2022-12-20 10:13:54 +00:00
|
|
|
#self.logger.debug("%s -> %s", self.block.data, self.receivedBlock.data, extra=self.format)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2022-12-20 10:13:54 +00:00
|
|
|
self.block.merge(self.receivedBlock)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-01-26 09:08:19 +00:00
|
|
|
for neighs in self.rowNeighbors.values():
|
|
|
|
for neigh in neighs.values():
|
|
|
|
neigh.received |= neigh.receiving
|
|
|
|
neigh.receiving.setall(0)
|
|
|
|
|
|
|
|
for neighs in self.columnNeighbors.values():
|
|
|
|
for neigh in neighs.values():
|
|
|
|
neigh.received |= neigh.receiving
|
|
|
|
neigh.receiving.setall(0)
|
2023-02-15 14:06:42 +00:00
|
|
|
|
2023-02-14 01:13:00 +00:00
|
|
|
# add newly received segments to the send queue
|
|
|
|
self.sendQueue.extend(self.receivedQueue)
|
|
|
|
self.receivedQueue.clear()
|
|
|
|
|
2023-01-25 23:34:21 +00:00
|
|
|
def updateStats(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It updates the stats related to sent and received data."""
|
2023-01-25 23:34:21 +00:00
|
|
|
self.logger.debug("Stats: tx %d, rx %d", self.statsTxInSlot, self.statsRxInSlot, extra=self.format)
|
|
|
|
self.statsRxPerSlot.append(self.statsRxInSlot)
|
|
|
|
self.statsTxPerSlot.append(self.statsTxInSlot)
|
|
|
|
self.statsRxInSlot = 0
|
|
|
|
self.statsTxInSlot = 0
|
|
|
|
|
2023-02-03 22:07:55 +00:00
|
|
|
def nextColumnToSend(self, columnID, limit = sys.maxsize):
|
2022-12-20 10:13:54 +00:00
|
|
|
line = self.getColumn(columnID)
|
|
|
|
if line.any():
|
|
|
|
self.logger.debug("col %d -> %s", columnID, self.columnNeighbors[columnID] , extra=self.format)
|
2023-01-26 13:29:12 +00:00
|
|
|
for n in shuffled(list(self.columnNeighbors[columnID].values())):
|
2023-01-25 20:36:53 +00:00
|
|
|
|
|
|
|
# if there is anything new to send, send it
|
|
|
|
toSend = line & ~n.sent & ~n.received
|
|
|
|
if (toSend).any():
|
2023-02-03 22:07:55 +00:00
|
|
|
toSend = sampleLine(toSend, limit)
|
2023-01-26 13:29:12 +00:00
|
|
|
yield NextToSend(n, toSend, columnID, 1)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2023-02-03 22:07:55 +00:00
|
|
|
def nextRowToSend(self, rowID, limit = sys.maxsize):
|
2022-12-20 10:13:54 +00:00
|
|
|
line = self.getRow(rowID)
|
|
|
|
if line.any():
|
|
|
|
self.logger.debug("row %d -> %s", rowID, self.rowNeighbors[rowID], extra=self.format)
|
2023-01-26 13:29:12 +00:00
|
|
|
for n in shuffled(list(self.rowNeighbors[rowID].values())):
|
2023-01-25 20:36:53 +00:00
|
|
|
|
|
|
|
# if there is anything new to send, send it
|
|
|
|
toSend = line & ~n.sent & ~n.received
|
|
|
|
if (toSend).any():
|
2023-02-03 22:07:55 +00:00
|
|
|
toSend = sampleLine(toSend, limit)
|
2023-01-26 13:29:12 +00:00
|
|
|
yield NextToSend(n, toSend, rowID, 0)
|
|
|
|
|
|
|
|
def nextToSend(self):
|
|
|
|
""" Send scheduler as a generator function
|
|
|
|
|
|
|
|
Yields next segment(s) to send when asked for it.
|
|
|
|
Generates an infinite flow, returning with exit only when
|
|
|
|
there is nothing more to send.
|
|
|
|
|
|
|
|
Generates a randomized order of columns and rows, sending to one neighbor
|
|
|
|
at each before sending to another neighbor.
|
|
|
|
Generates a new randomized ordering once all columns, rows, and neighbors
|
|
|
|
are processed once.
|
|
|
|
"""
|
|
|
|
|
|
|
|
while True:
|
|
|
|
perLine = []
|
|
|
|
for c in self.columnIDs:
|
2023-02-03 22:08:53 +00:00
|
|
|
perLine.append(self.nextColumnToSend(c, 1))
|
2023-01-26 13:29:12 +00:00
|
|
|
|
|
|
|
for r in self.rowIDs:
|
2023-02-03 22:08:53 +00:00
|
|
|
perLine.append(self.nextRowToSend(r, 1))
|
2023-01-26 13:29:12 +00:00
|
|
|
|
|
|
|
count = 0
|
|
|
|
random.shuffle(perLine)
|
|
|
|
while (perLine):
|
|
|
|
for g in perLine.copy(): # we need a shallow copy to allow remove
|
|
|
|
n = next(g, None)
|
|
|
|
if not n:
|
|
|
|
perLine.remove(g)
|
|
|
|
continue
|
|
|
|
count += 1
|
|
|
|
yield n
|
|
|
|
|
|
|
|
# return if there is nothing more to send
|
|
|
|
if not count:
|
|
|
|
return
|
|
|
|
|
2023-02-14 01:11:44 +00:00
|
|
|
def sendSegmentToNeigh(self, rID, cID, neigh):
|
|
|
|
if not neigh.sent[cID] and not neigh.receiving[cID] :
|
|
|
|
neigh.sent[cID] = 1
|
|
|
|
neigh.node.receiveSegment(rID, cID, self.ID)
|
|
|
|
self.statsTxInSlot += 1
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False # received or already sent
|
|
|
|
|
2023-01-26 13:29:12 +00:00
|
|
|
def send(self):
|
|
|
|
""" Send as much as we can in the timeslot, limited by bwUplink
|
|
|
|
"""
|
|
|
|
|
2023-02-14 01:13:00 +00:00
|
|
|
while self.sendQueue:
|
|
|
|
(rID, cID) = self.sendQueue[0]
|
|
|
|
|
|
|
|
if rID in self.rowIDs:
|
|
|
|
for neigh in self.rowNeighbors[rID].values():
|
|
|
|
self.sendSegmentToNeigh(rID, cID, neigh)
|
|
|
|
|
|
|
|
if self.statsTxInSlot >= self.bwUplink:
|
|
|
|
return
|
|
|
|
|
|
|
|
if cID in self.columnIDs:
|
|
|
|
for neigh in self.columnNeighbors[cID].values():
|
|
|
|
self.sendSegmentToNeigh(rID, cID, neigh)
|
|
|
|
|
|
|
|
if self.statsTxInSlot >= self.bwUplink:
|
|
|
|
return
|
|
|
|
|
|
|
|
self.sendQueue.popleft()
|
|
|
|
|
2023-01-26 13:29:12 +00:00
|
|
|
for n in self.sched:
|
|
|
|
neigh = n.neigh
|
|
|
|
toSend = n.toSend
|
|
|
|
id = n.id
|
|
|
|
dim = n.dim
|
|
|
|
|
|
|
|
neigh.sent |= toSend;
|
|
|
|
if dim == 0:
|
|
|
|
neigh.node.receiveRow(id, toSend, self.ID)
|
|
|
|
else:
|
|
|
|
neigh.node.receiveColumn(id, toSend, self.ID)
|
|
|
|
|
|
|
|
sent = toSend.count(1)
|
|
|
|
self.statsTxInSlot += sent
|
|
|
|
self.logger.debug("sending %s %d to %d (%d)",
|
|
|
|
"col" if dim else "row", id, neigh.node.ID, sent, extra=self.format)
|
|
|
|
|
|
|
|
# until we exhaust capacity
|
|
|
|
# TODO: use exact limit
|
2023-02-07 13:44:33 +00:00
|
|
|
if self.statsTxInSlot >= self.bwUplink:
|
2023-01-26 13:29:12 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
# Scheduler exited, nothing to send. Create new one for next round.
|
|
|
|
self.sched = self.nextToSend()
|
2022-11-30 14:28:27 +00:00
|
|
|
|
|
|
|
def logRows(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It logs the rows assigned to the validator."""
|
2022-12-20 10:25:44 +00:00
|
|
|
if self.logger.isEnabledFor(logging.DEBUG):
|
|
|
|
for id in self.rowIDs:
|
|
|
|
self.logger.debug("Row %d: %s", id, self.getRow(id), extra=self.format)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
|
|
|
def logColumns(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It logs the columns assigned to the validator."""
|
2022-12-20 10:25:44 +00:00
|
|
|
if self.logger.isEnabledFor(logging.DEBUG):
|
|
|
|
for id in self.columnIDs:
|
|
|
|
self.logger.debug("Column %d: %s", id, self.getColumn(id), extra=self.format)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2022-12-07 14:46:45 +00:00
|
|
|
def restoreRows(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It restores the rows assigned to the validator, that can be repaired."""
|
2022-12-20 10:13:54 +00:00
|
|
|
for id in self.rowIDs:
|
|
|
|
self.block.repairRow(id)
|
2022-11-30 14:28:27 +00:00
|
|
|
|
2022-12-07 14:46:45 +00:00
|
|
|
def restoreColumns(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It restores the columns assigned to the validator, that can be repaired."""
|
2022-12-20 10:13:54 +00:00
|
|
|
for id in self.columnIDs:
|
|
|
|
self.block.repairColumn(id)
|
|
|
|
|
|
|
|
def checkStatus(self):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""It checks how many expected/arrived samples are for each assigned row/column."""
|
2022-12-20 10:13:54 +00:00
|
|
|
arrived = 0
|
|
|
|
expected = 0
|
|
|
|
for id in self.columnIDs:
|
|
|
|
line = self.getColumn(id)
|
|
|
|
arrived += line.count(1)
|
|
|
|
expected += len(line)
|
|
|
|
for id in self.rowIDs:
|
|
|
|
line = self.getRow(id)
|
|
|
|
arrived += line.count(1)
|
|
|
|
expected += len(line)
|
|
|
|
self.logger.debug("status: %d / %d", arrived, expected, extra=self.format)
|
|
|
|
|
|
|
|
return (arrived, expected)
|