Source: lib/timer.js

  1. // Copyright (c) 2017 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. /**
  17. * @class - Class representing a Timer in ROS
  18. * @hideconstructor
  19. */
  20. class Timer {
  21. constructor(handle, period, callback) {
  22. this._handle = handle;
  23. this._period = period;
  24. this.callback = callback;
  25. }
  26. /**
  27. * @type {bigint} - The period of the timer in nanoseconds.
  28. */
  29. get period() {
  30. return this._period;
  31. }
  32. get handle() {
  33. return this._handle;
  34. }
  35. /**
  36. * Check if the timer is ready.
  37. * @return {boolean} Return true if timer is ready, otherwise return false.
  38. */
  39. isReady() {
  40. return rclnodejs.isTimerReady(this._handle);
  41. }
  42. /**
  43. * Check if the timer is canceled.
  44. * @return {boolean} Return true if timer is canceled, otherwise return false.
  45. */
  46. isCanceled() {
  47. return rclnodejs.isTimerCanceled(this._handle);
  48. }
  49. /**
  50. * Cancel the timer.
  51. * @return {undefined}
  52. */
  53. cancel() {
  54. rclnodejs.cancelTimer(this._handle);
  55. }
  56. /**
  57. * Reset the timer.
  58. * @return {undefined}
  59. */
  60. reset() {
  61. rclnodejs.resetTimer(this._handle);
  62. }
  63. /**
  64. * Get the interval since the last call of this timer.
  65. * @return {bigint} - the interval value in nanoseconds.
  66. */
  67. timeSinceLastCall() {
  68. return rclnodejs.timerGetTimeSinceLastCall(this._handle);
  69. }
  70. /**
  71. * Get the interval until the next call will happen.
  72. * @return {bigint} - the interval value in nanoseconds.
  73. */
  74. timeUntilNextCall() {
  75. return rclnodejs.timerGetTimeUntilNextCall(this._handle);
  76. }
  77. }
  78. module.exports = Timer;