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.

351 lines
13KB

  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. typedef void (*AppFocusChangeCallback)();
  18. AppFocusChangeCallback appFocusChangeCallback = nullptr;
  19. typedef bool (*CheckEventBlockedByModalComps) (NSEvent*);
  20. CheckEventBlockedByModalComps isEventBlockedByModalComps = nullptr;
  21. typedef void (*MenuTrackingChangedCallback)(bool);
  22. MenuTrackingChangedCallback menuTrackingChangedCallback = nullptr;
  23. //==============================================================================
  24. struct AppDelegate
  25. {
  26. public:
  27. AppDelegate()
  28. {
  29. static AppDelegateClass cls;
  30. delegate = [cls.createInstance() init];
  31. NSNotificationCenter* center = [NSNotificationCenter defaultCenter];
  32. [center addObserver: delegate selector: @selector (mainMenuTrackingBegan:)
  33. name: NSMenuDidBeginTrackingNotification object: nil];
  34. [center addObserver: delegate selector: @selector (mainMenuTrackingEnded:)
  35. name: NSMenuDidEndTrackingNotification object: nil];
  36. if (JUCEApplicationBase::isStandaloneApp())
  37. {
  38. [NSApp setDelegate: delegate];
  39. [[NSDistributedNotificationCenter defaultCenter] addObserver: delegate
  40. selector: @selector (broadcastMessageCallback:)
  41. name: getBroacastEventName()
  42. object: nil];
  43. }
  44. else
  45. {
  46. [center addObserver: delegate selector: @selector (applicationDidResignActive:)
  47. name: NSApplicationDidResignActiveNotification object: NSApp];
  48. [center addObserver: delegate selector: @selector (applicationDidBecomeActive:)
  49. name: NSApplicationDidBecomeActiveNotification object: NSApp];
  50. [center addObserver: delegate selector: @selector (applicationWillUnhide:)
  51. name: NSApplicationWillUnhideNotification object: NSApp];
  52. }
  53. }
  54. ~AppDelegate()
  55. {
  56. [[NSRunLoop currentRunLoop] cancelPerformSelectorsWithTarget: delegate];
  57. [[NSNotificationCenter defaultCenter] removeObserver: delegate];
  58. if (JUCEApplicationBase::isStandaloneApp())
  59. {
  60. [NSApp setDelegate: nil];
  61. [[NSDistributedNotificationCenter defaultCenter] removeObserver: delegate
  62. name: getBroacastEventName()
  63. object: nil];
  64. }
  65. [delegate release];
  66. }
  67. static NSString* getBroacastEventName()
  68. {
  69. return juceStringToNS ("juce_" + String::toHexString (File::getSpecialLocation (File::currentExecutableFile).hashCode64()));
  70. }
  71. MessageQueue messageQueue;
  72. id delegate;
  73. private:
  74. //==============================================================================
  75. struct AppDelegateClass : public ObjCClass <NSObject>
  76. {
  77. AppDelegateClass() : ObjCClass <NSObject> ("JUCEAppDelegate_")
  78. {
  79. addMethod (@selector (applicationShouldTerminate:), applicationShouldTerminate, "I@:@");
  80. addMethod (@selector (applicationWillTerminate:), applicationWillTerminate, "v@:@");
  81. addMethod (@selector (application:openFile:), application_openFile, "c@:@@");
  82. addMethod (@selector (application:openFiles:), application_openFiles, "v@:@@");
  83. addMethod (@selector (applicationDidBecomeActive:), applicationDidBecomeActive, "v@:@");
  84. addMethod (@selector (applicationDidResignActive:), applicationDidResignActive, "v@:@");
  85. addMethod (@selector (applicationWillUnhide:), applicationWillUnhide, "v@:@");
  86. addMethod (@selector (broadcastMessageCallback:), broadcastMessageCallback, "v@:@");
  87. addMethod (@selector (mainMenuTrackingBegan:), mainMenuTrackingBegan, "v@:@");
  88. addMethod (@selector (mainMenuTrackingEnded:), mainMenuTrackingEnded, "v@:@");
  89. addMethod (@selector (dummyMethod), dummyMethod, "v@:");
  90. registerClass();
  91. }
  92. private:
  93. static NSApplicationTerminateReply applicationShouldTerminate (id /*self*/, SEL, NSApplication*)
  94. {
  95. if (JUCEApplicationBase* const app = JUCEApplicationBase::getInstance())
  96. {
  97. app->systemRequestedQuit();
  98. if (! MessageManager::getInstance()->hasStopMessageBeenSent())
  99. return NSTerminateCancel;
  100. }
  101. return NSTerminateNow;
  102. }
  103. static void applicationWillTerminate (id /*self*/, SEL, NSNotification*)
  104. {
  105. JUCEApplicationBase::appWillTerminateByForce();
  106. }
  107. static BOOL application_openFile (id /*self*/, SEL, NSApplication*, NSString* filename)
  108. {
  109. if (JUCEApplicationBase* const app = JUCEApplicationBase::getInstance())
  110. {
  111. app->anotherInstanceStarted (quotedIfContainsSpaces (filename));
  112. return YES;
  113. }
  114. return NO;
  115. }
  116. static void application_openFiles (id /*self*/, SEL, NSApplication*, NSArray* filenames)
  117. {
  118. if (JUCEApplicationBase* const app = JUCEApplicationBase::getInstance())
  119. {
  120. StringArray files;
  121. for (NSString* f in filenames)
  122. files.add (quotedIfContainsSpaces (f));
  123. if (files.size() > 0)
  124. app->anotherInstanceStarted (files.joinIntoString (" "));
  125. }
  126. }
  127. static void applicationDidBecomeActive (id /*self*/, SEL, NSNotification*) { focusChanged(); }
  128. static void applicationDidResignActive (id /*self*/, SEL, NSNotification*) { focusChanged(); }
  129. static void applicationWillUnhide (id /*self*/, SEL, NSNotification*) { focusChanged(); }
  130. static void broadcastMessageCallback (id /*self*/, SEL, NSNotification* n)
  131. {
  132. NSDictionary* dict = (NSDictionary*) [n userInfo];
  133. const String messageString (nsStringToJuce ((NSString*) [dict valueForKey: nsStringLiteral ("message")]));
  134. MessageManager::getInstance()->deliverBroadcastMessage (messageString);
  135. }
  136. static void mainMenuTrackingBegan (id /*self*/, SEL, NSNotification*)
  137. {
  138. if (menuTrackingChangedCallback != nullptr)
  139. (*menuTrackingChangedCallback) (true);
  140. }
  141. static void mainMenuTrackingEnded (id /*self*/, SEL, NSNotification*)
  142. {
  143. if (menuTrackingChangedCallback != nullptr)
  144. (*menuTrackingChangedCallback) (false);
  145. }
  146. static void dummyMethod (id /*self*/, SEL) {} // (used as a way of running a dummy thread)
  147. private:
  148. static void focusChanged()
  149. {
  150. if (appFocusChangeCallback != nullptr)
  151. (*appFocusChangeCallback)();
  152. }
  153. static String quotedIfContainsSpaces (NSString* file)
  154. {
  155. String s (nsStringToJuce (file));
  156. if (s.containsChar (' '))
  157. s = s.quoted ('"');
  158. return s;
  159. }
  160. };
  161. };
  162. //==============================================================================
  163. void MessageManager::runDispatchLoop()
  164. {
  165. if (! quitMessagePosted) // check that the quit message wasn't already posted..
  166. {
  167. JUCE_AUTORELEASEPOOL
  168. {
  169. // must only be called by the message thread!
  170. jassert (isThisTheMessageThread());
  171. #if JUCE_PROJUCER_LIVE_BUILD
  172. runDispatchLoopUntil (std::numeric_limits<int>::max());
  173. #else
  174. #if JUCE_CATCH_UNHANDLED_EXCEPTIONS
  175. @try
  176. {
  177. [NSApp run];
  178. }
  179. @catch (NSException* e)
  180. {
  181. // An AppKit exception will kill the app, but at least this provides a chance to log it.,
  182. std::runtime_error ex (std::string ("NSException: ") + [[e name] UTF8String] + ", Reason:" + [[e reason] UTF8String]);
  183. JUCEApplication::sendUnhandledException (&ex, __FILE__, __LINE__);
  184. }
  185. @finally
  186. {
  187. }
  188. #else
  189. [NSApp run];
  190. #endif
  191. #endif
  192. }
  193. }
  194. }
  195. void MessageManager::stopDispatchLoop()
  196. {
  197. jassert (isThisTheMessageThread()); // must only be called by the message thread
  198. quitMessagePosted = true;
  199. #if ! JUCE_PROJUCER_LIVE_BUILD
  200. [NSApp stop: nil];
  201. [NSApp activateIgnoringOtherApps: YES]; // (if the app is inactive, it sits there and ignores the quit request until the next time it gets activated)
  202. [NSEvent startPeriodicEventsAfterDelay: 0 withPeriod: 0.1];
  203. #endif
  204. }
  205. #if JUCE_MODAL_LOOPS_PERMITTED
  206. bool MessageManager::runDispatchLoopUntil (int millisecondsToRunFor)
  207. {
  208. jassert (millisecondsToRunFor >= 0);
  209. jassert (isThisTheMessageThread()); // must only be called by the message thread
  210. uint32 endTime = Time::getMillisecondCounter() + (uint32) millisecondsToRunFor;
  211. while (! quitMessagePosted)
  212. {
  213. JUCE_AUTORELEASEPOOL
  214. {
  215. CFRunLoopRunInMode (kCFRunLoopDefaultMode, 0.001, true);
  216. NSEvent* e = [NSApp nextEventMatchingMask: NSAnyEventMask
  217. untilDate: [NSDate dateWithTimeIntervalSinceNow: 0.001]
  218. inMode: NSDefaultRunLoopMode
  219. dequeue: YES];
  220. if (e != nil && (isEventBlockedByModalComps == nullptr || ! (*isEventBlockedByModalComps) (e)))
  221. [NSApp sendEvent: e];
  222. if (Time::getMillisecondCounter() >= endTime)
  223. break;
  224. }
  225. }
  226. return ! quitMessagePosted;
  227. }
  228. #endif
  229. //==============================================================================
  230. void initialiseNSApplication();
  231. void initialiseNSApplication()
  232. {
  233. JUCE_AUTORELEASEPOOL
  234. {
  235. [NSApplication sharedApplication];
  236. }
  237. }
  238. static AppDelegate* appDelegate = nullptr;
  239. void MessageManager::doPlatformSpecificInitialisation()
  240. {
  241. if (appDelegate == nil)
  242. appDelegate = new AppDelegate();
  243. #if ! (defined (MAC_OS_X_VERSION_10_5) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5)
  244. // This launches a dummy thread, which forces Cocoa to initialise NSThreads correctly (needed prior to 10.5)
  245. if (! [NSThread isMultiThreaded])
  246. [NSThread detachNewThreadSelector: @selector (dummyMethod)
  247. toTarget: appDelegate->delegate
  248. withObject: nil];
  249. #endif
  250. }
  251. void MessageManager::doPlatformSpecificShutdown()
  252. {
  253. delete appDelegate;
  254. appDelegate = nullptr;
  255. }
  256. bool MessageManager::postMessageToSystemQueue (MessageBase* message)
  257. {
  258. jassert (appDelegate != nil);
  259. appDelegate->messageQueue.post (message);
  260. return true;
  261. }
  262. void MessageManager::broadcastMessage (const String& message)
  263. {
  264. NSDictionary* info = [NSDictionary dictionaryWithObject: juceStringToNS (message)
  265. forKey: nsStringLiteral ("message")];
  266. [[NSDistributedNotificationCenter defaultCenter] postNotificationName: AppDelegate::getBroacastEventName()
  267. object: nil
  268. userInfo: info];
  269. }
  270. // Special function used by some plugin classes to re-post carbon events
  271. void repostCurrentNSEvent();
  272. void repostCurrentNSEvent()
  273. {
  274. struct EventReposter : public CallbackMessage
  275. {
  276. EventReposter() : e ([[NSApp currentEvent] retain]) {}
  277. ~EventReposter() { [e release]; }
  278. void messageCallback() override
  279. {
  280. [NSApp postEvent: e atStart: YES];
  281. }
  282. NSEvent* e;
  283. };
  284. (new EventReposter())->post();
  285. }