jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
3.6KB

  1. /*
  2. * Copyright (C) 2004 Rui Nuno Capela, Steve Harris
  3. * Copyright (C) 2008 Nedko Arnaudov
  4. * Copyright (C) 2008 Grame
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published by
  8. * the Free Software Foundation; either version 2.1 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. *
  20. */
  21. #include "JackMessageBuffer.h"
  22. #include "JackGlobals.h"
  23. #include "JackError.h"
  24. namespace Jack
  25. {
  26. JackMessageBuffer* JackMessageBuffer::fInstance = NULL;
  27. JackMessageBuffer::JackMessageBuffer()
  28. :fInit(NULL),fInitArg(NULL),fThread(this),fInBuffer(0),fOutBuffer(0),fOverruns(0),fRunning(false)
  29. {}
  30. JackMessageBuffer::~JackMessageBuffer()
  31. {}
  32. void JackMessageBuffer::Start()
  33. {
  34. fRunning = true;
  35. fThread.StartSync();
  36. }
  37. void JackMessageBuffer::Stop()
  38. {
  39. if (fOverruns > 0) {
  40. jack_error("WARNING: %d message buffer overruns!", fOverruns);
  41. } else {
  42. jack_log("no message buffer overruns");
  43. }
  44. fGuard.Lock();
  45. fRunning = false;
  46. fGuard.Signal();
  47. fGuard.Unlock();
  48. fThread.Stop();
  49. Flush();
  50. }
  51. void JackMessageBuffer::Flush()
  52. {
  53. while (fOutBuffer != fInBuffer) {
  54. jack_log_function(fBuffers[fOutBuffer].level, fBuffers[fOutBuffer].message);
  55. fOutBuffer = MB_NEXT(fOutBuffer);
  56. }
  57. }
  58. void JackMessageBuffer::AddMessage(int level, const char *message)
  59. {
  60. if (fGuard.Trylock()) {
  61. fBuffers[fInBuffer].level = level;
  62. strncpy(fBuffers[fInBuffer].message, message, MB_BUFFERSIZE);
  63. fInBuffer = MB_NEXT(fInBuffer);
  64. fGuard.Signal();
  65. fGuard.Unlock();
  66. } else { /* lock collision */
  67. INC_ATOMIC(&fOverruns);
  68. }
  69. }
  70. bool JackMessageBuffer::Execute()
  71. {
  72. while (fRunning) {
  73. fGuard.Lock();
  74. fGuard.Wait();
  75. /* the client asked for all threads to run a thread
  76. initialization callback, which includes us.
  77. */
  78. if (fInit) {
  79. fInit(fInitArg);
  80. fInit = NULL;
  81. /* and we're done */
  82. fGuard.Signal();
  83. }
  84. Flush();
  85. fGuard.Unlock();
  86. }
  87. return false;
  88. }
  89. void JackMessageBuffer::Create()
  90. {
  91. if (fInstance == NULL) {
  92. fInstance = new JackMessageBuffer();
  93. fInstance->Start();
  94. }
  95. }
  96. void JackMessageBuffer::Destroy()
  97. {
  98. if (fInstance != NULL) {
  99. fInstance->Stop();
  100. delete fInstance;
  101. fInstance = NULL;
  102. }
  103. }
  104. void JackMessageBufferAdd(int level, const char *message)
  105. {
  106. if (Jack::JackMessageBuffer::fInstance == NULL) {
  107. /* Unable to print message with realtime safety. Complain and print it anyway. */
  108. jack_log_function(LOG_LEVEL_ERROR, "messagebuffer not initialized, skip message");
  109. } else {
  110. Jack::JackMessageBuffer::fInstance->AddMessage(level, message);
  111. }
  112. }
  113. void JackMessageBuffer::SetInitCallback(JackThreadInitCallback callback, void *arg)
  114. {
  115. fGuard.Lock();
  116. /* set up the callback */
  117. fInitArg = arg;
  118. fInit = callback;
  119. /* wake msg buffer thread */
  120. fGuard.Signal();
  121. /* wait for it to be done */
  122. fGuard.Wait();
  123. /* and we're done */
  124. fGuard.Unlock();
  125. }
  126. };