Audio plugin host https://kx.studio/carla
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.

juce_ios_MessageManager.mm 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. void MessageManager::runDispatchLoop()
  18. {
  19. jassert (isThisTheMessageThread()); // must only be called by the message thread
  20. runDispatchLoopUntil (-1);
  21. }
  22. void MessageManager::stopDispatchLoop()
  23. {
  24. [[[UIApplication sharedApplication] delegate] applicationWillTerminate: [UIApplication sharedApplication]];
  25. exit (0); // iOS apps get no mercy..
  26. }
  27. bool MessageManager::runDispatchLoopUntil (int millisecondsToRunFor)
  28. {
  29. JUCE_AUTORELEASEPOOL
  30. {
  31. jassert (isThisTheMessageThread()); // must only be called by the message thread
  32. uint32 startTime = Time::getMillisecondCounter();
  33. NSDate* endDate = [NSDate dateWithTimeIntervalSinceNow: millisecondsToRunFor * 0.001];
  34. while (! quitMessagePosted)
  35. {
  36. JUCE_AUTORELEASEPOOL
  37. {
  38. [[NSRunLoop currentRunLoop] runMode: NSDefaultRunLoopMode
  39. beforeDate: endDate];
  40. if (millisecondsToRunFor >= 0
  41. && Time::getMillisecondCounter() >= startTime + (uint32) millisecondsToRunFor)
  42. break;
  43. }
  44. }
  45. return ! quitMessagePosted;
  46. }
  47. }
  48. //==============================================================================
  49. static ScopedPointer<MessageQueue> messageQueue;
  50. void MessageManager::doPlatformSpecificInitialisation()
  51. {
  52. if (messageQueue == nullptr)
  53. messageQueue = new MessageQueue();
  54. }
  55. void MessageManager::doPlatformSpecificShutdown()
  56. {
  57. messageQueue = nullptr;
  58. }
  59. bool MessageManager::postMessageToSystemQueue (MessageManager::MessageBase* const message)
  60. {
  61. if (messageQueue != nullptr)
  62. messageQueue->post (message);
  63. return true;
  64. }
  65. void MessageManager::broadcastMessage (const String&)
  66. {
  67. // N/A on current iOS
  68. }