Source: lib/clock.js

  1. // Copyright (c) 2018 Intel Corporation. All rights reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. 'use strict';
  15. const rclnodejs = require('bindings')('rclnodejs');
  16. const Time = require('./time.js');
  17. const ClockType = require('./clock_type.js');
  18. /**
  19. * @class - Class representing a Clock in ROS
  20. */
  21. class Clock {
  22. /**
  23. * Create a Clock.
  24. * @param {ClockType} [clockType=Clock.ClockType.SYSTEM_TIME] - The type of the clock to be created.
  25. */
  26. constructor(clockType = ClockType.SYSTEM_TIME) {
  27. this._clockType = clockType;
  28. this._handle = rclnodejs.createClock(this._clockType);
  29. }
  30. /**
  31. * @ignore
  32. */
  33. get handle() {
  34. return this._handle;
  35. }
  36. /**
  37. * Get ClockType of this Clock object.
  38. * @return {ClockType} Return the type of the clock.
  39. */
  40. get clockType() {
  41. return this._clockType;
  42. }
  43. /**
  44. * Return the current time.
  45. * @return {Time} Return the current time.
  46. */
  47. now() {
  48. let time = rclnodejs.clockGetNow(this._handle);
  49. return new Time(time.sec, time.nanosec, this._clockType);
  50. }
  51. }
  52. /**
  53. * @class - Class representing a ROSClock in ROS
  54. */
  55. class ROSClock extends Clock {
  56. /**
  57. * Create a ROSClock.
  58. */
  59. constructor() {
  60. super(ClockType.ROS_TIME);
  61. }
  62. /**
  63. * Return status that whether the ROS time is active.
  64. * @name ROSClock#get:isRosTimeActive
  65. * @function
  66. * @return {boolean} Return true if the time is active, otherwise return false.
  67. */
  68. get isRosTimeActive() {
  69. return rclnodejs.getRosTimeOverrideIsEnabled(this._handle);
  70. }
  71. /**
  72. * Set the status of ROS time.
  73. * @param {boolean} enabled - Set the ROS time to be active.
  74. * @name ROSClock#set:isRosTimeActive
  75. * @function
  76. * @return {undefined}
  77. */
  78. set isRosTimeActive(enabled) {
  79. rclnodejs.setRosTimeOverrideIsEnabled(this._handle, enabled);
  80. }
  81. /**
  82. * Set the status of ROS time.
  83. * @param {Time} time - The time to be set override.
  84. * @name ROSClock#set:rosTimeOverride
  85. * @function
  86. * @return {undefined}
  87. */
  88. set rosTimeOverride(time) {
  89. if (!(time instanceof Time)) {
  90. throw new TypeError('Invalid argument, must be type of Time');
  91. }
  92. rclnodejs.setRosTimeOverride(this._handle, time._handle);
  93. }
  94. }
  95. Clock.ClockType = ClockType;
  96. module.exports = { Clock, ROSClock };