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.

86 lines
2.7KB

  1. /*
  2. * Carla macOS utils
  3. * Copyright (C) 2018-2021 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #ifdef CARLA_OS_MAC
  18. #include "CarlaMacUtils.hpp"
  19. #include "CarlaString.hpp"
  20. #include <sys/xattr.h>
  21. #import <Foundation/Foundation.h>
  22. CARLA_BACKEND_START_NAMESPACE
  23. // --------------------------------------------------------------------------------------------------------------------
  24. void initStandaloneApplication()
  25. {
  26. [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
  27. [NSApp activateIgnoringOtherApps:YES];
  28. }
  29. const char* findBinaryInBundle(const char* const bundleDir)
  30. {
  31. const CFURLRef urlRef = CFURLCreateFromFileSystemRepresentation(0, (const UInt8*)bundleDir, (CFIndex)strlen(bundleDir), true);
  32. CARLA_SAFE_ASSERT_RETURN(urlRef != nullptr, nullptr);
  33. const CFBundleRef bundleRef = CFBundleCreate(kCFAllocatorDefault, urlRef);
  34. CARLA_SAFE_ASSERT_RETURN(bundleRef != nullptr, nullptr);
  35. const CFURLRef exeRef = CFBundleCopyExecutableURL(bundleRef);
  36. CARLA_SAFE_ASSERT_RETURN(exeRef != nullptr, nullptr);
  37. const CFURLRef absoluteURL = CFURLCopyAbsoluteURL(exeRef);
  38. CARLA_SAFE_ASSERT_RETURN(absoluteURL != nullptr, nullptr);
  39. const NSString* strRef = (NSString*)CFURLCopyFileSystemPath(absoluteURL, kCFURLPOSIXPathStyle);
  40. CARLA_SAFE_ASSERT_RETURN(strRef != nullptr, nullptr);
  41. static CarlaString ret;
  42. ret = [strRef UTF8String];
  43. CFRelease(absoluteURL);
  44. CFRelease(exeRef);
  45. CFRelease(bundleRef);
  46. CFRelease(urlRef);
  47. return ret.buffer();
  48. }
  49. bool removeFileFromQuarantine(const char* const filename)
  50. {
  51. return removexattr(filename, "com.apple.quarantine", 0) == 0;
  52. }
  53. // --------------------------------------------------------------------------------------------------------------------
  54. AutoNSAutoreleasePool::AutoNSAutoreleasePool()
  55. : pool([NSAutoreleasePool new]) {}
  56. AutoNSAutoreleasePool::~AutoNSAutoreleasePool()
  57. {
  58. NSAutoreleasePool* rpool = (NSAutoreleasePool*)pool;
  59. [rpool drain];
  60. }
  61. // --------------------------------------------------------------------------------------------------------------------
  62. CARLA_BACKEND_END_NAMESPACE
  63. #endif // CARLA_OS_MAC