manager_system.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2013, Digium, Inc.
  5. *
  6. * Jason Parker <jparker@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*! \file
  19. *
  20. * \brief System AMI event handling
  21. *
  22. * \author Jason Parker <jparker@digium.com>
  23. */
  24. #include "asterisk.h"
  25. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  26. #include "asterisk/stasis.h"
  27. #include "asterisk/stasis_message_router.h"
  28. #include "asterisk/stasis_system.h"
  29. /*! \brief The \ref stasis subscription returned by the forwarding of the system topic
  30. * to the manager topic
  31. */
  32. static struct stasis_forward *topic_forwarder;
  33. static void manager_system_shutdown(void)
  34. {
  35. stasis_forward_cancel(topic_forwarder);
  36. topic_forwarder = NULL;
  37. }
  38. int manager_system_init(void)
  39. {
  40. struct stasis_topic *manager_topic;
  41. struct stasis_topic *system_topic;
  42. struct stasis_message_router *message_router;
  43. manager_topic = ast_manager_get_topic();
  44. if (!manager_topic) {
  45. return -1;
  46. }
  47. message_router = ast_manager_get_message_router();
  48. if (!message_router) {
  49. return -1;
  50. }
  51. system_topic = ast_system_topic();
  52. if (!system_topic) {
  53. return -1;
  54. }
  55. topic_forwarder = stasis_forward_all(system_topic, manager_topic);
  56. if (!topic_forwarder) {
  57. return -1;
  58. }
  59. ast_register_cleanup(manager_system_shutdown);
  60. return 0;
  61. }