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.

80 lines
2.5KB

  1. /*
  2. * Carla macOS utils
  3. * Copyright (C) 2018 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. const char* findBinaryInBundle(const char* const bundleDir)
  25. {
  26. const CFURLRef urlRef = CFURLCreateFromFileSystemRepresentation(0, (const UInt8*)bundleDir, (CFIndex)strlen(bundleDir), true);
  27. CARLA_SAFE_ASSERT_RETURN(urlRef != nullptr, nullptr);
  28. const CFBundleRef bundleRef = CFBundleCreate(kCFAllocatorDefault, urlRef);
  29. CARLA_SAFE_ASSERT_RETURN(bundleRef != nullptr, nullptr);
  30. const CFURLRef exeRef = CFBundleCopyExecutableURL(bundleRef);
  31. CARLA_SAFE_ASSERT_RETURN(exeRef != nullptr, nullptr);
  32. const CFURLRef absoluteURL = CFURLCopyAbsoluteURL(exeRef);
  33. CARLA_SAFE_ASSERT_RETURN(absoluteURL != nullptr, nullptr);
  34. const NSString* strRef = (NSString*)CFURLCopyFileSystemPath(absoluteURL, kCFURLPOSIXPathStyle);
  35. CARLA_SAFE_ASSERT_RETURN(strRef != nullptr, nullptr);
  36. static CarlaString ret;
  37. ret = [strRef UTF8String];
  38. CFRelease(absoluteURL);
  39. CFRelease(exeRef);
  40. CFRelease(bundleRef);
  41. CFRelease(urlRef);
  42. return ret.buffer();
  43. }
  44. bool removeFileFromQuarantine(const char* const filename)
  45. {
  46. return removexattr(filename, "com.apple.quarantine", 0) == 0;
  47. }
  48. // --------------------------------------------------------------------------------------------------------------------
  49. AutoNSAutoreleasePool::AutoNSAutoreleasePool()
  50. : pool([NSAutoreleasePool new]) {}
  51. AutoNSAutoreleasePool::~AutoNSAutoreleasePool()
  52. {
  53. NSAutoreleasePool* rpool = (NSAutoreleasePool*)pool;
  54. [rpool drain];
  55. }
  56. // --------------------------------------------------------------------------------------------------------------------
  57. CARLA_BACKEND_END_NAMESPACE
  58. #endif // CARLA_OS_MAC