// --------- This code has been automatically generated !!! 2018-09-03T20:28:03.497Z
"use strict";
/**
* @module opcua.address_space.types
*/
const assert = require("node-opcua-assert").assert;
const util = require("util");
const _ = require("underscore");
const makeNodeId = require("node-opcua-nodeid").makeNodeId;
const schema_helpers = require("node-opcua-factory/src/factories_schema_helpers");
const extract_all_fields = schema_helpers.extract_all_fields;
const resolve_schema_field_types = schema_helpers.resolve_schema_field_types;
const initialize_field = schema_helpers.initialize_field;
const initialize_field_array = schema_helpers.initialize_field_array;
const check_options_correctness_against_schema = schema_helpers.check_options_correctness_against_schema;
const _defaultTypeMap = require("node-opcua-factory/src/factories_builtin_types")._defaultTypeMap;
const ec = require("node-opcua-basic-types");
const encodeArray = ec.encodeArray;
const decodeArray = ec.decodeArray;
const makeExpandedNodeId = require("node-opcua-nodeid/src/expanded_nodeid").makeExpandedNodeId;
const generate_new_id = require("node-opcua-factory").generate_new_id;
const _enumerations = require("node-opcua-factory/src/factories_enumerations")._private._enumerations;
const schema = require("../schemas/ReferenceDescription_schema").ReferenceDescription_Schema;
const getFactory = require("node-opcua-factory/src/factories_factories").getFactory;
const QualifiedName = getFactory("QualifiedName");
const LocalizedText = getFactory("LocalizedText");
const BaseUAObject = require("node-opcua-factory/src/factories_baseobject").BaseUAObject;
/**
* The description of a reference.
*
* @class ReferenceDescription
* @constructor
* @extends BaseUAObject
* @param options {Object}
*/
function ReferenceDescription(options)
{
options = options || {};
/* istanbul ignore next */
if (schema_helpers.doDebug) { check_options_correctness_against_schema(this,schema,options); }
const self = this;
assert(this instanceof BaseUAObject); // ' keyword "new" is required for constructor call')
resolve_schema_field_types(schema);
BaseUAObject.call(this,options);
if (options === null) {
BaseUAObject.call(this,options);
self.browseName = null; /* new QualifiedName(null); */
self.displayName = null; /* new LocalizedText(null); */
return ;
}
/**
* The type of references.
* @property referenceTypeId
* @type {NodeId}
*/
self.referenceTypeId = initialize_field(schema.fields[0], options.referenceTypeId);
/**
* TRUE if the reference is a forward reference.
* @property isForward
* @type {Boolean}
*/
self.isForward = initialize_field(schema.fields[1], options.isForward);
/**
* The id of the target node.
* @property nodeId
* @type {ExpandedNodeId}
*/
self.nodeId = initialize_field(schema.fields[2], options.nodeId);
/**
* The browse name of the target node.
* @property browseName
* @type {QualifiedName}
*/
self.browseName = new QualifiedName( options.browseName);
/**
* The display name of the target node.
* @property displayName
* @type {LocalizedText}
*/
self.displayName = new LocalizedText( options.displayName);
/**
* The node class of the target node.
* @property nodeClass
* @type {NodeClass}
* @default 0
*/
self.setNodeClass(initialize_field(schema.fields[5], options.nodeClass));
/**
* The type definition of the target node.
* @property typeDefinition
* @type {ExpandedNodeId}
*/
self.typeDefinition = initialize_field(schema.fields[6], options.typeDefinition);
// Object.preventExtensions(self);
}
util.inherits(ReferenceDescription,BaseUAObject);
//## Define Enumeration setters
ReferenceDescription.prototype.setNodeClass = function(value) {
const coercedValue = _enumerations.NodeClass.typedEnum.get(value);
/* istanbul ignore next */
if (coercedValue === undefined || coercedValue === null) {
throw new Error("value cannot be coerced to NodeClass: " + value);
}
this.nodeClass = coercedValue;
};
schema.id = generate_new_id();
ReferenceDescription.prototype.encodingDefaultBinary = makeExpandedNodeId(schema.id);
ReferenceDescription.prototype._schema = schema;
const encode_NodeId = _defaultTypeMap.NodeId.encode;
const decode_NodeId = _defaultTypeMap.NodeId.decode;
const encode_Boolean = _defaultTypeMap.Boolean.encode;
const decode_Boolean = _defaultTypeMap.Boolean.decode;
const encode_ExpandedNodeId = _defaultTypeMap.ExpandedNodeId.encode;
const decode_ExpandedNodeId = _defaultTypeMap.ExpandedNodeId.decode;
const encode_NodeClass = _enumerations.NodeClass.encode;
const decode_NodeClass = _enumerations.NodeClass.decode;
/**
* encode the object into a binary stream
* @method encode
*
* @param stream {BinaryStream}
*/
ReferenceDescription.prototype.encode = function(stream,options) {
// call base class implementation first
BaseUAObject.prototype.encode.call(this,stream,options);
encode_NodeId(this.referenceTypeId,stream);
encode_Boolean(this.isForward,stream);
encode_ExpandedNodeId(this.nodeId,stream);
this.browseName.encode(stream,options);
this.displayName.encode(stream,options);
encode_NodeClass(this.nodeClass,stream);
encode_ExpandedNodeId(this.typeDefinition,stream);
};
/**
* decode the object from a binary stream
* @method decode
*
* @param stream {BinaryStream}
*/
ReferenceDescription.prototype.decode = function(stream) {
// call base class implementation first
BaseUAObject.prototype.decode.call(this,stream);
this.referenceTypeId = decode_NodeId(stream);
this.isForward = decode_Boolean(stream);
this.nodeId = decode_ExpandedNodeId(stream);
this.browseName.decode(stream);
this.displayName.decode(stream);
this.nodeClass = decode_NodeClass(stream);
this.typeDefinition = decode_ExpandedNodeId(stream);
};
ReferenceDescription.possibleFields = [
"referenceTypeId",
"isForward",
"nodeId",
"browseName",
"displayName",
"nodeClass",
"typeDefinition"
];
exports.ReferenceDescription = ReferenceDescription;
const register_class_definition = require("node-opcua-factory/src/factories_factories").register_class_definition;
register_class_definition("ReferenceDescription",ReferenceDescription);