-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNodeInfo.py
74 lines (66 loc) · 2.57 KB
/
NodeInfo.py
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
64
65
66
67
68
69
70
71
72
73
74
import json
from typing import List, Dict, Any
from OutputInfo import OutputInfo
class NodeInfo:
def __init__(self, name: str, data: Dict[str, Any], custom_class: str, component: str, inputs: List[str], outputs: Dict[str, OutputInfo], pos_x: float, pos_y: float):
self.name = name
self.data = data
self.custom_class = custom_class
self.component = component
self.inputs = inputs
self.outputs = outputs
self.pos_x = pos_x
self.pos_y = pos_y
def __eq__(self, other: object) -> bool:
if not isinstance(other, NodeInfo):
return False
return (
self.name == other.name and
self.data == other.data and
self.custom_class == other.custom_class and
self.component == other.component and
self.inputs == other.inputs and
self.outputs == other.outputs and
self.pos_x == other.pos_x and
self.pos_y == other.pos_y
)
def __repr__(self) -> str:
return f"NodeInfo(name={self.name}, data={self.data}, custom_class={self.custom_class}, component={self.component}, inputs={self.inputs}, outputs={self.outputs}, pos_x={self.pos_x}, pos_y={self.pos_y})"
def __str__(self) -> str:
"""Return a JSON-like string representation of the object."""
return json.dumps(self, default=vars)
def to_dict(self) -> Dict[str, Any]:
return {
"name": self.name,
"data": self.data,
"class": self.custom_class,
"component": self.component,
"inputs": self.inputs,
"outputs": {k: v.to_dict() for k, v in self.outputs.items()},
"pos_x": self.pos_x,
"pos_y": self.pos_y
}
@classmethod
def from_dict(cls, data: Dict[str, Any]) -> 'NodeInfo':
outputs = {k: OutputInfo.from_dict(v) for k, v in data.get("outputs", {}).items()}
return cls(
name=data["name"],
data=data["data"],
custom_class=data["class"],
component=data["component"],
inputs=data["inputs"],
outputs=outputs,
pos_x=data["pos_x"],
pos_y=data["pos_y"]
)
def copy(self) -> 'NodeInfo':
return NodeInfo(
name=self.name,
data=self.data.copy(),
custom_class=self.custom_class,
component=self.component,
inputs=self.inputs.copy(),
outputs={k: v.copy() for k, v in self.outputs.items()},
pos_x=self.pos_x,
pos_y=self.pos_y
)