2
0

esp32_main.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * Squeezelite - lightweight headless squeezebox emulator
  3. *
  4. * (c) Adrian Smith 2012-2015, triode1@btinternet.com
  5. * Ralph Irving 2015-2017, ralph_irving@hotmail.com
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * Additions (c) Paul Hermann, 2015-2017 under the same license terms
  21. * -Control of Raspberry pi GPIO for amplifier power
  22. * -Launch script on power status change from LMS
  23. */
  24. #include "squeezelite.h"
  25. #include <signal.h>
  26. #include "Configurator.h"
  27. extern bool user_rates;
  28. static unsigned int rates[MAX_SUPPORTED_SAMPLERATES] = {0};
  29. sys_Squeezelite* config;
  30. log_level loglevel = lDEBUG;
  31. static void sighandler(int signum) {
  32. slimproto_stop();
  33. // remove ourselves in case above does not work, second SIGINT will cause non gracefull shutdown
  34. signal(signum, SIG_DFL);
  35. }
  36. unsigned int* get_rates() {
  37. unsigned int ref[] TEST_RATES;
  38. sys_RatesOption* ratescfg = &config->rates;
  39. if (!config->has_rates || ((ratescfg->list_count == 0 || ratescfg->list[0] == 0) &&
  40. ratescfg->min == 0 && ratescfg->max == 0)) {
  41. user_rates = false;
  42. return rates;
  43. }
  44. if (ratescfg->list_count > 0 && ratescfg->list[0] != 0) {
  45. // Sort the rates from the list
  46. for (int i = 0; i < ratescfg->list_count && i < MAX_SUPPORTED_SAMPLERATES; ++i) {
  47. rates[i] = ratescfg->list[i];
  48. }
  49. // Sort logic here if needed
  50. } else {
  51. // Use min and max to determine rates
  52. unsigned int min = ratescfg->min;
  53. unsigned int max = ratescfg->max;
  54. if (max < min) {
  55. unsigned int tmp = max;
  56. max = min;
  57. min = tmp;
  58. }
  59. for (int i = 0, j = 0; i < MAX_SUPPORTED_SAMPLERATES; ++i) {
  60. if (ref[i] <= max && ref[i] >= min) {
  61. rates[j++] = ref[i];
  62. }
  63. }
  64. }
  65. user_rates = true;
  66. return rates;
  67. }
  68. log_level log_level_from_sys_level(sys_DebugLevelEnum level) {
  69. switch (level) {
  70. case sys_DebugLevelEnum_DEFAULT:
  71. return lWARN;
  72. break;
  73. case sys_DebugLevelEnum_INFO:
  74. return lINFO;
  75. break;
  76. case sys_DebugLevelEnum_ERROR:
  77. return lERROR;
  78. break;
  79. case sys_DebugLevelEnum_WARN:
  80. return lWARN;
  81. break;
  82. case sys_DebugLevelEnum_DEBUG:
  83. return lDEBUG;
  84. break;
  85. case sys_DebugLevelEnum_SDEBUG:
  86. return lSDEBUG;
  87. break;
  88. default:
  89. return lWARN;
  90. }
  91. }
  92. void build_codec_string(sys_CodexEnum* list, size_t count, char* buffer, size_t buf_size) {
  93. const char* prefix = STR(sys_CodexEnum) "_c_";
  94. const char* name = NULL;
  95. for (int i = 0; i < count; i++) {
  96. if (i > 0) {
  97. strncat(buffer, ", ", buf_size);
  98. }
  99. name = sys_CodexEnum_name(list[i]) + strlen(prefix);
  100. LOG_INFO("Found codec: %s ", name);
  101. strncat(buffer, name, buf_size);
  102. }
  103. LOG_INFO("Codec list: %s ", buffer);
  104. }
  105. int squeezelite_main_start() {
  106. u8_t mac[6];
  107. unsigned output_buf_size = 0;
  108. char include_codecs[101] = {0};
  109. char exclude_codecs[101] = {0};
  110. config = platform->has_services && platform->services.has_squeezelite
  111. ? &platform->services.squeezelite
  112. : NULL;
  113. if (!config) {
  114. LOG_ERROR("Squeezelite not configured");
  115. return -1;
  116. }
  117. int err = embedded_init();
  118. if (err) return err;
  119. get_mac(mac);
  120. unsigned int * rates = get_rates();
  121. signal(SIGINT, sighandler);
  122. signal(SIGTERM, sighandler);
  123. #if defined(SIGQUIT)
  124. signal(SIGQUIT, sighandler);
  125. #endif
  126. #if defined(SIGHUP)
  127. signal(SIGHUP, sighandler);
  128. #endif
  129. output_buf_size = config->buffers.output;
  130. // set the output buffer size if not specified on the command line, take account of resampling
  131. if (!output_buf_size) {
  132. output_buf_size = OUTPUTBUF_SIZE;
  133. if (strlen(config->resample) > 0) {
  134. unsigned scale = 8;
  135. if (rates[0]) {
  136. scale = rates[0] / 44100;
  137. if (scale > 8) scale = 8;
  138. if (scale < 1) scale = 1;
  139. }
  140. output_buf_size *= scale;
  141. }
  142. }
  143. build_codec_string(config->excluded_codex, config->excluded_codex_count, exclude_codecs,
  144. sizeof(exclude_codecs));
  145. build_codec_string(
  146. config->included_codex, config->included_codex, include_codecs, sizeof(include_codecs));
  147. unsigned int stream_buf_size =
  148. config->buffers.stream > 0 ? config->buffers.stream : STREAMBUF_SIZE;
  149. stream_init(
  150. log_level_from_sys_level(platform->services.squeezelite.log.stream), stream_buf_size);
  151. output_init_embedded();
  152. decode_init(log_level_from_sys_level(platform->services.squeezelite.log.decode), include_codecs,
  153. exclude_codecs);
  154. #if RESAMPLE || RESAMPLE16
  155. if (strlen(config->resample) > 0) {
  156. process_init(config->resample);
  157. }
  158. #endif
  159. if (!config->enabled) {
  160. LOG_ERROR("LMS is disabled");
  161. while (1)
  162. sleep(3600);
  163. }
  164. char* name = strlen(platform->names.squeezelite) > 0 ? platform->names.squeezelite
  165. : platform->names.device;
  166. slimproto(log_level_from_sys_level(platform->services.squeezelite.log.slimproto),
  167. config->server_name_ip, mac, name, NULL, NULL, config->max_rate);
  168. decode_close();
  169. stream_close();
  170. output_close_embedded();
  171. return (0);
  172. }