APIs

Show:
  1. "use strict";
  2.  
  3. /**
  4. * @module opcua.address_space
  5. */
  6. const assert = require("node-opcua-assert").assert;
  7. const util = require("util");
  8. const _ = require("underscore");
  9.  
  10.  
  11. const NodeClass = require("node-opcua-data-model").NodeClass;
  12. const AttributeIds = require("node-opcua-data-model").AttributeIds;
  13.  
  14. const resolveNodeId = require("node-opcua-nodeid").resolveNodeId;
  15.  
  16.  
  17. const DataValue = require("node-opcua-data-value").DataValue;
  18. const DataType = require("node-opcua-variant").DataType;
  19. const StatusCodes = require("node-opcua-status-code").StatusCodes;
  20.  
  21.  
  22. const ec = require("node-opcua-basic-types");
  23.  
  24. const BaseNode = require("./base_node").BaseNode;
  25. const SessionContext = require("./session_context").SessionContext;
  26.  
  27.  
  28. /**
  29. * @class UAObject
  30. * @param options
  31. * @constructor
  32. */
  33. function UAObject(options) {
  34. BaseNode.apply(this, arguments);
  35. this.eventNotifier = options.eventNotifier || 0;
  36. assert(_.isNumber(this.eventNotifier) && ec.isValidByte(this.eventNotifier));
  37. this.symbolicName = options.symbolicName || null;
  38. }
  39.  
  40. util.inherits(UAObject, BaseNode);
  41. UAObject.prototype.nodeClass = NodeClass.Object;
  42. UAObject.typeDefinition = resolveNodeId("BaseObjectType");
  43.  
  44. const getCurrentClock = require("node-opcua-date-time").getCurrentClock;
  45.  
  46.  
  47. UAObject.prototype.readAttribute = function (context, attributeId) {
  48.  
  49. assert(context instanceof SessionContext);
  50.  
  51. const now = getCurrentClock();
  52. const options = {};
  53. switch (attributeId) {
  54. case AttributeIds.EventNotifier:
  55. assert(ec.isValidByte(this.eventNotifier));
  56. options.value = {dataType: DataType.Byte, value: this.eventNotifier};
  57. options.serverTimestamp = now.timestamp;
  58. options.serverPicoseconds = now.picoseconds;
  59. options.statusCode = StatusCodes.Good;
  60. break;
  61. default:
  62. return BaseNode.prototype.readAttribute.call(this, context, attributeId);
  63. }
  64. return new DataValue(options);
  65. };
  66.  
  67.  
  68. UAObject.prototype.clone = function (options,optionalFilter,extraInfo) {
  69. const self = this;
  70. options = options || {};
  71. options = _.extend(_.clone(options),{
  72. eventNotifier: self.eventNotifier,
  73. symbolicName: self.symbolicName
  74. });
  75. const cloneObject = self._clone(UAObject,options, optionalFilter, extraInfo);
  76.  
  77. //xx newObject.propagate_back_references();
  78. //xx newObject.install_extra_properties();
  79. return cloneObject;
  80. };
  81.  
  82. exports.UAObject = UAObject;
  83. require("./ua_object_raiseEvent").install(UAObject);
  84.