Start implementating platform files

This commit is contained in:
Loic Guegan 2022-09-10 10:06:17 +02:00
parent 54d88bce8f
commit f7a7af979d
5 changed files with 40 additions and 1 deletions

10
esds/helpers/platform.py Normal file
View file

@ -0,0 +1,10 @@
import yaml
class YAMLPlatformFile:
def __init__(self, file_path):
self.file_path=file_path
with open(file_path) as f:
self.platform = yaml.load(f, Loader=yaml.FullLoader)
print(self.platform)

19
example/platform.yaml Normal file
View file

@ -0,0 +1,19 @@
general:
breakpoints: []
breakpoints_every: 0
debug: off
interferences: on
nodes:
count: 5
implementations:
- file.py
interfaces:
wlan0:
wireless: yes
links:
- 0: 5-8 => 10MBps
eth0:
wireless: no
links: 5Mbps

7
example/platform_test.py Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env python
from esds.helpers.platform import YAMLPlatformFile
simulator=YAMLPlatformFile("platform.yaml")

View file

@ -1,6 +1,7 @@
[project]
name = "esds"
dynamic = ["version"]
dependencies = ["numpy","pyyaml"]
[build-system]
requires = ["setuptools"]

View file

@ -8,7 +8,9 @@ keywords = simulator, distributed systems, cyber-physical systems, network, wire
license = GNU LGPLv3
[options]
install_requires = numpy
install_requires =
numpy
pyyaml
packages=find:
[options.packages.find]