Merge pull request #10 from status-im/results
Results class and avoid static variables
This commit is contained in:
commit
d20f83595d
|
@ -6,8 +6,6 @@ from bitarray.util import zeros
|
||||||
|
|
||||||
class Block:
|
class Block:
|
||||||
|
|
||||||
blockSize = 0
|
|
||||||
data = bitarray()
|
|
||||||
|
|
||||||
def __init__(self, blockSize):
|
def __init__(self, blockSize):
|
||||||
self.blockSize = blockSize
|
self.blockSize = blockSize
|
||||||
|
|
|
@ -4,7 +4,6 @@ import configparser
|
||||||
|
|
||||||
class Configuration:
|
class Configuration:
|
||||||
|
|
||||||
deterministic = 0
|
|
||||||
|
|
||||||
def __init__(self, fileName):
|
def __init__(self, fileName):
|
||||||
|
|
||||||
|
@ -33,6 +32,7 @@ class Configuration:
|
||||||
|
|
||||||
self.numberRuns = int(config.get("Advanced", "numberRuns"))
|
self.numberRuns = int(config.get("Advanced", "numberRuns"))
|
||||||
self.deterministic = config.get("Advanced", "deterministic")
|
self.deterministic = config.get("Advanced", "deterministic")
|
||||||
|
self.dumpXML = config.get("Advanced", "dumpXML")
|
||||||
|
|
||||||
if self.nvStop < (self.blockSizeStart*4):
|
if self.nvStop < (self.blockSizeStart*4):
|
||||||
print("ERROR: The number of validators cannot be lower than the block size * 4")
|
print("ERROR: The number of validators cannot be lower than the block size * 4")
|
||||||
|
|
|
@ -4,18 +4,16 @@ from DAS.block import *
|
||||||
|
|
||||||
class Observer:
|
class Observer:
|
||||||
|
|
||||||
block = []
|
|
||||||
rows = []
|
|
||||||
columns = []
|
|
||||||
goldenData = []
|
|
||||||
broadcasted = []
|
|
||||||
config = []
|
|
||||||
logger = []
|
|
||||||
|
|
||||||
def __init__(self, logger, config):
|
def __init__(self, logger, config):
|
||||||
self.config = config
|
self.config = config
|
||||||
self.format = {"entity": "Observer"}
|
self.format = {"entity": "Observer"}
|
||||||
self.logger = logger
|
self.logger = logger
|
||||||
|
self.block = []
|
||||||
|
self.rows = []
|
||||||
|
self.columns = []
|
||||||
|
self.goldenData = []
|
||||||
|
self.broadcasted = []
|
||||||
|
|
||||||
|
|
||||||
def reset(self):
|
def reset(self):
|
||||||
self.block = [0] * self.config.blockSize * self.config.blockSize
|
self.block = [0] * self.config.blockSize * self.config.blockSize
|
||||||
|
|
|
@ -1,17 +1,46 @@
|
||||||
#!/bin/python3
|
#!/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
from xml.dom import minidom
|
||||||
|
from dicttoxml import dicttoxml
|
||||||
|
|
||||||
class Result:
|
class Result:
|
||||||
|
|
||||||
config = []
|
|
||||||
missingVector = []
|
|
||||||
blockAvailable = -1
|
|
||||||
|
|
||||||
def __init__(self, config):
|
def __init__(self, shape):
|
||||||
self.config = config
|
self.shape = shape
|
||||||
self.blockAvailable = -1
|
self.blockAvailable = -1
|
||||||
|
self.tta = -1
|
||||||
self.missingVector = []
|
self.missingVector = []
|
||||||
|
|
||||||
|
def populate(self, shape, missingVector):
|
||||||
def addMissing(self, missingVector):
|
self.shape = shape
|
||||||
self.missingVector = missingVector
|
self.missingVector = missingVector
|
||||||
|
missingSamples = missingVector[-1]
|
||||||
|
if missingSamples == 0:
|
||||||
|
self.blockAvailable = 1
|
||||||
|
self.tta = len(missingVector)
|
||||||
|
else:
|
||||||
|
self.blockAvailable = 0
|
||||||
|
self.tta = -1
|
||||||
|
|
||||||
|
def dump(self, execID):
|
||||||
|
if not os.path.exists("results"):
|
||||||
|
os.makedirs("results")
|
||||||
|
if not os.path.exists("results/"+execID):
|
||||||
|
os.makedirs("results/"+execID)
|
||||||
|
resd1 = self.shape.__dict__
|
||||||
|
resd2 = self.__dict__.copy()
|
||||||
|
resd2.pop("shape")
|
||||||
|
resd1.update(resd2)
|
||||||
|
resXml = dicttoxml(resd1)
|
||||||
|
xmlstr = minidom.parseString(resXml)
|
||||||
|
xmlPretty = xmlstr.toprettyxml()
|
||||||
|
filePath = "results/"+execID+"/nbv-"+str(self.shape.numberValidators)+\
|
||||||
|
"-bs-"+str(self.shape.blockSize)+\
|
||||||
|
"-nd-"+str(self.shape.netDegree)+\
|
||||||
|
"-fr-"+str(self.shape.failureRate)+\
|
||||||
|
"-chi-"+str(self.shape.chi)+\
|
||||||
|
"-r-"+str(self.shape.run)+".xml"
|
||||||
|
with open(filePath, "w") as f:
|
||||||
|
f.write(xmlPretty)
|
||||||
|
|
10
DAS/shape.py
10
DAS/shape.py
|
@ -1,16 +1,12 @@
|
||||||
#!/bin/python3
|
#!/bin/python3
|
||||||
|
|
||||||
class Shape:
|
class Shape:
|
||||||
numberValidators = 0
|
|
||||||
failureRate = 0
|
|
||||||
blockSize = 0
|
|
||||||
netDegree = 0
|
|
||||||
chi = 0
|
|
||||||
|
|
||||||
def __init__(self, blockSize, numberValidators, failureRate, chi, netDegree):
|
def __init__(self, blockSize, numberValidators, failureRate, chi, netDegree, run):
|
||||||
|
self.run = run
|
||||||
self.numberValidators = numberValidators
|
self.numberValidators = numberValidators
|
||||||
self.failureRate = failureRate
|
|
||||||
self.blockSize = blockSize
|
self.blockSize = blockSize
|
||||||
|
self.failureRate = failureRate
|
||||||
self.netDegree = netDegree
|
self.netDegree = netDegree
|
||||||
self.chi = chi
|
self.chi = chi
|
||||||
|
|
||||||
|
|
|
@ -10,19 +10,16 @@ from DAS.validator import *
|
||||||
|
|
||||||
class Simulator:
|
class Simulator:
|
||||||
|
|
||||||
proposerID = 0
|
|
||||||
logLevel = logging.INFO
|
|
||||||
validators = []
|
|
||||||
glob = []
|
|
||||||
result = []
|
|
||||||
shape = []
|
|
||||||
logger = []
|
|
||||||
format = {}
|
|
||||||
|
|
||||||
def __init__(self, shape):
|
def __init__(self, shape):
|
||||||
self.shape = shape
|
self.shape = shape
|
||||||
self.format = {"entity": "Simulator"}
|
self.format = {"entity": "Simulator"}
|
||||||
self.result = Result(self.shape)
|
self.result = Result(self.shape)
|
||||||
|
self.validators = []
|
||||||
|
self.logger = []
|
||||||
|
self.logLevel = logging.INFO
|
||||||
|
self.proposerID = 0
|
||||||
|
self.glob = []
|
||||||
|
|
||||||
def initValidators(self):
|
def initValidators(self):
|
||||||
self.glob = Observer(self.logger, self.shape)
|
self.glob = Observer(self.logger, self.shape)
|
||||||
|
@ -87,6 +84,7 @@ class Simulator:
|
||||||
|
|
||||||
def resetShape(self, shape):
|
def resetShape(self, shape):
|
||||||
self.shape = shape
|
self.shape = shape
|
||||||
|
self.result = Result(self.shape)
|
||||||
for val in self.validators:
|
for val in self.validators:
|
||||||
val.shape.failureRate = shape.failureRate
|
val.shape.failureRate = shape.failureRate
|
||||||
val.shape.chi = shape.chi
|
val.shape.chi = shape.chi
|
||||||
|
@ -120,19 +118,16 @@ class Simulator:
|
||||||
missingRate = missingSamples*100/expected
|
missingRate = missingSamples*100/expected
|
||||||
self.logger.debug("step %d, missing %d of %d (%0.02f %%)" % (steps, missingSamples, expected, missingRate), extra=self.format)
|
self.logger.debug("step %d, missing %d of %d (%0.02f %%)" % (steps, missingSamples, expected, missingRate), extra=self.format)
|
||||||
if missingSamples == oldMissingSamples:
|
if missingSamples == oldMissingSamples:
|
||||||
|
#self.logger.info("The block cannot be recovered, failure rate %d!" % self.shape.failureRate, extra=self.format)
|
||||||
|
missingVector.append(missingSamples)
|
||||||
break
|
break
|
||||||
elif missingSamples == 0:
|
elif missingSamples == 0:
|
||||||
|
#self.logger.info("The entire block is available at step %d, with failure rate %d !" % (steps, self.shape.failureRate), extra=self.format)
|
||||||
|
missingVector.append(missingSamples)
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
steps += 1
|
steps += 1
|
||||||
|
|
||||||
self.result.addMissing(missingVector)
|
self.result.populate(self.shape, missingVector)
|
||||||
if missingSamples == 0:
|
return self.result
|
||||||
self.result.blockAvailable = 1
|
|
||||||
self.logger.debug("The entire block is available at step %d, with failure rate %d !" % (steps, self.shape.failureRate), extra=self.format)
|
|
||||||
return self.result
|
|
||||||
else:
|
|
||||||
self.result.blockAvailable = 0
|
|
||||||
self.logger.debug("The block cannot be recovered, failure rate %d!" % self.shape.failureRate, extra=self.format)
|
|
||||||
return self.result
|
|
||||||
|
|
||||||
|
|
|
@ -20,11 +20,6 @@ class Neighbor:
|
||||||
|
|
||||||
class Validator:
|
class Validator:
|
||||||
|
|
||||||
ID = 0
|
|
||||||
amIproposer = 0
|
|
||||||
shape = []
|
|
||||||
format = {}
|
|
||||||
logger = []
|
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return str(self.ID)
|
return str(self.ID)
|
||||||
|
|
|
@ -25,3 +25,4 @@ chiStep = 2
|
||||||
|
|
||||||
deterministic = 0
|
deterministic = 0
|
||||||
numberRuns = 2
|
numberRuns = 2
|
||||||
|
dumpXML = 1
|
19
study.py
19
study.py
|
@ -1,6 +1,6 @@
|
||||||
#! /bin/python3
|
#! /bin/python3
|
||||||
|
|
||||||
import time, sys
|
import time, sys, random, copy
|
||||||
from DAS import *
|
from DAS import *
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,11 +10,15 @@ def study():
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
config = Configuration(sys.argv[1])
|
config = Configuration(sys.argv[1])
|
||||||
sim = Simulator(config)
|
shape = Shape(0, 0, 0, 0, 0, 0)
|
||||||
|
sim = Simulator(shape)
|
||||||
sim.initLogger()
|
sim.initLogger()
|
||||||
results = []
|
results = []
|
||||||
simCnt = 0
|
simCnt = 0
|
||||||
|
|
||||||
|
now = datetime.now()
|
||||||
|
execID = now.strftime("%Y-%m-%d_%H-%M-%S_")+str(random.randint(100,999))
|
||||||
|
|
||||||
sim.logger.info("Starting simulations:", extra=sim.format)
|
sim.logger.info("Starting simulations:", extra=sim.format)
|
||||||
start = time.time()
|
start = time.time()
|
||||||
|
|
||||||
|
@ -28,18 +32,23 @@ def study():
|
||||||
if not config.deterministic:
|
if not config.deterministic:
|
||||||
random.seed(datetime.now())
|
random.seed(datetime.now())
|
||||||
|
|
||||||
shape = Shape(blockSize, nv, fr, chi, netDegree)
|
shape = Shape(blockSize, nv, fr, chi, netDegree, run)
|
||||||
sim.resetShape(shape)
|
sim.resetShape(shape)
|
||||||
sim.initValidators()
|
sim.initValidators()
|
||||||
sim.initNetwork()
|
sim.initNetwork()
|
||||||
result = sim.run()
|
result = sim.run()
|
||||||
sim.logger.info("Run %d, FR: %d %%, Chi: %d, BlockSize: %d, Nb.Val: %d, netDegree: %d ... Block Available: %d" % (run, fr, chi, blockSize, nv, netDegree, result.blockAvailable), extra=sim.format)
|
sim.logger.info("Shape: %s ... Block Available: %d" % (str(sim.shape.__dict__), result.blockAvailable), extra=sim.format)
|
||||||
results.append(result)
|
results.append(copy.deepcopy(result))
|
||||||
simCnt += 1
|
simCnt += 1
|
||||||
|
|
||||||
end = time.time()
|
end = time.time()
|
||||||
sim.logger.info("A total of %d simulations ran in %d seconds" % (simCnt, end-start), extra=sim.format)
|
sim.logger.info("A total of %d simulations ran in %d seconds" % (simCnt, end-start), extra=sim.format)
|
||||||
|
|
||||||
|
if config.dumpXML:
|
||||||
|
for res in results:
|
||||||
|
res.dump(execID)
|
||||||
|
sim.logger.info("Results dumped into results/%s/" % (execID), extra=sim.format)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
study()
|
study()
|
||||||
|
|
Loading…
Reference in New Issue