|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- /*
- * Carla macOS utils
- * Copyright (C) 2018-2022 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #ifdef CARLA_OS_MAC
-
- #include "CarlaMacUtils.hpp"
- #include "CarlaString.hpp"
-
- #include <sys/xattr.h>
-
- #ifdef __MAC_10_12
- # define Component CocoaComponent
- # define MemoryBlock CocoaMemoryBlock
- # define Point CocoaPoint
- #endif
-
- #import <Cocoa/Cocoa.h>
- #import <Foundation/Foundation.h>
-
- #undef Component
- #undef MemoryBlock
- #undef Point
-
- CARLA_BACKEND_START_NAMESPACE
-
- // --------------------------------------------------------------------------------------------------------------------
-
- void initStandaloneApplication()
- {
- [[NSApplication sharedApplication] retain];
- [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
- [NSApp activateIgnoringOtherApps:YES];
- }
-
- const char* findBinaryInBundle(const char* const bundleDir)
- {
- const CFURLRef urlRef = CFURLCreateFromFileSystemRepresentation(0, (const UInt8*)bundleDir, (CFIndex)strlen(bundleDir), true);
- CARLA_SAFE_ASSERT_RETURN(urlRef != nullptr, nullptr);
-
- const CFBundleRef bundleRef = CFBundleCreate(kCFAllocatorDefault, urlRef);
- CARLA_SAFE_ASSERT_RETURN(bundleRef != nullptr, nullptr);
-
- const CFURLRef exeRef = CFBundleCopyExecutableURL(bundleRef);
- CARLA_SAFE_ASSERT_RETURN(exeRef != nullptr, nullptr);
-
- const CFURLRef absoluteURL = CFURLCopyAbsoluteURL(exeRef);
- CARLA_SAFE_ASSERT_RETURN(absoluteURL != nullptr, nullptr);
-
- const NSString* strRef = (NSString*)CFURLCopyFileSystemPath(absoluteURL, kCFURLPOSIXPathStyle);
- CARLA_SAFE_ASSERT_RETURN(strRef != nullptr, nullptr);
-
- static CarlaString ret;
- ret = [strRef UTF8String];
-
- CFRelease(absoluteURL);
- CFRelease(exeRef);
- CFRelease(bundleRef);
- CFRelease(urlRef);
-
- return ret.buffer();
- }
-
- bool removeFileFromQuarantine(const char* const filename)
- {
- return removexattr(filename, "com.apple.quarantine", 0) == 0;
- }
-
- // --------------------------------------------------------------------------------------------------------------------
-
- AutoNSAutoreleasePool::AutoNSAutoreleasePool()
- : pool([NSAutoreleasePool new]) {}
-
- AutoNSAutoreleasePool::~AutoNSAutoreleasePool()
- {
- NSAutoreleasePool* rpool = (NSAutoreleasePool*)pool;
- [rpool drain];
- }
-
- // --------------------------------------------------------------------------------------------------------------------
-
- struct BundleLoader::PrivateData {
- CFBundleRef ref;
- CFBundleRefNum refNum;
-
- PrivateData() noexcept
- : ref(nullptr),
- refNum(0) {}
-
- ~PrivateData()
- {
- if (ref == nullptr)
- return;
-
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- CFBundleCloseBundleResourceMap(ref, refNum);
- #pragma clang diagnostic pop
-
- if (CFGetRetainCount(ref) == 1)
- CFBundleUnloadExecutable(ref);
-
- if (CFGetRetainCount(ref) > 0)
- CFRelease(ref);
- }
-
- bool load(const char* const filename)
- {
- const CFURLRef urlRef = CFURLCreateFromFileSystemRepresentation(0, (const UInt8*)filename, (CFIndex)std::strlen(filename), true);
- CARLA_SAFE_ASSERT_RETURN(urlRef != nullptr, false);
-
- ref = CFBundleCreate(kCFAllocatorDefault, urlRef);
- CFRelease(urlRef);
- CARLA_SAFE_ASSERT_RETURN(ref != nullptr, false);
-
- if (! CFBundleLoadExecutable(ref))
- {
- CFRelease(ref);
- ref = nullptr;
- return false;
- }
-
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- refNum = CFBundleOpenBundleResourceMap(ref);
- #pragma clang diagnostic pop
- return true;
- }
- };
-
- BundleLoader::BundleLoader()
- : pData(new PrivateData){}
-
- BundleLoader::~BundleLoader()
- {
- delete pData;
- }
-
- bool BundleLoader::load(const char* const filename)
- {
- return pData->load(filename);
- }
-
- CFBundleRef BundleLoader::getRef() const noexcept
- {
- return pData->ref;
- }
-
- // --------------------------------------------------------------------------------------------------------------------
-
- CARLA_BACKEND_END_NAMESPACE
-
- #endif // CARLA_OS_MAC
|