bt_stream_manager.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bt stream manager.
  9. */
  10. #define SYS_LOG_DOMAIN "bt manager"
  11. #include <os_common_api.h>
  12. #include <mem_manager.h>
  13. #include <msg_manager.h>
  14. #include <stream.h>
  15. #include <btservice_api.h>
  16. #include <bt_manager.h>
  17. #include "bt_manager_inner.h"
  18. static OS_MUTEX_DEFINE(bt_stream_pool_mutex);
  19. static io_stream_t bt_stream_pool[STREAM_TYPE_MAX_NUM] = {NULL};
  20. static bool bt_stream_pool_enable[STREAM_TYPE_MAX_NUM] = {0};
  21. void bt_manager_stream_pool_lock(void)
  22. {
  23. os_mutex_lock(&bt_stream_pool_mutex, OS_FOREVER);
  24. }
  25. void bt_manager_stream_pool_unlock(void)
  26. {
  27. os_mutex_unlock(&bt_stream_pool_mutex);
  28. }
  29. int bt_manager_stream_enable(int type, bool enable)
  30. {
  31. if (type >= STREAM_TYPE_MAX_NUM) {
  32. return -EINVAL;
  33. }
  34. bt_manager_stream_pool_lock();
  35. bt_stream_pool_enable[type] = enable;
  36. bt_manager_stream_pool_unlock();
  37. return 0;
  38. }
  39. bool bt_manager_stream_is_enable(int type)
  40. {
  41. if (type >= STREAM_TYPE_MAX_NUM) {
  42. return -EINVAL;
  43. }
  44. return bt_stream_pool_enable[type];
  45. }
  46. int bt_manager_set_stream(int type, io_stream_t stream)
  47. {
  48. SYS_LOG_INF(" stream : %p type %d\n", stream, type);
  49. if (type >= STREAM_TYPE_MAX_NUM) {
  50. return -EINVAL;
  51. }
  52. bt_manager_stream_pool_lock();
  53. bt_stream_pool[type] = stream;
  54. #ifdef CONFIG_TWS_MONO_MODE
  55. if (type == STREAM_TYPE_LOCAL ||
  56. (type == STREAM_TYPE_A2DP && bt_manager_tws_get_dev_role() == BTSRV_TWS_SLAVE)) {
  57. btif_tws_set_input_stream(stream);
  58. }
  59. #else
  60. if(type != STREAM_TYPE_SCO)
  61. btif_tws_set_input_stream(stream);
  62. else
  63. btif_tws_set_sco_input_stream(stream);
  64. #endif
  65. bt_manager_stream_pool_unlock();
  66. #ifdef CONFIG_BT_BLE
  67. /**notify ble adjust interval*/
  68. if (type == STREAM_TYPE_A2DP) {
  69. bt_manager_ble_a2dp_play_notify((stream ? true : false));
  70. } else if (type == STREAM_TYPE_SCO) {
  71. bt_manager_ble_hfp_play_notify((stream ? true : false));
  72. }
  73. #endif
  74. return 0;
  75. }
  76. /**this function must call in stream pool lock */
  77. io_stream_t bt_manager_get_stream(int type)
  78. {
  79. if (type >= STREAM_TYPE_MAX_NUM) {
  80. return NULL;
  81. }
  82. return bt_stream_pool[type];
  83. }