Source: lib/lifecycle_publisher.js

  1. // Copyright (c) 2020 Wayne Parrott. 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 Logging = require('./logging.js');
  17. const Publisher = require('./publisher.js');
  18. /**
  19. * A publisher that sends messages only when activated.
  20. * This implementation is based on the
  21. * {@link https://github.com/ros2/rclcpp/blob/master/rclcpp_lifecycle/include/rclcpp_lifecycle/lifecycle_publisher.hpp|rclcpp LifecyclePublisher class}.
  22. *
  23. * @hideconstructor
  24. */
  25. class LifecyclePublisher extends Publisher {
  26. constructor(handle, typeClass, topic, options) {
  27. super(handle, typeClass, options);
  28. this._enabled = false;
  29. this._loggger = Logging.getLogger('LifecyclePublisher');
  30. }
  31. /**
  32. * Publish a message only when activated; otherwise do nothing (nop);
  33. *
  34. * @param {object|Buffer} message - The message to be sent, could be kind of JavaScript message generated from .msg
  35. * or be a Buffer for a raw message.
  36. * @returns {undefined}
  37. */
  38. publish(message) {
  39. if (!this._enabled) {
  40. this._loggger.warn(
  41. `Trying to publish message on the topic ${this.topic}, but the publisher is not activated`
  42. );
  43. return;
  44. }
  45. return super.publish(message);
  46. }
  47. /**
  48. * Enables communications; publish() will now send messages.
  49. * @returns {unknown} Void return.
  50. */
  51. activate() {
  52. this._enabled = true;
  53. }
  54. /**
  55. * Disable communications; publish() will not send messages.
  56. * @returns {unknown} Void return.
  57. */
  58. deactivate() {
  59. this._enabled = false;
  60. }
  61. /**
  62. * Determine if communications are enabled, i.e., activated, or
  63. * disabled, i.e., deactivated.
  64. * @returns {boolean} True if activated; otherwise false.
  65. */
  66. isActivated() {
  67. return this._enabled;
  68. }
  69. /**
  70. * A lifecycle-node activation notice.
  71. * @returns {unknown} Void return.
  72. */
  73. onActivate() {
  74. this.activate();
  75. }
  76. /**
  77. * A lifecycle-node deactivation notice.
  78. * @returns {unknown} Void return.
  79. */
  80. onDeactivate() {
  81. this.deactivate();
  82. }
  83. static createPublisher(nodeHandle, typeClass, topic, options) {
  84. let type = typeClass.type();
  85. let handle = rclnodejs.createPublisher(
  86. nodeHandle,
  87. type.pkgName,
  88. type.subFolder,
  89. type.interfaceName,
  90. topic,
  91. options.qos
  92. );
  93. return new LifecyclePublisher(handle, typeClass, topic, options);
  94. }
  95. }
  96. module.exports = LifecyclePublisher;