-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponentPin.ts
333 lines (307 loc) · 9.23 KB
/
componentPin.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
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 { CCComponentId } from "./component";
import * as intrinsic from "./intrinsics";
import type { CCNodePinId } from "./nodePin";
export type CCComponentPin = {
readonly id: CCComponentPinId;
readonly componentId: CCComponentId;
readonly type: CCPinType;
readonly implementation: CCPinImplementation;
order: number;
name: string;
};
export type CCComponentPinId = Opaque<string, "CCPinId">;
export type CCPinType = "input" | "output";
export const ccPinTypes: CCPinType[] = ["input", "output"];
/** null for intrinsic components */
export type CCPinImplementation = CCNodePinId | null;
// | CCPinUserImplementation
// | CCPinIntrinsicImplementation;
// export type CCPinUserImplementation = {
// readonly type: "user";
// readonly nodeId: CCNodeId;
// readonly pinId: CCComponentPinId;
// };
// export type CCPinIntrinsicImplementation = {
// readonly type: "intrinsic";
// };
export type CCPinMultiplexability =
| { isMultiplexable: true }
| { isMultiplexable: false; multiplicity: number };
export type CCComponentPinMultiplexability =
| CCPinMultiplexability
| "undecidable";
export type CCComponentPinStoreEvents = {
didRegister(pin: CCComponentPin): void;
willUnregister(pin: CCComponentPin): void;
didUnregister(pin: CCComponentPin): void;
didUpdate(pin: CCComponentPin): void;
};
/**
* Store of pins
*/
export class CCComponentPinStore extends EventEmitter<CCComponentPinStoreEvents> {
#store: CCStore;
#pins: Map<CCComponentPinId, CCComponentPin> = new Map();
/**
* Constructor of CCComponentPinStore
* @param store store
* @param pins initial pins
*/
constructor(store: CCStore) {
super();
this.#store = store;
}
import(componentPins: CCComponentPin[]): void {
for (const pin of componentPins) {
this.#pins.set(pin.id, pin);
}
}
mount() {
this.#store.nodePins.on("didRegister", (nodePin) => {
this.register(this.createForNodePin(nodePin.id));
});
this.#store.nodePins.on("willUnregister", (nodePin) => {
const pin = this.getByImplementation(nodePin.id);
if (pin) this.unregister(pin.id);
});
this.#store.connections.on("didRegister", (connection) => {
const { from, to } = connection;
const fromComponentPin = this.getByImplementation(from);
if (fromComponentPin) this.unregister(fromComponentPin.id);
const toComponentPin = this.getByImplementation(to);
if (toComponentPin) this.unregister(toComponentPin.id);
});
this.#store.connections.on("willUnregister", (connection) => {
if (
!this.#store.nodePins.isMarkedAsDeleted(connection.to) &&
this.#store.nodePins.get(connection.to)
) {
this.register(this.createForNodePin(connection.to));
}
// output pins can have multiple connections
// so we need to check if the connection is the last one
if (
this.#store.connections.getConnectionsByNodePinId(connection.from)
.length === 1
) {
if (
!this.#store.nodePins.isMarkedAsDeleted(connection.from) &&
this.#store.nodePins.get(connection.from)
) {
this.register(this.createForNodePin(connection.from));
}
}
});
}
/**
* Register a pin
* @param pin pin to be registered
*/
register(pin: CCComponentPin): void {
invariant(this.#store.components.get(pin.componentId));
this.#pins.set(pin.id, pin);
this.emit("didRegister", pin);
}
createForNodePin(nodePinId: CCNodePinId): CCComponentPin {
const targetNodePin = nullthrows(this.#store.nodePins.get(nodePinId));
const targetComponentPin = nullthrows(
this.#store.componentPins.get(targetNodePin.componentPinId),
);
const targetNode = nullthrows(this.#store.nodes.get(targetNodePin.nodeId));
const existingComponentPins = this.getManyByComponentId(
targetNode.parentComponentId,
);
const maxOrder = Math.max(
...existingComponentPins.map((pin) => pin.order),
-1,
);
return CCComponentPinStore.create({
type: targetComponentPin.type,
componentId: targetNode.parentComponentId,
name: targetComponentPin.name,
implementation: targetNodePin.id,
order: maxOrder + 1,
});
}
/**
* Unregister a pin
* @param id id of a pin to be unregistered
*/
async unregister(id: CCComponentPinId): Promise<void> {
const pin = nullthrows(this.#pins.get(id));
await this.#store.transactionManager.runInTransaction(() => {
this.emit("willUnregister", pin);
this.#pins.delete(id);
});
this.emit("didUnregister", pin);
}
/**
* Get a pin by id
* @param id id of pin
* @returns pin of `id`
*/
get(id: CCComponentPinId): CCComponentPin | undefined {
return this.#pins.get(id);
}
/**
* Get all of pins
* @returns all pins
*/
getByNodePinId(nodePinId: CCNodePinId): CCComponentPin {
const pin = [...this.#pins.values()].find(
({ implementation }) => implementation && implementation === nodePinId,
);
invariant(pin);
return pin;
}
/**
* Get all of pins by component id
* @param componentId id of component
* @returns pins of component
* @deprecated in favor of {@link getManyByComponentId}
*/
getPinIdsByComponentId(componentId: CCComponentId): CCComponentPinId[] {
return this.getManyByComponentId(componentId).map((pin) => pin.id);
}
/**
* Get all of pins by component id
* @param componentId id of component
* @returns pins of component
*/
getManyByComponentId(componentId: CCComponentId): CCComponentPin[] {
return [...this.#pins.values()].filter(
(pin) => pin.componentId === componentId,
);
}
getByImplementation(implementation: CCNodePinId): CCComponentPin | null {
return (
[...this.#pins.values()].find(
(pin) => pin.implementation === implementation,
) ?? null
);
}
/**
* Update name of pin
* @param id id of a pin to be updated
* @param value new name
*/
update(
id: CCComponentPinId,
value: Partial<Pick<CCComponentPin, "name">>,
): void {
const pin = this.#pins.get(id);
invariant(pin);
this.#pins.set(id, { ...pin, ...value });
this.emit("didUpdate", pin);
}
/**
* Get the multiplexability of a component pin
* @param pinId id of pin
* @returns multiplexability of the pin
*/
getComponentPinMultiplexability(
pinId: CCComponentPinId,
): CCComponentPinMultiplexability {
const pin = this.#pins.get(pinId);
invariant(pin);
switch (pin.id) {
case nullthrows(intrinsic.andIntrinsicComponentDefinition.inputPins[0])
.id:
case nullthrows(intrinsic.andIntrinsicComponentDefinition.inputPins[1])
.id:
case nullthrows(intrinsic.andIntrinsicComponentDefinition.outputPins[0])
.id:
case nullthrows(intrinsic.orIntrinsicComponentDefinition.inputPins[0]).id:
case nullthrows(intrinsic.orIntrinsicComponentDefinition.inputPins[1]).id:
case nullthrows(intrinsic.orIntrinsicComponentDefinition.outputPins[0])
.id:
case nullthrows(intrinsic.notIntrinsicComponentDefinition.inputPins[0])
.id:
case nullthrows(intrinsic.notIntrinsicComponentDefinition.outputPins[0])
.id:
case nullthrows(intrinsic.xorIntrinsicComponentDefinition.inputPins[0])
.id:
case nullthrows(intrinsic.xorIntrinsicComponentDefinition.inputPins[1])
.id:
case nullthrows(intrinsic.xorIntrinsicComponentDefinition.outputPins[0])
.id:
case nullthrows(intrinsic.inputIntrinsicComponentDefinition.inputPins[0])
.id:
case nullthrows(intrinsic.inputIntrinsicComponentDefinition.outputPins[0])
.id:
case nullthrows(
intrinsic.flipFlopIntrinsicComponentDefinition.inputPins[0],
).id:
case nullthrows(
intrinsic.flipFlopIntrinsicComponentDefinition.outputPins[0],
).id: {
return { isMultiplexable: true };
}
case nullthrows(
intrinsic.aggregateIntrinsicComponentDefinition.inputPins[0],
).id: {
return { isMultiplexable: false, multiplicity: 1 };
}
case nullthrows(
intrinsic.aggregateIntrinsicComponentDefinition.outputPins[0],
).id: {
return "undecidable";
// return { isMultiplexable: false, multiplicity: 4 };
}
case nullthrows(
intrinsic.decomposeIntrinsicComponentDefinition.outputPins[0],
).id: {
return "undecidable";
// return { isMultiplexable: false, multiplicity: 4 };
}
case nullthrows(
intrinsic.decomposeIntrinsicComponentDefinition.inputPins[0],
).id: {
return { isMultiplexable: false, multiplicity: 1 };
}
default: {
if (pin.implementation === null) {
throw new Error("unreachable");
}
return this.#store.nodePins.getNodePinMultiplexability(
pin.implementation,
);
}
}
}
/**
* Create a new pin
* @param partialPin pin without `id`
* @returns a new pin
*/
static create(partialPin: Omit<CCComponentPin, "id">): CCComponentPin {
return {
id: crypto.randomUUID() as CCComponentPinId,
...partialPin,
};
}
/**
* Get array of pins
* @returns array of pins
*/
getMany(): CCComponentPin[] {
return [...this.#pins.values()];
}
/**
* Check if the pin is an interface pin
* @param pinId id of pin
* @returns if the pin is an interface pin, `true` returns (otherwise `false`)
*/
isInterfacePin(pinId: CCComponentPinId): boolean {
const pin = nullthrows(this.#store.componentPins.get(pinId));
return (
!pin.implementation ||
this.#store.connections.hasNoConnectionOf(pin.implementation)
);
}
}