base.py 2.83 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2024 Max Planck Institute for Software Systems, and
# National University of Singapore
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Hejing Li's avatar
Hejing Li committed
23
from __future__ import annotations
Jakob Görgen's avatar
Jakob Görgen committed
24
import abc
Hejing Li's avatar
Hejing Li committed
25
from simbricks.orchestration.utils import base as util_base
26

27

Jakob Görgen's avatar
Jakob Görgen committed
28
29
class System:
    """Defines System configuration of the whole simulation"""
30
31

    def __init__(self) -> None:
32
        self.all_component: list[Component] = []
33
34
35

    def add_component(self, c: Component) -> None:
        assert c.system == self
36
        self.all_component.append(c)
37
38


Hejing Li's avatar
Hejing Li committed
39
class Component(util_base.IdObj):
40

41
    def __init__(self, s: System) -> None:
42
        super().__init__()
43
        self.system = s
44
        s.parameters = {}
45
        s.add_component(self)
46
        self.name: str = ""
47

Jakob Görgen's avatar
Jakob Görgen committed
48
49
50
    @abc.abstractmethod
    def interfaces(self) -> list[Interface]:
        return []
51

Jakob Görgen's avatar
Jakob Görgen committed
52
    def channels(self) -> list[Channel]:
53
54
55
        return [i.channel for i in self.interfaces() if i.is_connected()]


Hejing Li's avatar
Hejing Li committed
56
class Interface(util_base.IdObj):
57
    def __init__(self, c: Component) -> None:
58
        super().__init__()
59
        self.component = c
Jakob Görgen's avatar
Jakob Görgen committed
60
        self.channel: Channel | None = None
61
62
63
64
65
66
67
68
69
70
71
72

    def is_connected(self) -> bool:
        return self.channel is not None

    def disconnect(self) -> None:
        self.channel = None

    def connect(self, c: Channel) -> None:
        assert self.channel is None
        self.channel = c


Hejing Li's avatar
Hejing Li committed
73
class Channel(util_base.IdObj):
74
    def __init__(self, a: Interface, b: Interface) -> None:
75
        super().__init__()
76
77
78
79
        self.latency = 500
        self.a: Interface = a
        self.b: Interface = b

Jakob Görgen's avatar
Jakob Görgen committed
80
    def interfaces(self) -> list[Interface]:
81
82
83
84
85
86
        return [self.a, self.b]

    def disconnect(self):
        # Note AK: this is a bit ugly, this leaves the channel dangling. But
        # it's not referenced anywhere, so that's fine I guess.
        self.a.disconnect()
Jakob Görgen's avatar
Jakob Görgen committed
87
        self.b.disconnect()