aes70 2.0.8 → 2.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AES70.es5.js +9 -5
- package/package.json +1 -1
- package/src/OCP1/OcaInterval.js +2 -2
- package/src/OCP1.js +257 -162
- package/src/controller/abstract_udp_connection.js +7 -3
- package/src/OCP1/OcaClassAuthorityID.js +0 -18
- package/src/OCP1/OcaEnumItem.js +0 -14
- package/src/OCP1/OcaEnumItem16.js +0 -14
- package/src/OCP1/OcaLibParamSetAssignment.js +0 -16
- package/src/OCP1/OcaLibVol.js +0 -16
- package/src/OCP1/OcaLibVolChangedEventData.js +0 -16
- package/src/OCP1/OcaLibVolMetadata.js +0 -23
- package/src/OCP1/OcaMediaConnectorStatusChangedEventData.js +0 -14
- package/src/OCP1/OcaNetworkSystemInterfaceDescriptor.js +0 -15
- package/src/OCP1/OcaPilotToneDetectorSpec.js +0 -18
- package/src/OCP1/OcaProtoPortID.js +0 -16
- package/src/OCP1/OcaTaskStateChangedEventData.js +0 -18
package/dist/AES70.es5.js
CHANGED
|
@@ -15662,14 +15662,14 @@
|
|
|
15662
15662
|
*/
|
|
15663
15663
|
|
|
15664
15664
|
function OcaInterval(DT) {
|
|
15665
|
-
return Struct(
|
|
15665
|
+
return class extends Struct(
|
|
15666
15666
|
{
|
|
15667
15667
|
Min: DT,
|
|
15668
15668
|
Max: DT,
|
|
15669
15669
|
Bounds: OcaIntervalBounds$1,
|
|
15670
15670
|
},
|
|
15671
15671
|
OcaInterval$1
|
|
15672
|
-
);
|
|
15672
|
+
) {};
|
|
15673
15673
|
}
|
|
15674
15674
|
|
|
15675
15675
|
/*
|
|
@@ -28832,9 +28832,13 @@
|
|
|
28832
28832
|
options.type
|
|
28833
28833
|
);
|
|
28834
28834
|
|
|
28835
|
-
|
|
28836
|
-
|
|
28837
|
-
|
|
28835
|
+
try {
|
|
28836
|
+
await waitForKeepalive(socket, options);
|
|
28837
|
+
return new this(socket, options);
|
|
28838
|
+
} catch (err) {
|
|
28839
|
+
socket.close();
|
|
28840
|
+
throw err;
|
|
28841
|
+
}
|
|
28838
28842
|
}
|
|
28839
28843
|
|
|
28840
28844
|
write(buf) {
|
package/package.json
CHANGED
package/src/OCP1/OcaInterval.js
CHANGED
|
@@ -6,12 +6,12 @@ import { Struct } from './Struct.js';
|
|
|
6
6
|
import { OcaInterval as type } from '../types/OcaInterval.js';
|
|
7
7
|
|
|
8
8
|
export function OcaInterval(DT) {
|
|
9
|
-
return Struct(
|
|
9
|
+
return class extends Struct(
|
|
10
10
|
{
|
|
11
11
|
Min: DT,
|
|
12
12
|
Max: DT,
|
|
13
13
|
Bounds: OcaIntervalBounds,
|
|
14
14
|
},
|
|
15
15
|
type
|
|
16
|
-
);
|
|
16
|
+
) {};
|
|
17
17
|
}
|
package/src/OCP1.js
CHANGED
|
@@ -1,162 +1,257 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
27
|
-
export
|
|
28
|
-
export
|
|
29
|
-
export
|
|
30
|
-
export
|
|
31
|
-
export
|
|
32
|
-
export
|
|
33
|
-
export
|
|
34
|
-
export
|
|
35
|
-
export
|
|
36
|
-
export
|
|
37
|
-
export
|
|
38
|
-
export
|
|
39
|
-
export
|
|
40
|
-
export
|
|
41
|
-
export
|
|
42
|
-
export
|
|
43
|
-
export
|
|
44
|
-
export
|
|
45
|
-
export
|
|
46
|
-
export
|
|
47
|
-
export
|
|
48
|
-
export
|
|
49
|
-
export
|
|
50
|
-
export
|
|
51
|
-
export
|
|
52
|
-
export
|
|
53
|
-
export
|
|
54
|
-
export
|
|
55
|
-
export
|
|
56
|
-
export
|
|
57
|
-
export
|
|
58
|
-
export
|
|
59
|
-
export
|
|
60
|
-
export
|
|
61
|
-
export
|
|
62
|
-
export
|
|
63
|
-
export
|
|
64
|
-
export
|
|
65
|
-
export
|
|
66
|
-
export
|
|
67
|
-
export
|
|
68
|
-
export
|
|
69
|
-
export
|
|
70
|
-
export
|
|
71
|
-
export
|
|
72
|
-
export
|
|
73
|
-
export
|
|
74
|
-
export
|
|
75
|
-
export
|
|
76
|
-
export
|
|
77
|
-
export
|
|
78
|
-
export
|
|
79
|
-
export
|
|
80
|
-
export
|
|
81
|
-
export
|
|
82
|
-
export
|
|
83
|
-
export
|
|
84
|
-
export
|
|
85
|
-
export
|
|
86
|
-
export
|
|
87
|
-
export
|
|
88
|
-
export
|
|
89
|
-
export
|
|
90
|
-
export
|
|
91
|
-
export
|
|
92
|
-
export
|
|
93
|
-
export
|
|
94
|
-
export
|
|
95
|
-
export
|
|
96
|
-
export
|
|
97
|
-
export
|
|
98
|
-
export
|
|
99
|
-
export
|
|
100
|
-
export
|
|
101
|
-
export
|
|
102
|
-
export
|
|
103
|
-
export
|
|
104
|
-
export
|
|
105
|
-
export
|
|
106
|
-
export
|
|
107
|
-
export
|
|
108
|
-
export
|
|
109
|
-
export
|
|
110
|
-
export
|
|
111
|
-
export
|
|
112
|
-
export
|
|
113
|
-
export
|
|
114
|
-
export
|
|
115
|
-
export
|
|
116
|
-
export
|
|
117
|
-
export
|
|
118
|
-
export
|
|
119
|
-
export
|
|
120
|
-
export
|
|
121
|
-
export
|
|
122
|
-
export
|
|
123
|
-
export
|
|
124
|
-
export
|
|
125
|
-
export
|
|
126
|
-
export
|
|
127
|
-
export
|
|
128
|
-
export
|
|
129
|
-
export
|
|
130
|
-
export
|
|
131
|
-
export
|
|
132
|
-
export
|
|
133
|
-
export
|
|
134
|
-
export
|
|
135
|
-
export
|
|
136
|
-
export
|
|
137
|
-
export
|
|
138
|
-
export
|
|
139
|
-
export
|
|
140
|
-
export
|
|
141
|
-
export
|
|
142
|
-
export
|
|
143
|
-
export
|
|
144
|
-
export
|
|
145
|
-
export
|
|
146
|
-
export
|
|
147
|
-
export
|
|
148
|
-
export
|
|
149
|
-
export
|
|
150
|
-
export
|
|
151
|
-
export
|
|
152
|
-
export
|
|
153
|
-
export
|
|
154
|
-
export
|
|
155
|
-
export
|
|
156
|
-
export
|
|
157
|
-
export
|
|
158
|
-
export
|
|
159
|
-
export
|
|
160
|
-
export
|
|
161
|
-
export
|
|
162
|
-
export
|
|
1
|
+
export * from './OCP1/Arguments.js';
|
|
2
|
+
export * from './OCP1/Bitset16.js';
|
|
3
|
+
export * from './OCP1/Bitset8.js';
|
|
4
|
+
export * from './OCP1/Enum.js';
|
|
5
|
+
export * from './OCP1/Enum16.js';
|
|
6
|
+
export * from './OCP1/Enum8.js';
|
|
7
|
+
export * from './OCP1/FixedLengthArray.js';
|
|
8
|
+
export * from './OCP1/OcaActionObjectSearchResult.js';
|
|
9
|
+
export * from './OCP1/OcaActionObjectSearchResultFlags.js';
|
|
10
|
+
export * from './OCP1/OcaApplicationNetworkCommand.js';
|
|
11
|
+
export * from './OCP1/OcaApplicationNetworkState.js';
|
|
12
|
+
export * from './OCP1/OcaArray1D.js';
|
|
13
|
+
export * from './OCP1/OcaBaseDataType.js';
|
|
14
|
+
export * from './OCP1/OcaBitSet16.js';
|
|
15
|
+
export * from './OCP1/OcaBitstring.js';
|
|
16
|
+
export * from './OCP1/OcaBlob.js';
|
|
17
|
+
export * from './OCP1/OcaBlobFixedLen.js';
|
|
18
|
+
export * from './OCP1/OcaBlockConfigurability.js';
|
|
19
|
+
export * from './OCP1/OcaBlockMember.js';
|
|
20
|
+
export * from './OCP1/OcaBoolean.js';
|
|
21
|
+
export * from './OCP1/OcaClassIdentification.js';
|
|
22
|
+
export * from './OCP1/OcaClassicalFilterShape.js';
|
|
23
|
+
export * from './OCP1/OcaCommand.js';
|
|
24
|
+
export * from './OCP1/OcaCommandResult.js';
|
|
25
|
+
export * from './OCP1/OcaCommandSetResult.js';
|
|
26
|
+
export * from './OCP1/OcaComponent.js';
|
|
27
|
+
export * from './OCP1/OcaConstructionParameter.js';
|
|
28
|
+
export * from './OCP1/OcaCounter.js';
|
|
29
|
+
export * from './OCP1/OcaCounterNotifierFilterParameters.js';
|
|
30
|
+
export * from './OCP1/OcaCounterSet.js';
|
|
31
|
+
export * from './OCP1/OcaCounterUpdate.js';
|
|
32
|
+
export * from './OCP1/OcaCounterUpdateEventData.js';
|
|
33
|
+
export * from './OCP1/OcaDBr.js';
|
|
34
|
+
export * from './OCP1/OcaDatasetSearchResult.js';
|
|
35
|
+
export * from './OCP1/OcaDelayUnit.js';
|
|
36
|
+
export * from './OCP1/OcaDelayValue.js';
|
|
37
|
+
export * from './OCP1/OcaDeviceGenericState.js';
|
|
38
|
+
export * from './OCP1/OcaDeviceOperationalState.js';
|
|
39
|
+
export * from './OCP1/OcaDeviceState.js';
|
|
40
|
+
export * from './OCP1/OcaDynamicsFunction.js';
|
|
41
|
+
export * from './OCP1/OcaEvent.js';
|
|
42
|
+
export * from './OCP1/OcaEventID.js';
|
|
43
|
+
export * from './OCP1/OcaExecutableType.js';
|
|
44
|
+
export * from './OCP1/OcaFilterPassband.js';
|
|
45
|
+
export * from './OCP1/OcaFloat32.js';
|
|
46
|
+
export * from './OCP1/OcaFloat64.js';
|
|
47
|
+
export * from './OCP1/OcaGenericEndState.js';
|
|
48
|
+
export * from './OCP1/OcaGlobalTypeIdentifier.js';
|
|
49
|
+
export * from './OCP1/OcaGroupException.js';
|
|
50
|
+
export * from './OCP1/OcaGrouperCitizen.js';
|
|
51
|
+
export * from './OCP1/OcaGrouperEnrollment.js';
|
|
52
|
+
export * from './OCP1/OcaGrouperGroup.js';
|
|
53
|
+
export * from './OCP1/OcaGrouperMode.js';
|
|
54
|
+
export * from './OCP1/OcaGrouperStatusChangeEventData.js';
|
|
55
|
+
export * from './OCP1/OcaGrouperStatusChangeType.js';
|
|
56
|
+
export * from './OCP1/OcaIODirection.js';
|
|
57
|
+
export * from './OCP1/OcaIP4AutoconfigMode.js';
|
|
58
|
+
export * from './OCP1/OcaIP4Gateway.js';
|
|
59
|
+
export * from './OCP1/OcaIP4NetworkSettings.js';
|
|
60
|
+
export * from './OCP1/OcaIP6AutoconfigMode.js';
|
|
61
|
+
export * from './OCP1/OcaIP6Gateway.js';
|
|
62
|
+
export * from './OCP1/OcaIP6NetworkSettings.js';
|
|
63
|
+
export * from './OCP1/OcaImpedance.js';
|
|
64
|
+
export * from './OCP1/OcaInt16.js';
|
|
65
|
+
export * from './OCP1/OcaInt32.js';
|
|
66
|
+
export * from './OCP1/OcaInt64.js';
|
|
67
|
+
export * from './OCP1/OcaInt8.js';
|
|
68
|
+
export * from './OCP1/OcaInterval.js';
|
|
69
|
+
export * from './OCP1/OcaIntervalBounds.js';
|
|
70
|
+
export * from './OCP1/OcaJobDisposedEventData.js';
|
|
71
|
+
export * from './OCP1/OcaJobDisposition.js';
|
|
72
|
+
export * from './OCP1/OcaJobQueueItem.js';
|
|
73
|
+
export * from './OCP1/OcaLevelDetectionLaw.js';
|
|
74
|
+
export * from './OCP1/OcaLevelMeterLaw.js';
|
|
75
|
+
export * from './OCP1/OcaLibAccess.js';
|
|
76
|
+
export * from './OCP1/OcaLibVolData_ParamSet.js';
|
|
77
|
+
export * from './OCP1/OcaLibVolIdentifier.js';
|
|
78
|
+
export * from './OCP1/OcaLibVolStandardTypeID.js';
|
|
79
|
+
export * from './OCP1/OcaLibVolType.js';
|
|
80
|
+
export * from './OCP1/OcaLibraryIdentifier.js';
|
|
81
|
+
export * from './OCP1/OcaList.js';
|
|
82
|
+
export * from './OCP1/OcaList2D.js';
|
|
83
|
+
export * from './OCP1/OcaList32.js';
|
|
84
|
+
export * from './OCP1/OcaLockState.js';
|
|
85
|
+
export * from './OCP1/OcaLogFilter.js';
|
|
86
|
+
export * from './OCP1/OcaLogRecord.js';
|
|
87
|
+
export * from './OCP1/OcaLongBlob.js';
|
|
88
|
+
export * from './OCP1/OcaManagerDescriptor.js';
|
|
89
|
+
export * from './OCP1/OcaManufacturer.js';
|
|
90
|
+
export * from './OCP1/OcaMap.js';
|
|
91
|
+
export * from './OCP1/OcaMatrixCommand.js';
|
|
92
|
+
export * from './OCP1/OcaMatrixCoordinates.js';
|
|
93
|
+
export * from './OCP1/OcaMediaAccessMode.js';
|
|
94
|
+
export * from './OCP1/OcaMediaClockAvailability.js';
|
|
95
|
+
export * from './OCP1/OcaMediaClockLockState.js';
|
|
96
|
+
export * from './OCP1/OcaMediaClockRate.js';
|
|
97
|
+
export * from './OCP1/OcaMediaClockType.js';
|
|
98
|
+
export * from './OCP1/OcaMediaCoding.js';
|
|
99
|
+
export * from './OCP1/OcaMediaConnection.js';
|
|
100
|
+
export * from './OCP1/OcaMediaConnectorCommand.js';
|
|
101
|
+
export * from './OCP1/OcaMediaConnectorElement.js';
|
|
102
|
+
export * from './OCP1/OcaMediaConnectorState.js';
|
|
103
|
+
export * from './OCP1/OcaMediaConnectorStatus.js';
|
|
104
|
+
export * from './OCP1/OcaMediaFrameFormat.js';
|
|
105
|
+
export * from './OCP1/OcaMediaPlayOption.js';
|
|
106
|
+
export * from './OCP1/OcaMediaRecorderPlayerState.js';
|
|
107
|
+
export * from './OCP1/OcaMediaSinkConnector.js';
|
|
108
|
+
export * from './OCP1/OcaMediaSinkConnectorChangedEventData.js';
|
|
109
|
+
export * from './OCP1/OcaMediaSourceConnector.js';
|
|
110
|
+
export * from './OCP1/OcaMediaSourceConnectorChangedEventData.js';
|
|
111
|
+
export * from './OCP1/OcaMediaStreamCastMode.js';
|
|
112
|
+
export * from './OCP1/OcaMediaStreamEndpoint.js';
|
|
113
|
+
export * from './OCP1/OcaMediaStreamEndpointCommand.js';
|
|
114
|
+
export * from './OCP1/OcaMediaStreamEndpointState.js';
|
|
115
|
+
export * from './OCP1/OcaMediaStreamEndpointStatus.js';
|
|
116
|
+
export * from './OCP1/OcaMediaStreamMode.js';
|
|
117
|
+
export * from './OCP1/OcaMediaStreamModeCapability.js';
|
|
118
|
+
export * from './OCP1/OcaMediaStreamModeCapabilityDirection.js';
|
|
119
|
+
export * from './OCP1/OcaMediaTrackFunction.js';
|
|
120
|
+
export * from './OCP1/OcaMediaTransportSession.js';
|
|
121
|
+
export * from './OCP1/OcaMediaTransportSessionConnection.js';
|
|
122
|
+
export * from './OCP1/OcaMediaTransportSessionConnectionState.js';
|
|
123
|
+
export * from './OCP1/OcaMediaTransportSessionState.js';
|
|
124
|
+
export * from './OCP1/OcaMediaTransportSessionStatus.js';
|
|
125
|
+
export * from './OCP1/OcaMediaTransportTimingParameters.js';
|
|
126
|
+
export * from './OCP1/OcaMediaVolumePosition.js';
|
|
127
|
+
export * from './OCP1/OcaMediaVolumePositionType.js';
|
|
128
|
+
export * from './OCP1/OcaMethod.js';
|
|
129
|
+
export * from './OCP1/OcaMethodID.js';
|
|
130
|
+
export * from './OCP1/OcaModelDescription.js';
|
|
131
|
+
export * from './OCP1/OcaModelGUID.js';
|
|
132
|
+
export * from './OCP1/OcaMultiMap.js';
|
|
133
|
+
export * from './OCP1/OcaMuteState.js';
|
|
134
|
+
export * from './OCP1/OcaNetworkAdvertisingMechanism.js';
|
|
135
|
+
export * from './OCP1/OcaNetworkAdvertisingService.js';
|
|
136
|
+
export * from './OCP1/OcaNetworkControlProtocol.js';
|
|
137
|
+
export * from './OCP1/OcaNetworkInterfaceAssignment.js';
|
|
138
|
+
export * from './OCP1/OcaNetworkInterfaceCommand.js';
|
|
139
|
+
export * from './OCP1/OcaNetworkInterfaceState.js';
|
|
140
|
+
export * from './OCP1/OcaNetworkInterfaceStatus.js';
|
|
141
|
+
export * from './OCP1/OcaNetworkLinkType.js';
|
|
142
|
+
export * from './OCP1/OcaNetworkMediaProtocol.js';
|
|
143
|
+
export * from './OCP1/OcaNetworkMediaSourceOrSink.js';
|
|
144
|
+
export * from './OCP1/OcaNetworkSignalChannelStatus.js';
|
|
145
|
+
export * from './OCP1/OcaNetworkStatistics.js';
|
|
146
|
+
export * from './OCP1/OcaNetworkStatus.js';
|
|
147
|
+
export * from './OCP1/OcaNetworkSystemInterfaceID.js';
|
|
148
|
+
export * from './OCP1/OcaNotificationDeliveryMode.js';
|
|
149
|
+
export * from './OCP1/OcaOPath.js';
|
|
150
|
+
export * from './OCP1/OcaObjectIdentification.js';
|
|
151
|
+
export * from './OCP1/OcaObjectListEventData.js';
|
|
152
|
+
export * from './OCP1/OcaObjectSearchResult.js';
|
|
153
|
+
export * from './OCP1/OcaObjectSearchResultFlags.js';
|
|
154
|
+
export * from './OCP1/OcaObservationEventData.js';
|
|
155
|
+
export * from './OCP1/OcaObservationListEventData.js';
|
|
156
|
+
export * from './OCP1/OcaObserverState.js';
|
|
157
|
+
export * from './OCP1/OcaParameterMask.js';
|
|
158
|
+
export * from './OCP1/OcaParametricEQShape.js';
|
|
159
|
+
export * from './OCP1/OcaPolarityState.js';
|
|
160
|
+
export * from './OCP1/OcaPort.js';
|
|
161
|
+
export * from './OCP1/OcaPortClockMapEntry.js';
|
|
162
|
+
export * from './OCP1/OcaPortID.js';
|
|
163
|
+
export * from './OCP1/OcaPortIdentification.js';
|
|
164
|
+
export * from './OCP1/OcaPortMode.js';
|
|
165
|
+
export * from './OCP1/OcaPositionCoordinateSystem.js';
|
|
166
|
+
export * from './OCP1/OcaPositionDescriptor.js';
|
|
167
|
+
export * from './OCP1/OcaPositionDescriptorFieldFlags.js';
|
|
168
|
+
export * from './OCP1/OcaPowerState.js';
|
|
169
|
+
export * from './OCP1/OcaPowerSupplyLocation.js';
|
|
170
|
+
export * from './OCP1/OcaPowerSupplyState.js';
|
|
171
|
+
export * from './OCP1/OcaPowerSupplyType.js';
|
|
172
|
+
export * from './OCP1/OcaPresentationUnit.js';
|
|
173
|
+
export * from './OCP1/OcaProduct.js';
|
|
174
|
+
export * from './OCP1/OcaProgramResult.js';
|
|
175
|
+
export * from './OCP1/OcaProgramRunMode.js';
|
|
176
|
+
export * from './OCP1/OcaProperty.js';
|
|
177
|
+
export * from './OCP1/OcaPropertyChangeType.js';
|
|
178
|
+
export * from './OCP1/OcaPropertyChangedEventData.js';
|
|
179
|
+
export * from './OCP1/OcaPropertyDescriptor.js';
|
|
180
|
+
export * from './OCP1/OcaPropertyID.js';
|
|
181
|
+
export * from './OCP1/OcaProtoObjectIdentification.js';
|
|
182
|
+
export * from './OCP1/OcaProtoPort.js';
|
|
183
|
+
export * from './OCP1/OcaProtoPortClockMapEntry.js';
|
|
184
|
+
export * from './OCP1/OcaProtoSignalPath.js';
|
|
185
|
+
export * from './OCP1/OcaRamperCommand.js';
|
|
186
|
+
export * from './OCP1/OcaRamperInterpolationLaw.js';
|
|
187
|
+
export * from './OCP1/OcaRamperState.js';
|
|
188
|
+
export * from './OCP1/OcaRelationalOperator.js';
|
|
189
|
+
export * from './OCP1/OcaResetCause.js';
|
|
190
|
+
export * from './OCP1/OcaSamplingRateConverterType.js';
|
|
191
|
+
export * from './OCP1/OcaSecurityType.js';
|
|
192
|
+
export * from './OCP1/OcaSensorReadingState.js';
|
|
193
|
+
export * from './OCP1/OcaSignalPath.js';
|
|
194
|
+
export * from './OCP1/OcaStatus.js';
|
|
195
|
+
export * from './OCP1/OcaStream.js';
|
|
196
|
+
export * from './OCP1/OcaStreamConnectorIdentification.js';
|
|
197
|
+
export * from './OCP1/OcaStreamConnectorStatus.js';
|
|
198
|
+
export * from './OCP1/OcaStreamStatus.js';
|
|
199
|
+
export * from './OCP1/OcaStreamType.js';
|
|
200
|
+
export * from './OCP1/OcaString.js';
|
|
201
|
+
export * from './OCP1/OcaStringComparisonType.js';
|
|
202
|
+
export * from './OCP1/OcaSubscriptionManagerState.js';
|
|
203
|
+
export * from './OCP1/OcaSweepType.js';
|
|
204
|
+
export * from './OCP1/OcaTask.js';
|
|
205
|
+
export * from './OCP1/OcaTaskCommand.js';
|
|
206
|
+
export * from './OCP1/OcaTaskExecutionTerminatedEventData.js';
|
|
207
|
+
export * from './OCP1/OcaTaskGenericState.js';
|
|
208
|
+
export * from './OCP1/OcaTaskManagerState.js';
|
|
209
|
+
export * from './OCP1/OcaTaskOperationalState.js';
|
|
210
|
+
export * from './OCP1/OcaTaskSchedulerState.js';
|
|
211
|
+
export * from './OCP1/OcaTaskState.js';
|
|
212
|
+
export * from './OCP1/OcaTaskStatus.js';
|
|
213
|
+
export * from './OCP1/OcaTaskStatusChangedEventData.js';
|
|
214
|
+
export * from './OCP1/OcaTime.js';
|
|
215
|
+
export * from './OCP1/OcaTimeDeliveryMechanism.js';
|
|
216
|
+
export * from './OCP1/OcaTimeDeliveryParameters_StreamEndpoint.js';
|
|
217
|
+
export * from './OCP1/OcaTimeMode.js';
|
|
218
|
+
export * from './OCP1/OcaTimePTP.js';
|
|
219
|
+
export * from './OCP1/OcaTimeProtocol.js';
|
|
220
|
+
export * from './OCP1/OcaTimeReferenceType.js';
|
|
221
|
+
export * from './OCP1/OcaTimeSourceAvailability.js';
|
|
222
|
+
export * from './OCP1/OcaTimeSourceSyncStatus.js';
|
|
223
|
+
export * from './OCP1/OcaTransferFunction.js';
|
|
224
|
+
export * from './OCP1/OcaTypedBlob.js';
|
|
225
|
+
export * from './OCP1/OcaUint16.js';
|
|
226
|
+
export * from './OCP1/OcaUint32.js';
|
|
227
|
+
export * from './OCP1/OcaUint64.js';
|
|
228
|
+
export * from './OCP1/OcaUint8.js';
|
|
229
|
+
export * from './OCP1/OcaUnitOfMeasure.js';
|
|
230
|
+
export * from './OCP1/OcaVariant.js';
|
|
231
|
+
export * from './OCP1/OcaVersion.js';
|
|
232
|
+
export * from './OCP1/OcaWaveformType.js';
|
|
233
|
+
export * from './OCP1/OcaWhenPhysicalAbsolute.js';
|
|
234
|
+
export * from './OCP1/OcaWhenPhysicalRelative.js';
|
|
235
|
+
export * from './OCP1/Rest.js';
|
|
236
|
+
export * from './OCP1/RestWithOffset.js';
|
|
237
|
+
export * from './OCP1/String16.js';
|
|
238
|
+
export * from './OCP1/Struct.js';
|
|
239
|
+
export * from './OCP1/Tuple.js';
|
|
240
|
+
export * from './OCP1/command.js';
|
|
241
|
+
export * from './OCP1/commandrrq.js';
|
|
242
|
+
export * from './OCP1/createBlobType.js';
|
|
243
|
+
export * from './OCP1/createListType.js';
|
|
244
|
+
export * from './OCP1/createType.js';
|
|
245
|
+
export * from './OCP1/decode_message.js';
|
|
246
|
+
export * from './OCP1/encode_message.js';
|
|
247
|
+
export * from './OCP1/encoded_arguments.js';
|
|
248
|
+
export * from './OCP1/getLengthEncoder.js';
|
|
249
|
+
export * from './OCP1/is_typed_array.js';
|
|
250
|
+
export * from './OCP1/keepalive.js';
|
|
251
|
+
export * from './OCP1/makeEncoder.js';
|
|
252
|
+
export * from './OCP1/message_generator.js';
|
|
253
|
+
export * from './OCP1/notification.js';
|
|
254
|
+
export * from './OCP1/notification2.js';
|
|
255
|
+
export * from './OCP1/pdu.js';
|
|
256
|
+
export * from './OCP1/protocol_version.js';
|
|
257
|
+
export * from './OCP1/response.js';
|
|
@@ -103,9 +103,13 @@ export class AbstractUDPConnection extends ClientConnection {
|
|
|
103
103
|
options.type
|
|
104
104
|
);
|
|
105
105
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
try {
|
|
107
|
+
await waitForKeepalive(socket, options);
|
|
108
|
+
return new this(socket, options);
|
|
109
|
+
} catch (err) {
|
|
110
|
+
socket.close();
|
|
111
|
+
throw err;
|
|
112
|
+
}
|
|
109
113
|
}
|
|
110
114
|
|
|
111
115
|
write(buf) {
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaBlobFixedLen } from './OcaBlobFixedLen.js';
|
|
5
|
-
import { OcaUint16 } from './OcaUint16.js';
|
|
6
|
-
import { OcaUint8 } from './OcaUint8.js';
|
|
7
|
-
import { Struct } from './Struct.js';
|
|
8
|
-
|
|
9
|
-
import { OcaClassAuthorityID as type } from '../types/OcaClassAuthorityID.js';
|
|
10
|
-
|
|
11
|
-
export const OcaClassAuthorityID = Struct(
|
|
12
|
-
{
|
|
13
|
-
Sentinel: OcaUint16,
|
|
14
|
-
Reserved: OcaUint8,
|
|
15
|
-
OrganizationID: OcaBlobFixedLen(3),
|
|
16
|
-
},
|
|
17
|
-
type
|
|
18
|
-
);
|
package/src/OCP1/OcaEnumItem.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { Struct } from './Struct.js';
|
|
5
|
-
import { OcaUint8 } from './OcaUint8.js';
|
|
6
|
-
|
|
7
|
-
import { OcaEnumItem as type } from '../types/OcaEnumItem.js';
|
|
8
|
-
|
|
9
|
-
export const OcaEnumItem = Struct(
|
|
10
|
-
{
|
|
11
|
-
Value: OcaUint8,
|
|
12
|
-
},
|
|
13
|
-
type
|
|
14
|
-
);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { Struct } from './Struct.js';
|
|
5
|
-
import { OcaUint16 } from './OcaUint16.js';
|
|
6
|
-
|
|
7
|
-
import { OcaEnumItem16 as type } from '../types/OcaEnumItem16.js';
|
|
8
|
-
|
|
9
|
-
export const OcaEnumItem16 = Struct(
|
|
10
|
-
{
|
|
11
|
-
Value: OcaUint16,
|
|
12
|
-
},
|
|
13
|
-
type
|
|
14
|
-
);
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaLibVolIdentifier } from './OcaLibVolIdentifier.js';
|
|
5
|
-
import { OcaUint32 } from './OcaUint32.js';
|
|
6
|
-
import { Struct } from './Struct.js';
|
|
7
|
-
|
|
8
|
-
import { OcaLibParamSetAssignment as type } from '../types/OcaLibParamSetAssignment.js';
|
|
9
|
-
|
|
10
|
-
export const OcaLibParamSetAssignment = Struct(
|
|
11
|
-
{
|
|
12
|
-
ParamSetIdentifier: OcaLibVolIdentifier,
|
|
13
|
-
TargetBlockONo: OcaUint32,
|
|
14
|
-
},
|
|
15
|
-
type
|
|
16
|
-
);
|
package/src/OCP1/OcaLibVol.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaBlob } from './OcaBlob.js';
|
|
5
|
-
import { OcaLibVolMetadata } from './OcaLibVolMetadata.js';
|
|
6
|
-
import { Struct } from './Struct.js';
|
|
7
|
-
|
|
8
|
-
import { OcaLibVol as type } from '../types/OcaLibVol.js';
|
|
9
|
-
|
|
10
|
-
export const OcaLibVol = Struct(
|
|
11
|
-
{
|
|
12
|
-
Metadata: OcaLibVolMetadata,
|
|
13
|
-
Data: OcaBlob,
|
|
14
|
-
},
|
|
15
|
-
type
|
|
16
|
-
);
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaPropertyChangeType } from './OcaPropertyChangeType.js';
|
|
5
|
-
import { OcaUint32 } from './OcaUint32.js';
|
|
6
|
-
import { Struct } from './Struct.js';
|
|
7
|
-
|
|
8
|
-
import { OcaLibVolChangedEventData as type } from '../types/OcaLibVolChangedEventData.js';
|
|
9
|
-
|
|
10
|
-
export const OcaLibVolChangedEventData = Struct(
|
|
11
|
-
{
|
|
12
|
-
VolumeID: OcaUint32,
|
|
13
|
-
ChangeType: OcaPropertyChangeType,
|
|
14
|
-
},
|
|
15
|
-
type
|
|
16
|
-
);
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaLibAccess } from './OcaLibAccess.js';
|
|
5
|
-
import { OcaLibVolType } from './OcaLibVolType.js';
|
|
6
|
-
import { OcaString } from './OcaString.js';
|
|
7
|
-
import { OcaTimePTP } from './OcaTimePTP.js';
|
|
8
|
-
import { OcaUint32 } from './OcaUint32.js';
|
|
9
|
-
import { Struct } from './Struct.js';
|
|
10
|
-
|
|
11
|
-
import { OcaLibVolMetadata as type } from '../types/OcaLibVolMetadata.js';
|
|
12
|
-
|
|
13
|
-
export const OcaLibVolMetadata = Struct(
|
|
14
|
-
{
|
|
15
|
-
Name: OcaString,
|
|
16
|
-
VolType: OcaLibVolType,
|
|
17
|
-
Access: OcaLibAccess,
|
|
18
|
-
Version: OcaUint32,
|
|
19
|
-
Creator: OcaString,
|
|
20
|
-
UpDate: OcaTimePTP,
|
|
21
|
-
},
|
|
22
|
-
type
|
|
23
|
-
);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaMediaConnectorStatus } from './OcaMediaConnectorStatus.js';
|
|
5
|
-
import { Struct } from './Struct.js';
|
|
6
|
-
|
|
7
|
-
import { OcaMediaConnectorStatusChangedEventData as type } from '../types/OcaMediaConnectorStatusChangedEventData.js';
|
|
8
|
-
|
|
9
|
-
export const OcaMediaConnectorStatusChangedEventData = Struct(
|
|
10
|
-
{
|
|
11
|
-
ConnectorStatus: OcaMediaConnectorStatus,
|
|
12
|
-
},
|
|
13
|
-
type
|
|
14
|
-
);
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaBlob } from './OcaBlob.js';
|
|
5
|
-
import { Struct } from './Struct.js';
|
|
6
|
-
|
|
7
|
-
import { OcaNetworkSystemInterfaceDescriptor as type } from '../types/OcaNetworkSystemInterfaceDescriptor.js';
|
|
8
|
-
|
|
9
|
-
export const OcaNetworkSystemInterfaceDescriptor = Struct(
|
|
10
|
-
{
|
|
11
|
-
SystemInterfaceParameters: OcaBlob,
|
|
12
|
-
MyNetworkAddress: OcaBlob,
|
|
13
|
-
},
|
|
14
|
-
type
|
|
15
|
-
);
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaDBr } from './OcaDBr.js';
|
|
5
|
-
import { OcaFloat32 } from './OcaFloat32.js';
|
|
6
|
-
import { OcaUint32 } from './OcaUint32.js';
|
|
7
|
-
import { Struct } from './Struct.js';
|
|
8
|
-
|
|
9
|
-
import { OcaPilotToneDetectorSpec as type } from '../types/OcaPilotToneDetectorSpec.js';
|
|
10
|
-
|
|
11
|
-
export const OcaPilotToneDetectorSpec = Struct(
|
|
12
|
-
{
|
|
13
|
-
Threshold: OcaDBr,
|
|
14
|
-
Frequency: OcaFloat32,
|
|
15
|
-
PollInterval: OcaUint32,
|
|
16
|
-
},
|
|
17
|
-
type
|
|
18
|
-
);
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaPortMode } from './OcaPortMode.js';
|
|
5
|
-
import { OcaUint16 } from './OcaUint16.js';
|
|
6
|
-
import { Struct } from './Struct.js';
|
|
7
|
-
|
|
8
|
-
import { OcaProtoPortID as type } from '../types/OcaProtoPortID.js';
|
|
9
|
-
|
|
10
|
-
export const OcaProtoPortID = Struct(
|
|
11
|
-
{
|
|
12
|
-
Mode: OcaPortMode,
|
|
13
|
-
Index: OcaUint16,
|
|
14
|
-
},
|
|
15
|
-
type
|
|
16
|
-
);
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file has been generated.
|
|
3
|
-
*/
|
|
4
|
-
import { OcaLibVolIdentifier } from './OcaLibVolIdentifier.js';
|
|
5
|
-
import { OcaTaskStatus } from './OcaTaskStatus.js';
|
|
6
|
-
import { OcaUint32 } from './OcaUint32.js';
|
|
7
|
-
import { Struct } from './Struct.js';
|
|
8
|
-
|
|
9
|
-
import { OcaTaskStateChangedEventData as type } from '../types/OcaTaskStateChangedEventData.js';
|
|
10
|
-
|
|
11
|
-
export const OcaTaskStateChangedEventData = Struct(
|
|
12
|
-
{
|
|
13
|
-
TaskID: OcaUint32,
|
|
14
|
-
ProgramID: OcaLibVolIdentifier,
|
|
15
|
-
Status: OcaTaskStatus,
|
|
16
|
-
},
|
|
17
|
-
type
|
|
18
|
-
);
|