-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodePin.ts
272 lines (254 loc) · 7.13 KB
/
nodePin.ts
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import EventEmitter from "eventemitter3";
import nullthrows from "nullthrows";
import invariant from "tiny-invariant";
import type { Opaque } from "type-fest";
import type CCStore from ".";
import type {
CCComponentPin,
CCComponentPinId,
CCPinMultiplexability,
} from "./componentPin";
import * as intrinsic from "./intrinsics";
import type { CCNodeId } from "./node";
export type CCNodePinId = Opaque<string, "CCNodePinId">;
export type CCNodePin = {
id: CCNodePinId;
nodeId: CCNodeId;
componentPinId: CCComponentPinId;
order: number;
userSpecifiedBitWidth: number | null;
};
export type CCNodePinStoreEvents = {
didRegister(pin: CCNodePin): void;
willUnregister(pin: CCNodePin): void;
didUnregister(pin: CCNodePin): void;
};
export class CCNodePinStore extends EventEmitter<CCNodePinStoreEvents> {
#store: CCStore;
#nodePins: Map<CCNodePinId, CCNodePin> = new Map();
#markedAsDeleted: Set<CCNodePinId> = new Set();
/**
* Constructor of CCNodePinStore
* @param store store
* @param nodePins initial pins
*/
constructor(store: CCStore) {
super();
this.#store = store;
}
import(nodePins: CCNodePin[]) {
for (const nodePin of nodePins) {
this.register(nodePin);
}
}
mount() {
const getDefaultUserSpecifiedBitWidth = (componentPin: CCComponentPin) => {
const component = nullthrows(
this.#store.components.get(componentPin.componentId),
);
if (!component.intrinsicType) return null;
const definition =
intrinsic.ccIntrinsicComponentDefinitions[component.intrinsicType];
return definition.componentPinHasUserSpecifiedBitWidth?.(componentPin)
? 1
: null;
};
this.#store.nodes.on("didRegister", (node) => {
const componentPins = this.#store.componentPins.getManyByComponentId(
node.componentId,
);
for (const componentPin of componentPins) {
this.register(
CCNodePinStore.create({
nodeId: node.id,
componentPinId: componentPin.id,
order: 0,
userSpecifiedBitWidth:
getDefaultUserSpecifiedBitWidth(componentPin),
}),
);
}
});
this.#store.nodes.on("willUnregister", (node) => {
for (const pin of this.#nodePins.values()) {
if (pin.nodeId === node.id) {
this.unregister(pin.id);
}
}
});
this.#store.componentPins.on("didRegister", (componentPin) => {
for (const node of this.#store.nodes.getManyByComponentId(
componentPin.componentId,
)) {
this.register(
CCNodePinStore.create({
nodeId: node.id,
componentPinId: componentPin.id,
order: 0,
userSpecifiedBitWidth:
getDefaultUserSpecifiedBitWidth(componentPin),
}),
);
}
});
this.#store.componentPins.on("willUnregister", (componentPin) => {
for (const pin of this.#nodePins.values()) {
if (pin.componentPinId === componentPin.id) {
this.unregister(pin.id);
}
}
});
}
/**
* Register a pin
* @param nodePin pin to be registered
*/
register(nodePin: CCNodePin): void {
invariant(this.#store.componentPins.get(nodePin.componentPinId));
invariant(this.#store.nodes.get(nodePin.nodeId));
this.#nodePins.set(nodePin.id, nodePin);
this.emit("didRegister", nodePin);
}
/**
* Unregister a pin
* @param id id of a pin to be unregistered
*/
async unregister(id: CCNodePinId): Promise<void> {
const nodePin = nullthrows(this.#nodePins.get(id));
this.#markedAsDeleted.add(id);
await this.#store.transactionManager.runInTransaction(() => {
this.emit("willUnregister", nodePin);
this.#nodePins.delete(nodePin.id);
});
this.emit("didUnregister", nodePin);
this.#markedAsDeleted.delete(id);
}
/**
* Get a pin by id
* @param id id of pin
* @returns pin of `id`
*/
get(id: CCNodePinId): CCNodePin | undefined {
return this.#nodePins.get(id);
}
/**
* Get all of pins
* @returns all pins
*/
getByImplementationNodeIdAndPinId(
nodeId: CCNodeId,
componentPinId: CCComponentPinId,
): CCNodePin {
const pin = [...this.#nodePins.values()].find(
(candidate) =>
candidate.nodeId === nodeId &&
candidate.componentPinId === componentPinId,
);
invariant(pin);
return pin;
}
/**
* Get all of pins by component id
* @param componentId id of component
* @returns pins of component
*/
getManyByNodeId(nodeId: CCNodeId): CCNodePin[] {
return [...this.#nodePins.values()].filter((pin) => pin.nodeId === nodeId);
}
/**
* Get the multiplexability of a node pin
* @param pinId id of pin
* @param nodeId id of node
* @returns multiplexability of the pin
*/
getNodePinMultiplexability(nodePinId: CCNodePinId): CCPinMultiplexability {
const traverseNodePinMultiplexability = (
nodePinId_: CCNodePinId,
seen: Set<CCNodeId>,
): CCPinMultiplexability => {
const { nodeId, componentPinId: pinId } = nullthrows(
this.get(nodePinId_),
);
seen.add(nodeId);
const node = nullthrows(this.#store.nodes.get(nodeId));
const nodePins = this.getManyByNodeId(node.id);
const givenPinMultiplexability =
this.#store.componentPins.getComponentPinMultiplexability(pinId);
if (givenPinMultiplexability === "undecidable") {
if (
pinId ===
nullthrows(
intrinsic.aggregateIntrinsicComponentDefinition.outputPins[0],
).id
) {
return { isMultiplexable: false, multiplicity: nodePins.length - 1 };
}
if (
pinId ===
nullthrows(
intrinsic.decomposeIntrinsicComponentDefinition.inputPins[0],
).id
) {
return { isMultiplexable: false, multiplicity: nodePins.length - 1 };
}
throw new Error("unreachable");
}
if (!givenPinMultiplexability.isMultiplexable) {
return givenPinMultiplexability;
}
for (const nodePin of nodePins) {
const pinMultiplexability =
this.#store.componentPins.getComponentPinMultiplexability(
nodePin.componentPinId,
);
if (pinMultiplexability === "undecidable") {
throw new Error("unreachable");
}
if (pinMultiplexability.isMultiplexable) {
const connections = nullthrows(
this.#store.connections.getConnectionsByNodePinId(nodePinId),
);
for (const connection of connections) {
const componentPin = nullthrows(
this.#store.componentPins.get(nodePin.componentPinId),
);
const connectedNodePinId =
componentPin.type === "input" ? connection.from : connection.to;
const connectedNodePin = nullthrows(this.get(connectedNodePinId));
if (seen.has(connectedNodePin.nodeId)) {
continue;
}
const connectedPinMultiplexability =
traverseNodePinMultiplexability(connectedNodePinId, seen);
if (!connectedPinMultiplexability.isMultiplexable) {
return connectedPinMultiplexability;
}
}
}
}
return givenPinMultiplexability;
};
return traverseNodePinMultiplexability(nodePinId, new Set());
}
isMarkedAsDeleted(id: CCNodePinId) {
return this.#markedAsDeleted.has(id);
}
/**
* Create a new pin
* @param partialPin pin without `id`
* @returns a new pin
*/
static create(partialPin: Omit<CCNodePin, "id">): CCNodePin {
return {
id: crypto.randomUUID() as CCNodePinId,
...partialPin,
};
}
/**
* Get array of pins
* @returns array of pins
*/
getMany(): CCNodePin[] {
return [...this.#nodePins.values()];
}
}