Source: lib/duration.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 S_TO_NS = 10n ** 9n;
  17. /**
  18. * @class - Class representing a Duration in ROS
  19. */
  20. class Duration {
  21. /**
  22. * Create a Duration.
  23. * @param {bigint} [seconds=0] - The second part of the duration.
  24. * @param {bigint} [nanoseconds=0] - The nanosecond part of the duration.
  25. */
  26. constructor(seconds = 0n, nanoseconds = 0n) {
  27. if (typeof seconds !== 'bigint') {
  28. throw new TypeError('Invalid argument of seconds');
  29. }
  30. if (typeof nanoseconds !== 'bigint') {
  31. throw new TypeError('Invalid argument of nanoseconds');
  32. }
  33. const total = seconds * S_TO_NS + nanoseconds;
  34. if (total >= 2n ** 63n) {
  35. throw new RangeError(
  36. 'Total nanoseconds value is too large to store in C time point.'
  37. );
  38. }
  39. this._nanoseconds = total;
  40. this._handle = rclnodejs.createDuration(this._nanoseconds);
  41. }
  42. /**
  43. * Get the nanosecond part of the Duration.
  44. * @name Duration#get:nanoseconds
  45. * @function
  46. * @return {bigint} - value in nanosecond.
  47. */
  48. get nanoseconds() {
  49. return rclnodejs.getDurationNanoseconds(this._handle);
  50. }
  51. /**
  52. * Determine whether two Duration objects are equal.
  53. * @param {Duration} other - The Duration object to be compared.
  54. * @return {boolean} Return true if they are equal.
  55. */
  56. eq(other) {
  57. if (other instanceof Duration) {
  58. return this._nanoseconds === other.nanoseconds;
  59. }
  60. throw new TypeError(
  61. `Can't compare duration with object of type: ${other.constructor.name}`
  62. );
  63. }
  64. /**
  65. * Determine whether two Duration objects are not equal.
  66. * @param {Duration} other - The Duration object to be compared.
  67. * @return {boolean} Return true if they are not equal.
  68. */
  69. ne(other) {
  70. if (other instanceof Duration) {
  71. return this._nanoseconds !== other.nanoseconds;
  72. }
  73. throw new TypeError('Invalid argument');
  74. }
  75. /**
  76. * Determine whether the Duration object is less than another one.
  77. * @param {Duration} other - The Duration object to be compared.
  78. * @return {boolean} Return true if it's less than other.
  79. */
  80. lt(other) {
  81. if (other instanceof Duration) {
  82. return this._nanoseconds < other.nanoseconds;
  83. }
  84. throw new TypeError('Invalid argument');
  85. }
  86. /**
  87. * Determine whether the Duration object is less than or equal with another one.
  88. * @param {Duration} other - The Duration object to be compared.
  89. * @return {boolean} Return true if it's less than or equal with other.
  90. */
  91. lte(other) {
  92. if (other instanceof Duration) {
  93. return this._nanoseconds <= other.nanoseconds;
  94. }
  95. throw new TypeError('Invalid argument');
  96. }
  97. /**
  98. * Determine whether the Duration object is greater than another one.
  99. * @param {Duration} other - The Duration object to be compared.
  100. * @return {boolean} Return true if it's greater than other.
  101. */
  102. gt(other) {
  103. if (other instanceof Duration) {
  104. return this._nanoseconds > other.nanoseconds;
  105. }
  106. throw new TypeError('Invalid argument');
  107. }
  108. /**
  109. * Determine whether the Duration object is greater than or equal with another one.
  110. * @param {Duration} other - The Duration object to be compared.
  111. * @return {boolean} Return true if it's greater than or equal with other.
  112. */
  113. gte(other) {
  114. if (other instanceof Duration) {
  115. return this._nanoseconds >= other.nanoseconds;
  116. }
  117. throw new TypeError('Invalid argument');
  118. }
  119. }
  120. module.exports = Duration;