node-opcua-nodeid 2.98.0 → 2.98.1

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.
@@ -0,0 +1,68 @@
1
+ /// <reference types="node" />
2
+ /**
3
+ * @module node-opcua-nodeid
4
+ */
5
+ import { Guid } from "node-opcua-guid";
6
+ import { NodeId, NodeIdType } from "./nodeid";
7
+ /**
8
+ * An ExpandedNodeId extends the NodeId structure.
9
+ *
10
+ * An ExpandedNodeId extends the NodeId structure by allowing the NamespaceUri to be
11
+ * explicitly specified instead of using the NamespaceIndex. The NamespaceUri is optional. If it
12
+ * is specified then the NamespaceIndex inside the NodeId shall be ignored.
13
+ *
14
+ * The ExpandedNodeId is encoded by first encoding a NodeId as described in Clause 5 .2.2.9
15
+ * and then encoding NamespaceUri as a String.
16
+ *
17
+ * An instance of an ExpandedNodeId may still use the NamespaceIndex instead of the
18
+ * NamespaceUri. In this case, the NamespaceUri is not encoded in the stream. The presence of
19
+ * the NamespaceUri in the stream is indicated by setting the NamespaceUri flag in the encoding
20
+ * format byte for the NodeId.
21
+ *
22
+ * If the NamespaceUri is present then the encoder shall encode the NamespaceIndex as 0 in
23
+ * the stream when the NodeId portion is encoded. The unused NamespaceIndex is included in
24
+ * the stream for consistency,
25
+ *
26
+ * An ExpandedNodeId may also have a ServerIndex which is encoded as a UInt32 after the
27
+ * NamespaceUri. The ServerIndex flag in the NodeId encoding byte indicates whether the
28
+ * ServerIndex is present in the stream. The ServerIndex is omitted if it is equal to zero.
29
+ *
30
+ * @class ExpandedNodeId
31
+ * @extends NodeId
32
+ *
33
+ *
34
+ *
35
+ * @param identifierType - the nodeID type
36
+ * @param value - the node id value. The type of Value depends on identifierType.
37
+ * @param namespace - the index of the related namespace (optional , default value = 0 )
38
+ * @param namespaceUri - NamespaceUri
39
+ * @param serverIndex - the server Index
40
+ * @constructor
41
+ */
42
+ export declare class ExpandedNodeId extends NodeId {
43
+ static nullExpandedNodeId: ExpandedNodeId;
44
+ static fromNodeId(nodeId: NodeId, namespaceUri?: string, serverIndex?: number): ExpandedNodeId;
45
+ namespaceUri: null | string;
46
+ serverIndex: number;
47
+ constructor(forDeserialization: null);
48
+ constructor(identifierType: NodeIdType, value: number | string | Guid | Buffer, namespace: number, namespaceUri?: null | string, serverIndex?: number);
49
+ /**
50
+ * @method toString
51
+ * @return {string}
52
+ */
53
+ toString(): string;
54
+ /**
55
+ * convert nodeId to a JSON string. same as {@link NodeId#toString }
56
+ * @method toJSON
57
+ * @return {String}
58
+ */
59
+ toJSON(): any;
60
+ }
61
+ export declare function coerceExpandedNodeId(value: unknown): ExpandedNodeId;
62
+ /**
63
+ * @method makeExpandedNodeId
64
+ * @param value
65
+ * @param [namespace=0] the namespace
66
+ * @return {ExpandedNodeId}
67
+ */
68
+ export declare function makeExpandedNodeId(value: unknown, namespace?: number): ExpandedNodeId;
@@ -0,0 +1,110 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.makeExpandedNodeId = exports.coerceExpandedNodeId = exports.ExpandedNodeId = void 0;
4
+ const nodeid_1 = require("./nodeid");
5
+ /**
6
+ * An ExpandedNodeId extends the NodeId structure.
7
+ *
8
+ * An ExpandedNodeId extends the NodeId structure by allowing the NamespaceUri to be
9
+ * explicitly specified instead of using the NamespaceIndex. The NamespaceUri is optional. If it
10
+ * is specified then the NamespaceIndex inside the NodeId shall be ignored.
11
+ *
12
+ * The ExpandedNodeId is encoded by first encoding a NodeId as described in Clause 5 .2.2.9
13
+ * and then encoding NamespaceUri as a String.
14
+ *
15
+ * An instance of an ExpandedNodeId may still use the NamespaceIndex instead of the
16
+ * NamespaceUri. In this case, the NamespaceUri is not encoded in the stream. The presence of
17
+ * the NamespaceUri in the stream is indicated by setting the NamespaceUri flag in the encoding
18
+ * format byte for the NodeId.
19
+ *
20
+ * If the NamespaceUri is present then the encoder shall encode the NamespaceIndex as 0 in
21
+ * the stream when the NodeId portion is encoded. The unused NamespaceIndex is included in
22
+ * the stream for consistency,
23
+ *
24
+ * An ExpandedNodeId may also have a ServerIndex which is encoded as a UInt32 after the
25
+ * NamespaceUri. The ServerIndex flag in the NodeId encoding byte indicates whether the
26
+ * ServerIndex is present in the stream. The ServerIndex is omitted if it is equal to zero.
27
+ *
28
+ * @class ExpandedNodeId
29
+ * @extends NodeId
30
+ *
31
+ *
32
+ *
33
+ * @param identifierType - the nodeID type
34
+ * @param value - the node id value. The type of Value depends on identifierType.
35
+ * @param namespace - the index of the related namespace (optional , default value = 0 )
36
+ * @param namespaceUri - NamespaceUri
37
+ * @param serverIndex - the server Index
38
+ * @constructor
39
+ */
40
+ class ExpandedNodeId extends nodeid_1.NodeId {
41
+ static fromNodeId(nodeId, namespaceUri, serverIndex) {
42
+ return new ExpandedNodeId(nodeId.identifierType, nodeId.value, nodeId.namespace, namespaceUri, serverIndex);
43
+ }
44
+ constructor(identifierType, value, namespace, namespaceUri, serverIndex) {
45
+ super(identifierType, value, namespace);
46
+ this.namespaceUri = namespaceUri || null;
47
+ this.serverIndex = serverIndex || 0;
48
+ }
49
+ /**
50
+ * @method toString
51
+ * @return {string}
52
+ */
53
+ toString() {
54
+ let str = nodeid_1.NodeId.prototype.toString.call(this);
55
+ if (this.namespaceUri) {
56
+ str += ";namespaceUri:" + this.namespaceUri;
57
+ }
58
+ if (this.serverIndex) {
59
+ str += ";serverIndex:" + this.serverIndex;
60
+ }
61
+ return str;
62
+ }
63
+ /**
64
+ * convert nodeId to a JSON string. same as {@link NodeId#toString }
65
+ * @method toJSON
66
+ * @return {String}
67
+ */
68
+ toJSON() {
69
+ return this.toString();
70
+ }
71
+ }
72
+ ExpandedNodeId.nullExpandedNodeId = new ExpandedNodeId(nodeid_1.NodeIdType.NUMERIC, 0, 0);
73
+ exports.ExpandedNodeId = ExpandedNodeId;
74
+ function coerceExpandedNodeId(value) {
75
+ const n = (0, nodeid_1.coerceNodeId)(value);
76
+ return new ExpandedNodeId(n.identifierType, n.value, n.namespace, /*namespaceUri*/ null, /*serverIndex*/ 0);
77
+ }
78
+ exports.coerceExpandedNodeId = coerceExpandedNodeId;
79
+ /**
80
+ * @method makeExpandedNodeId
81
+ * @param value
82
+ * @param [namespace=0] the namespace
83
+ * @return {ExpandedNodeId}
84
+ */
85
+ function makeExpandedNodeId(value, namespace) {
86
+ if (value === undefined && namespace === undefined) {
87
+ return new ExpandedNodeId(nodeid_1.NodeIdType.NUMERIC, 0, 0, null, 0);
88
+ }
89
+ const serverIndex = 0;
90
+ let n;
91
+ const namespaceUri = null;
92
+ if (value instanceof ExpandedNodeId) {
93
+ // construct from a ExpandedNodeId => copy
94
+ n = value;
95
+ return new ExpandedNodeId(n.identifierType, n.value, n.namespace, n.namespaceUri, n.serverIndex);
96
+ }
97
+ if (value instanceof nodeid_1.NodeId) {
98
+ // construct from a nodeId
99
+ n = value;
100
+ return new ExpandedNodeId(n.identifierType, n.value, n.namespace, namespaceUri, serverIndex);
101
+ }
102
+ const valueInt = parseInt(value, 10);
103
+ if (!isFinite(valueInt)) {
104
+ throw new Error(" cannot makeExpandedNodeId out of " + value);
105
+ }
106
+ namespace = namespace || 0;
107
+ return new ExpandedNodeId(nodeid_1.NodeIdType.NUMERIC, valueInt, namespace, namespaceUri, serverIndex);
108
+ }
109
+ exports.makeExpandedNodeId = makeExpandedNodeId;
110
+ //# sourceMappingURL=expanded_nodeid.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"expanded_nodeid.js","sourceRoot":"","sources":["../source/expanded_nodeid.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * @module node-opcua-nodeid
3
+ */
4
+ export * from "./nodeid";
5
+ export * from "./expanded_nodeid";
package/dist/index.js ADDED
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ /**
18
+ * @module node-opcua-nodeid
19
+ */
20
+ __exportStar(require("./nodeid"), exports);
21
+ __exportStar(require("./expanded_nodeid"), exports);
22
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,2CAAyB;AACzB,oDAAkC"}
@@ -0,0 +1,139 @@
1
+ /// <reference types="node" />
2
+ import { Guid } from "node-opcua-guid";
3
+ /**
4
+ * `NodeIdType` an enumeration that specifies the possible types of a `NodeId` value.
5
+ */
6
+ export declare enum NodeIdType {
7
+ /**
8
+ * @static
9
+ * @property NUMERIC
10
+ * @default 0x1
11
+ */
12
+ NUMERIC = 1,
13
+ /**
14
+ * @static
15
+ * @property STRING
16
+ * @default 0x2
17
+ */
18
+ STRING = 2,
19
+ /**
20
+ * @static
21
+ * @property GUID
22
+ * @default 0x3
23
+ */
24
+ GUID = 3,
25
+ /**
26
+ * @static
27
+ * @property BYTESTRING
28
+ * @default 0x4
29
+ */
30
+ BYTESTRING = 4
31
+ }
32
+ export interface INodeIdNumeric extends NodeId {
33
+ identifierType: NodeIdType.NUMERIC;
34
+ value: number;
35
+ }
36
+ export interface INodeIdGuid extends NodeId {
37
+ identifierType: NodeIdType.GUID;
38
+ value: string;
39
+ }
40
+ export interface INodeIdByteString extends NodeId {
41
+ identifierType: NodeIdType.BYTESTRING;
42
+ value: Buffer;
43
+ }
44
+ export interface INodeIdString extends NodeId {
45
+ identifierType: NodeIdType.STRING;
46
+ value: string;
47
+ }
48
+ export type INodeId = INodeIdNumeric | INodeIdGuid | INodeIdString | INodeIdByteString;
49
+ /**
50
+ * Construct a node ID
51
+ *
52
+ * @class NodeId
53
+ * @example
54
+ *
55
+ * ``` javascript
56
+ * const nodeId = new NodeId(NodeIdType.NUMERIC,123,1);
57
+ * ```
58
+ * @constructor
59
+ */
60
+ export declare class NodeId {
61
+ static NodeIdType: typeof NodeIdType;
62
+ static nullNodeId: NodeId;
63
+ static resolveNodeId: (a: string | NodeId) => NodeId;
64
+ static sameNodeId: (n1: NodeId, n2: NodeId) => boolean;
65
+ identifierType: NodeIdType;
66
+ value: number | string | Buffer | Guid;
67
+ namespace: number;
68
+ /**
69
+ * @param identifierType - the nodeID type
70
+ * @param value - the node id value. The type of Value depends on identifierType.
71
+ * @param namespace - the index of the related namespace (optional , default value = 0 )
72
+ */
73
+ constructor(identifierType?: NodeIdType | null, value?: number | string | Buffer | Guid, namespace?: number);
74
+ /**
75
+ * get the string representation of the nodeID.
76
+ *
77
+ * @method toString
78
+ * @example
79
+ *
80
+ * ``` javascript
81
+ * const nodeid = new NodeId(NodeIdType.NUMERIC, 123,1);
82
+ * console.log(nodeid.toString());
83
+ * ```
84
+ *
85
+ * ```
86
+ * >"ns=1;i=123"
87
+ * ```
88
+ *
89
+ * @param [options.addressSpace] {AddressSpace}
90
+ * @return {String}
91
+ */
92
+ toString(options?: {
93
+ addressSpace?: any;
94
+ }): string;
95
+ /**
96
+ * convert nodeId to a JSON string. same as {@link NodeId#toString }
97
+ */
98
+ toJSON(): string;
99
+ displayText(): string;
100
+ /**
101
+ * returns true if the NodeId is null or empty
102
+ */
103
+ isEmpty(): boolean;
104
+ }
105
+ export type NodeIdLike = string | NodeId | number;
106
+ /**
107
+ * Convert a value into a nodeId:
108
+ * @class opcua
109
+ * @method coerceNodeId
110
+ * @static
111
+ *
112
+ * @description:
113
+ * - if nodeId is a string of form : "i=1234" => nodeId({value=1234, identifierType: NodeIdType.NUMERIC})
114
+ * - if nodeId is a string of form : "s=foo" => nodeId({value="foo", identifierType: NodeIdType.STRING})
115
+ * - if nodeId is a string of form : "b=ABCD=" => nodeId({value=decodeBase64("ABCD="), identifierType: NodeIdType.BYTESTRING})
116
+ * - if nodeId is a {@link NodeId} : coerceNodeId returns value
117
+ * @param value
118
+ * @param namespace {number}
119
+ */
120
+ export declare function coerceNodeId(value: unknown, namespace?: number): NodeId;
121
+ /**
122
+ * construct a node Id from a value and a namespace.
123
+ * @class opcua
124
+ * @method makeNodeId
125
+ * @static
126
+ * @param {String|Buffer} value
127
+ * @param [namespace]=0 {Number} the node id namespace
128
+ * @return {NodeId}
129
+ */
130
+ export declare function makeNodeId(value: string | Buffer | number, namespace?: number): NodeId;
131
+ /**
132
+ * @class opcua
133
+ * @method resolveNodeId
134
+ * @static
135
+ * @param nodeIdOrString
136
+ * @return the nodeId
137
+ */
138
+ export declare function resolveNodeId(nodeIdOrString: NodeIdLike): NodeId;
139
+ export declare function sameNodeId(n1: NodeId, n2: NodeId): boolean;
package/dist/nodeid.js ADDED
@@ -0,0 +1,383 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sameNodeId = exports.resolveNodeId = exports.makeNodeId = exports.coerceNodeId = exports.NodeId = exports.NodeIdType = void 0;
4
+ /**
5
+ * @module node-opcua-nodeid
6
+ */
7
+ const node_opcua_assert_1 = require("node-opcua-assert");
8
+ const node_opcua_constants_1 = require("node-opcua-constants");
9
+ const node_opcua_guid_1 = require("node-opcua-guid");
10
+ /**
11
+ * `NodeIdType` an enumeration that specifies the possible types of a `NodeId` value.
12
+ */
13
+ var NodeIdType;
14
+ (function (NodeIdType) {
15
+ /**
16
+ * @static
17
+ * @property NUMERIC
18
+ * @default 0x1
19
+ */
20
+ NodeIdType[NodeIdType["NUMERIC"] = 1] = "NUMERIC";
21
+ /**
22
+ * @static
23
+ * @property STRING
24
+ * @default 0x2
25
+ */
26
+ NodeIdType[NodeIdType["STRING"] = 2] = "STRING";
27
+ /**
28
+ * @static
29
+ * @property GUID
30
+ * @default 0x3
31
+ */
32
+ NodeIdType[NodeIdType["GUID"] = 3] = "GUID";
33
+ /**
34
+ * @static
35
+ * @property BYTESTRING
36
+ * @default 0x4
37
+ */
38
+ NodeIdType[NodeIdType["BYTESTRING"] = 4] = "BYTESTRING";
39
+ })(NodeIdType = exports.NodeIdType || (exports.NodeIdType = {}));
40
+ /*function defaultValue(identifierType: NodeIdType.BYTESTRING): null;
41
+ function defaultValue(identifierType: NodeIdType.STRING): null;
42
+ function defaultValue(identifierType: NodeIdType.NUMERIC): 0;
43
+ function defaultValue(identifierType: NodeIdType.GUID): null;
44
+ */
45
+ function defaultValue(identifierType) {
46
+ switch (identifierType) {
47
+ case NodeIdType.GUID: return node_opcua_guid_1.emptyGuid;
48
+ case NodeIdType.BYTESTRING: return null; // Buffer.alloc(0);
49
+ case NodeIdType.STRING: return "";
50
+ case NodeIdType.NUMERIC: return 0;
51
+ }
52
+ }
53
+ const doDebug = false;
54
+ /**
55
+ * Construct a node ID
56
+ *
57
+ * @class NodeId
58
+ * @example
59
+ *
60
+ * ``` javascript
61
+ * const nodeId = new NodeId(NodeIdType.NUMERIC,123,1);
62
+ * ```
63
+ * @constructor
64
+ */
65
+ class NodeId {
66
+ ;
67
+ /**
68
+ * @param identifierType - the nodeID type
69
+ * @param value - the node id value. The type of Value depends on identifierType.
70
+ * @param namespace - the index of the related namespace (optional , default value = 0 )
71
+ */
72
+ constructor(identifierType, value, namespace) {
73
+ if (identifierType === null || identifierType === undefined) {
74
+ this.identifierType = NodeIdType.NUMERIC;
75
+ this.value = 0;
76
+ this.namespace = 0;
77
+ return;
78
+ }
79
+ this.identifierType = identifierType;
80
+ this.value = value || defaultValue(identifierType);
81
+ this.namespace = namespace || 0;
82
+ // namespace shall be a UInt16
83
+ (0, node_opcua_assert_1.assert)(this.namespace >= 0 && this.namespace <= 0xffff, "NodeId: invalid namespace value");
84
+ (0, node_opcua_assert_1.assert)(this.identifierType !== NodeIdType.NUMERIC || (this.value !== null && this.value >= 0 && this.value <= 0xffffffff));
85
+ (0, node_opcua_assert_1.assert)(this.identifierType !== NodeIdType.GUID || (0, node_opcua_guid_1.isValidGuid)(this.value), "NodeId: Guid is invalid");
86
+ (0, node_opcua_assert_1.assert)(this.identifierType !== NodeIdType.STRING || typeof this.value === "string", "cannot empty string");
87
+ if (this.identifierType === NodeIdType.GUID) {
88
+ this.value = (0, node_opcua_guid_1.normalizeGuid)(value);
89
+ }
90
+ }
91
+ /**
92
+ * get the string representation of the nodeID.
93
+ *
94
+ * @method toString
95
+ * @example
96
+ *
97
+ * ``` javascript
98
+ * const nodeid = new NodeId(NodeIdType.NUMERIC, 123,1);
99
+ * console.log(nodeid.toString());
100
+ * ```
101
+ *
102
+ * ```
103
+ * >"ns=1;i=123"
104
+ * ```
105
+ *
106
+ * @param [options.addressSpace] {AddressSpace}
107
+ * @return {String}
108
+ */
109
+ toString(options) {
110
+ const addressSpace = options ? options.addressSpace : null;
111
+ let str;
112
+ const _this = this;
113
+ switch (_this.identifierType) {
114
+ case NodeIdType.NUMERIC:
115
+ str = "ns=" + this.namespace + ";i=" + _this.value;
116
+ break;
117
+ case NodeIdType.STRING:
118
+ str = "ns=" + this.namespace + ";s=" + _this.value;
119
+ break;
120
+ case NodeIdType.GUID:
121
+ str = "ns=" + this.namespace + ";g=" + (0, node_opcua_guid_1.normalizeGuid)(_this.value);
122
+ break;
123
+ default:
124
+ (0, node_opcua_assert_1.assert)(this.identifierType === NodeIdType.BYTESTRING, "invalid identifierType in NodeId : " + this.identifierType);
125
+ if (this.value) {
126
+ str = "ns=" + this.namespace + ";b=" + this.value.toString("base64");
127
+ }
128
+ else {
129
+ str = "ns=" + this.namespace + ";b=<null>";
130
+ }
131
+ break;
132
+ }
133
+ if (addressSpace) {
134
+ if (this.namespace === 0 && _this.identifierType === NodeIdType.NUMERIC) {
135
+ // find standard browse name
136
+ const name = reverse_map((this.value || 0).toString()) || "<undefined>";
137
+ str += " " + name;
138
+ }
139
+ else if (addressSpace.findNode) {
140
+ // let use the provided address space to figure out the browseNode of this node.
141
+ // to make the message a little bit more useful.
142
+ const n = addressSpace.findNode(this);
143
+ str += " " + (n ? n.browseName.toString() : " (????)");
144
+ }
145
+ }
146
+ return str;
147
+ }
148
+ /**
149
+ * convert nodeId to a JSON string. same as {@link NodeId#toString }
150
+ */
151
+ toJSON() {
152
+ return this.toString();
153
+ }
154
+ displayText() {
155
+ if (this.namespace === 0 && this.identifierType === NodeIdType.NUMERIC) {
156
+ const name = reverse_map(this.value.toString());
157
+ if (name) {
158
+ return name + " (" + this.toString() + ")";
159
+ }
160
+ }
161
+ return this.toString();
162
+ }
163
+ /**
164
+ * returns true if the NodeId is null or empty
165
+ */
166
+ isEmpty() {
167
+ const _this = this;
168
+ switch (_this.identifierType) {
169
+ case NodeIdType.NUMERIC:
170
+ return _this.value === 0;
171
+ case NodeIdType.STRING:
172
+ return !_this.value;
173
+ case NodeIdType.GUID:
174
+ return !_this.value || _this.value === node_opcua_guid_1.emptyGuid;
175
+ default:
176
+ return !_this.value || _this.value.length === 0;
177
+ }
178
+ }
179
+ }
180
+ NodeId.NodeIdType = NodeIdType;
181
+ exports.NodeId = NodeId;
182
+ NodeId.nullNodeId = new Proxy(new NodeId(NodeIdType.NUMERIC, 0, 0), {
183
+ get: (target, prop) => {
184
+ return target[prop];
185
+ },
186
+ set: () => {
187
+ throw new Error("Cannot assign a value to constant NodeId.nullNodeId");
188
+ }
189
+ });
190
+ const regexNamespaceI = /ns=([0-9]+);i=([0-9]+)/;
191
+ const regexNamespaceS = /ns=([0-9]+);s=(.*)/;
192
+ const regexNamespaceB = /ns=([0-9]+);b=(.*)/;
193
+ const regexNamespaceG = /ns=([0-9]+);g=([0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12})/;
194
+ /**
195
+ * Convert a value into a nodeId:
196
+ * @class opcua
197
+ * @method coerceNodeId
198
+ * @static
199
+ *
200
+ * @description:
201
+ * - if nodeId is a string of form : "i=1234" => nodeId({value=1234, identifierType: NodeIdType.NUMERIC})
202
+ * - if nodeId is a string of form : "s=foo" => nodeId({value="foo", identifierType: NodeIdType.STRING})
203
+ * - if nodeId is a string of form : "b=ABCD=" => nodeId({value=decodeBase64("ABCD="), identifierType: NodeIdType.BYTESTRING})
204
+ * - if nodeId is a {@link NodeId} : coerceNodeId returns value
205
+ * @param value
206
+ * @param namespace {number}
207
+ */
208
+ // eslint-disable-next-line max-statements
209
+ function coerceNodeId(value, namespace) {
210
+ let matches;
211
+ let twoFirst;
212
+ if (value instanceof NodeId) {
213
+ return value;
214
+ }
215
+ value = value || 0;
216
+ namespace = namespace || 0;
217
+ let identifierType = NodeIdType.NUMERIC;
218
+ if (typeof value === "string") {
219
+ identifierType = NodeIdType.STRING;
220
+ twoFirst = value.substring(0, 2);
221
+ if (twoFirst === "i=") {
222
+ identifierType = NodeIdType.NUMERIC;
223
+ value = parseInt(value.substring(2), 10);
224
+ }
225
+ else if (twoFirst === "s=") {
226
+ identifierType = NodeIdType.STRING;
227
+ value = value.substring(2);
228
+ }
229
+ else if (twoFirst === "b=") {
230
+ identifierType = NodeIdType.BYTESTRING;
231
+ value = Buffer.from(value.substring(2), "base64");
232
+ }
233
+ else if (twoFirst === "g=") {
234
+ identifierType = NodeIdType.GUID;
235
+ value = (0, node_opcua_guid_1.normalizeGuid)(value.substring(2));
236
+ (0, node_opcua_assert_1.assert)((0, node_opcua_guid_1.isValidGuid)(value));
237
+ }
238
+ else if ((0, node_opcua_guid_1.isValidGuid)(value)) {
239
+ identifierType = NodeIdType.GUID;
240
+ value = (0, node_opcua_guid_1.normalizeGuid)(value);
241
+ }
242
+ else if ((matches = regexNamespaceI.exec(value)) !== null) {
243
+ identifierType = NodeIdType.NUMERIC;
244
+ namespace = parseInt(matches[1], 10);
245
+ value = parseInt(matches[2], 10);
246
+ }
247
+ else if ((matches = regexNamespaceS.exec(value)) !== null) {
248
+ identifierType = NodeIdType.STRING;
249
+ namespace = parseInt(matches[1], 10);
250
+ value = matches[2];
251
+ }
252
+ else if ((matches = regexNamespaceB.exec(value)) !== null) {
253
+ identifierType = NodeIdType.BYTESTRING;
254
+ namespace = parseInt(matches[1], 10);
255
+ value = Buffer.from(matches[2], "base64");
256
+ }
257
+ else if ((matches = regexNamespaceG.exec(value)) !== null) {
258
+ identifierType = NodeIdType.GUID;
259
+ namespace = parseInt(matches[1], 10);
260
+ value = (0, node_opcua_guid_1.normalizeGuid)(matches[2]);
261
+ }
262
+ else {
263
+ throw new Error("String cannot be coerced to a nodeId : " + value);
264
+ }
265
+ }
266
+ else if (value instanceof Buffer) {
267
+ identifierType = NodeIdType.BYTESTRING;
268
+ }
269
+ else if (value instanceof Object) {
270
+ // it could be a Enum or a NodeId Like object
271
+ const tmp = value;
272
+ value = tmp.value;
273
+ namespace = namespace || tmp.namespace;
274
+ identifierType = tmp.identifierType || identifierType;
275
+ return new NodeId(identifierType, value, namespace);
276
+ }
277
+ return new NodeId(identifierType, value, namespace);
278
+ }
279
+ exports.coerceNodeId = coerceNodeId;
280
+ const regEx1 = /^(s|g|b|i|ns)=/;
281
+ /**
282
+ * construct a node Id from a value and a namespace.
283
+ * @class opcua
284
+ * @method makeNodeId
285
+ * @static
286
+ * @param {String|Buffer} value
287
+ * @param [namespace]=0 {Number} the node id namespace
288
+ * @return {NodeId}
289
+ */
290
+ function makeNodeId(value, namespace) {
291
+ value = value || 0;
292
+ namespace = namespace || 0;
293
+ let identifierType = NodeIdType.NUMERIC;
294
+ if (typeof value === "string") {
295
+ if (value.match(regEx1)) {
296
+ throw new Error("please use coerce NodeId instead");
297
+ }
298
+ // 1 2 3
299
+ // 012345678901234567890123456789012345
300
+ // "72962B91-FA75-4AE6-8D28-B404DC7DAF63"
301
+ if ((0, node_opcua_guid_1.isValidGuid)(value)) {
302
+ identifierType = NodeIdType.GUID;
303
+ value = (0, node_opcua_guid_1.normalizeGuid)(value);
304
+ }
305
+ else {
306
+ identifierType = NodeIdType.STRING;
307
+ }
308
+ }
309
+ else if (value instanceof Buffer) {
310
+ identifierType = NodeIdType.BYTESTRING;
311
+ }
312
+ const nodeId = new NodeId(identifierType, value, namespace);
313
+ return nodeId;
314
+ }
315
+ exports.makeNodeId = makeNodeId;
316
+ // reverse maps
317
+ let _nodeIdToNameIndex = {};
318
+ let _nameToNodeIdIndex = {};
319
+ const regName = /[a-zA-Z_].*/;
320
+ (function build_standard_nodeid_indexes() {
321
+ function expand_map(directIndex) {
322
+ for (const name in directIndex) {
323
+ if (Object.prototype.hasOwnProperty.call(directIndex, name) && regName.exec(name) !== null) {
324
+ const value = directIndex[name];
325
+ _nodeIdToNameIndex[value] = name;
326
+ _nameToNodeIdIndex[name] = new NodeId(NodeIdType.NUMERIC, value, 0);
327
+ }
328
+ }
329
+ }
330
+ _nodeIdToNameIndex = {};
331
+ _nameToNodeIdIndex = {};
332
+ expand_map(node_opcua_constants_1.ObjectIds);
333
+ expand_map(node_opcua_constants_1.ObjectTypeIds);
334
+ expand_map(node_opcua_constants_1.VariableIds);
335
+ expand_map(node_opcua_constants_1.VariableTypeIds);
336
+ expand_map(node_opcua_constants_1.MethodIds);
337
+ expand_map(node_opcua_constants_1.ReferenceTypeIds);
338
+ expand_map(node_opcua_constants_1.DataTypeIds);
339
+ })();
340
+ function reverse_map(nodeId) {
341
+ return _nodeIdToNameIndex[nodeId];
342
+ }
343
+ /**
344
+ * @class opcua
345
+ * @method resolveNodeId
346
+ * @static
347
+ * @param nodeIdOrString
348
+ * @return the nodeId
349
+ */
350
+ function resolveNodeId(nodeIdOrString) {
351
+ let nodeId;
352
+ const rawId = typeof nodeIdOrString === "string" ? _nameToNodeIdIndex[nodeIdOrString] : undefined;
353
+ if (rawId !== undefined) {
354
+ return rawId;
355
+ }
356
+ else {
357
+ nodeId = coerceNodeId(nodeIdOrString);
358
+ }
359
+ return nodeId;
360
+ }
361
+ exports.resolveNodeId = resolveNodeId;
362
+ NodeId.resolveNodeId = resolveNodeId;
363
+ function sameNodeId(n1, n2) {
364
+ if (n1.identifierType !== n2.identifierType) {
365
+ return false;
366
+ }
367
+ if (n1.namespace !== n2.namespace) {
368
+ return false;
369
+ }
370
+ switch (n1.identifierType) {
371
+ case NodeIdType.NUMERIC:
372
+ case NodeIdType.STRING:
373
+ case NodeIdType.GUID:
374
+ return n1.value === n2.value;
375
+ case NodeIdType.BYTESTRING:
376
+ return n1.value.toString("hex") === n2.value.toString("hex");
377
+ default:
378
+ throw new Error("Invalid identifier type");
379
+ }
380
+ }
381
+ exports.sameNodeId = sameNodeId;
382
+ NodeId.sameNodeId = sameNodeId;
383
+ //# sourceMappingURL=nodeid.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nodeid.js","sourceRoot":"","sources":["../source/nodeid.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "name": "node-opcua-nodeid",
3
3
  "main": "./dist/index.js",
4
4
  "types": "./dist/index.d.ts",
5
- "version": "2.98.0",
6
- "description": "pure nodejs OPCUA SDK - module -nodeid",
5
+ "version": "2.98.1",
6
+ "description": "pure nodejs OPCUA SDK - module nodeid",
7
7
  "scripts": {
8
8
  "build": "tsc -b",
9
9
  "lint": "eslint source/**/*.ts",
@@ -11,13 +11,13 @@
11
11
  "test": "mocha"
12
12
  },
13
13
  "dependencies": {
14
- "node-opcua-assert": "2.88.0",
15
- "node-opcua-constants": "2.88.0",
16
- "node-opcua-guid": "2.88.0"
14
+ "node-opcua-assert": "2.98.1",
15
+ "node-opcua-constants": "2.98.1",
16
+ "node-opcua-guid": "2.98.1"
17
17
  },
18
18
  "devDependencies": {
19
- "node-opcua-benchmarker": "2.98.0",
20
- "node-opcua-debug": "2.98.0",
19
+ "node-opcua-benchmarker": "2.98.1",
20
+ "node-opcua-debug": "2.98.1",
21
21
  "should": "^13.2.3"
22
22
  },
23
23
  "author": "Etienne Rossignon",
@@ -35,5 +35,9 @@
35
35
  "internet of things"
36
36
  ],
37
37
  "homepage": "http://node-opcua.github.io/",
38
- "gitHead": "e4d73afdfcccb3491423149d9b9785888f4ebb3c"
38
+ "gitHead": "e4d73afdfcccb3491423149d9b9785888f4ebb3c",
39
+ "files": [
40
+ "dist",
41
+ "source"
42
+ ]
39
43
  }