APIs

Show:
// --------- This code has been automatically generated !!! 2017-12-15T21:15:14.614Z
"use strict";
/**
 * @module opcua.address_space.types
 */
var assert = require("node-opcua-assert");
var util = require("util");
var _  = require("underscore");
var makeNodeId = require("node-opcua-nodeid").makeNodeId;
var schema_helpers =  require("node-opcua-factory/src/factories_schema_helpers");
var extract_all_fields                       = schema_helpers.extract_all_fields;
var resolve_schema_field_types               = schema_helpers.resolve_schema_field_types;
var initialize_field                         = schema_helpers.initialize_field;
var initialize_field_array                   = schema_helpers.initialize_field_array;
var check_options_correctness_against_schema = schema_helpers.check_options_correctness_against_schema;
var _defaultTypeMap = require("node-opcua-factory/src/factories_builtin_types")._defaultTypeMap;
var ec = require("node-opcua-basic-types");
var encodeArray = ec.encodeArray;
var decodeArray = ec.decodeArray;
var makeExpandedNodeId = require("node-opcua-nodeid/src/expanded_nodeid").makeExpandedNodeId;
var generate_new_id = require("node-opcua-factory").generate_new_id;
var _enumerations = require("node-opcua-factory/src/factories_enumerations")._private._enumerations;
var schema = require("../test/test_factory_registerObject").Person_Schema;
var getFactory = require("node-opcua-factory/src/factories_factories").getFactory;
var BaseUAObject = require("node-opcua-factory/src/factories_baseobject").BaseUAObject;

/**
 * 
 * @class Person
 * @constructor
 * @extends BaseUAObject
 * @param  options {Object}
 * @param  [options.lastName] {UAString} 
 * @param  [options.address] {UAString} 
 * @param  [options.age = 25] {Int32} 
 */
function Person(options)
{
    options = options || {};
    /* istanbul ignore next */
    if (schema_helpers.doDebug) { check_options_correctness_against_schema(this,schema,options); }
    var self = this;
    assert(this instanceof BaseUAObject); //  ' keyword "new" is required for constructor call')
    resolve_schema_field_types(schema);

    BaseUAObject.call(this,options);

    /**
      * 
      * @property lastName
      * @type {UAString}
      */
    self.lastName = initialize_field(schema.fields[0], options.lastName);

    /**
      * 
      * @property address
      * @type {UAString}
      */
    self.address = initialize_field(schema.fields[1], options.address);

    /**
      * 
      * @property age
      * @type {Int32}
      * @default  25
      */
    self.age = initialize_field(schema.fields[2], options.age);

   // Object.preventExtensions(self);
}
util.inherits(Person,BaseUAObject);
schema.id = generate_new_id();
Person.prototype.encodingDefaultBinary = makeExpandedNodeId(schema.id);
Person.prototype._schema = schema;

var encode_UAString = _defaultTypeMap.UAString.encode;
var decode_UAString = _defaultTypeMap.UAString.decode;
var encode_Int32 = _defaultTypeMap.Int32.encode;
var decode_Int32 = _defaultTypeMap.Int32.decode;
/**
 * encode the object into a binary stream
 * @method encode
 *
 * @param stream {BinaryStream} 
 */
Person.prototype.encode = function(stream,options) {
    // call base class implementation first
    BaseUAObject.prototype.encode.call(this,stream,options);
    encode_UAString(this.lastName,stream);
    encode_UAString(this.address,stream);
    encode_Int32(this.age,stream);
};
/**
 * decode the object from a binary stream
 * @method decode
 *
 * @param stream {BinaryStream} 
 * @param [option] {object} 
 */
Person.prototype.decode = function(stream,options) {
    // call base class implementation first
    BaseUAObject.prototype.decode.call(this,stream,options);
    this.lastName = decode_UAString(stream,options);
    this.address = decode_UAString(stream,options);
    this.age = decode_Int32(stream,options);
};
Person.possibleFields = [
  "lastName",
         "address",
         "age"
];


exports.Person = Person;
var register_class_definition = require("node-opcua-factory/src/factories_factories").register_class_definition;
register_class_definition("Person",Person);