-
Notifications
You must be signed in to change notification settings - Fork 91
Copy the macros from SDWebImage Core repo to fix build issue #98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "SDWebImage/SDWebImage" "5.18.4" | ||
github "SDWebImage/SDWebImage" "5.18.10" | ||
github "SDWebImage/libwebp-Xcode" "1.3.2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
/* | ||
* This file is part of the SDWebImage package. | ||
* (c) Olivier Poitrey <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <os/lock.h> | ||
#import <libkern/OSAtomic.h> | ||
#import "SDmetamacros.h" | ||
|
||
#define SD_USE_OS_UNFAIR_LOCK TARGET_OS_MACCATALYST ||\ | ||
(__IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_10_0) ||\ | ||
(__MAC_OS_X_VERSION_MIN_REQUIRED >= __MAC_10_12) ||\ | ||
(__TV_OS_VERSION_MIN_REQUIRED >= __TVOS_10_0) ||\ | ||
(__WATCH_OS_VERSION_MIN_REQUIRED >= __WATCHOS_3_0) | ||
|
||
#ifndef SD_LOCK_DECLARE | ||
#if SD_USE_OS_UNFAIR_LOCK | ||
#define SD_LOCK_DECLARE(lock) os_unfair_lock lock | ||
#else | ||
#define SD_LOCK_DECLARE(lock) os_unfair_lock lock API_AVAILABLE(ios(10.0), tvos(10), watchos(3), macos(10.12)); \ | ||
OSSpinLock lock##_deprecated; | ||
#endif | ||
#endif | ||
|
||
#ifndef SD_LOCK_DECLARE_STATIC | ||
#if SD_USE_OS_UNFAIR_LOCK | ||
#define SD_LOCK_DECLARE_STATIC(lock) static os_unfair_lock lock | ||
#else | ||
#define SD_LOCK_DECLARE_STATIC(lock) static os_unfair_lock lock API_AVAILABLE(ios(10.0), tvos(10), watchos(3), macos(10.12)); \ | ||
static OSSpinLock lock##_deprecated; | ||
#endif | ||
#endif | ||
|
||
#ifndef SD_LOCK_INIT | ||
#if SD_USE_OS_UNFAIR_LOCK | ||
#define SD_LOCK_INIT(lock) lock = OS_UNFAIR_LOCK_INIT | ||
#else | ||
#define SD_LOCK_INIT(lock) if (@available(iOS 10, tvOS 10, watchOS 3, macOS 10.12, *)) lock = OS_UNFAIR_LOCK_INIT; \ | ||
else lock##_deprecated = OS_SPINLOCK_INIT; | ||
#endif | ||
#endif | ||
|
||
#ifndef SD_LOCK | ||
#if SD_USE_OS_UNFAIR_LOCK | ||
#define SD_LOCK(lock) os_unfair_lock_lock(&lock) | ||
#else | ||
#define SD_LOCK(lock) if (@available(iOS 10, tvOS 10, watchOS 3, macOS 10.12, *)) os_unfair_lock_lock(&lock); \ | ||
else OSSpinLockLock(&lock##_deprecated); | ||
#endif | ||
#endif | ||
|
||
#ifndef SD_UNLOCK | ||
#if SD_USE_OS_UNFAIR_LOCK | ||
#define SD_UNLOCK(lock) os_unfair_lock_unlock(&lock) | ||
#else | ||
#define SD_UNLOCK(lock) if (@available(iOS 10, tvOS 10, watchOS 3, macOS 10.12, *)) os_unfair_lock_unlock(&lock); \ | ||
else OSSpinLockUnlock(&lock##_deprecated); | ||
#endif | ||
#endif | ||
|
||
#ifndef SD_OPTIONS_CONTAINS | ||
#define SD_OPTIONS_CONTAINS(options, value) (((options) & (value)) == (value)) | ||
#endif | ||
|
||
#ifndef SD_CSTRING | ||
#define SD_CSTRING(str) #str | ||
#endif | ||
|
||
#ifndef SD_NSSTRING | ||
#define SD_NSSTRING(str) @(SD_CSTRING(str)) | ||
#endif | ||
|
||
#ifndef SD_SEL_SPI | ||
#define SD_SEL_SPI(name) NSSelectorFromString([NSString stringWithFormat:@"_%@", SD_NSSTRING(name)]) | ||
#endif | ||
|
||
#ifndef weakify | ||
#define weakify(...) \ | ||
sd_keywordify \ | ||
metamacro_foreach_cxt(sd_weakify_,, __weak, __VA_ARGS__) | ||
#endif | ||
|
||
#ifndef strongify | ||
#define strongify(...) \ | ||
sd_keywordify \ | ||
_Pragma("clang diagnostic push") \ | ||
_Pragma("clang diagnostic ignored \"-Wshadow\"") \ | ||
metamacro_foreach(sd_strongify_,, __VA_ARGS__) \ | ||
_Pragma("clang diagnostic pop") | ||
#endif | ||
|
||
#define sd_weakify_(INDEX, CONTEXT, VAR) \ | ||
CONTEXT __typeof__(VAR) metamacro_concat(VAR, _weak_) = (VAR); | ||
|
||
#define sd_strongify_(INDEX, VAR) \ | ||
__strong __typeof__(VAR) VAR = metamacro_concat(VAR, _weak_); | ||
|
||
#if DEBUG | ||
#define sd_keywordify autoreleasepool {} | ||
#else | ||
#define sd_keywordify try {} @catch (...) {} | ||
#endif | ||
|
||
#ifndef onExit | ||
#define onExit \ | ||
sd_keywordify \ | ||
__strong sd_cleanupBlock_t metamacro_concat(sd_exitBlock_, __LINE__) __attribute__((cleanup(sd_executeCleanupBlock), unused)) = ^ | ||
#endif | ||
|
||
typedef void (^sd_cleanupBlock_t)(void); | ||
|
||
#if defined(__cplusplus) | ||
extern "C" { | ||
#endif | ||
void sd_executeCleanupBlock (__strong sd_cleanupBlock_t *block); | ||
#if defined(__cplusplus) | ||
} | ||
#endif | ||
|
||
/** | ||
* \@keypath allows compile-time verification of key paths. Given a real object | ||
* receiver and key path: | ||
* | ||
* @code | ||
|
||
NSString *UTF8StringPath = @keypath(str.lowercaseString.UTF8String); | ||
// => @"lowercaseString.UTF8String" | ||
|
||
NSString *versionPath = @keypath(NSObject, version); | ||
// => @"version" | ||
|
||
NSString *lowercaseStringPath = @keypath(NSString.new, lowercaseString); | ||
// => @"lowercaseString" | ||
|
||
* @endcode | ||
* | ||
* ... the macro returns an \c NSString containing all but the first path | ||
* component or argument (e.g., @"lowercaseString.UTF8String", @"version"). | ||
* | ||
* In addition to simply creating a key path, this macro ensures that the key | ||
* path is valid at compile-time (causing a syntax error if not), and supports | ||
* refactoring, such that changing the name of the property will also update any | ||
* uses of \@keypath. | ||
*/ | ||
#define keypath(...) \ | ||
_Pragma("clang diagnostic push") \ | ||
_Pragma("clang diagnostic ignored \"-Warc-repeated-use-of-weak\"") \ | ||
(NO).boolValue ? ((NSString * _Nonnull)nil) : ((NSString * _Nonnull)@(cStringKeypath(__VA_ARGS__))) \ | ||
_Pragma("clang diagnostic pop") \ | ||
|
||
#define cStringKeypath(...) \ | ||
metamacro_if_eq(1, metamacro_argcount(__VA_ARGS__))(keypath1(__VA_ARGS__))(keypath2(__VA_ARGS__)) | ||
|
||
#define keypath1(PATH) \ | ||
(((void)(NO && ((void)PATH, NO)), \ | ||
({ char *__extobjckeypath__ = strchr(# PATH, '.'); NSCAssert(__extobjckeypath__, @"Provided key path is invalid."); __extobjckeypath__ + 1; }))) | ||
|
||
#define keypath2(OBJ, PATH) \ | ||
(((void)(NO && ((void)OBJ.PATH, NO)), # PATH)) | ||
|
||
/** | ||
* \@collectionKeypath allows compile-time verification of key paths across collections NSArray/NSSet etc. Given a real object | ||
* receiver, collection object receiver and related keypaths: | ||
* | ||
* @code | ||
|
||
NSString *employeesFirstNamePath = @collectionKeypath(department.employees, Employee.new, firstName) | ||
// => @"employees.firstName" | ||
|
||
NSString *employeesFirstNamePath = @collectionKeypath(Department.new, employees, Employee.new, firstName) | ||
// => @"employees.firstName" | ||
|
||
* @endcode | ||
* | ||
*/ | ||
#define collectionKeypath(...) \ | ||
metamacro_if_eq(3, metamacro_argcount(__VA_ARGS__))(collectionKeypath3(__VA_ARGS__))(collectionKeypath4(__VA_ARGS__)) | ||
|
||
#define collectionKeypath3(PATH, COLLECTION_OBJECT, COLLECTION_PATH) \ | ||
(YES).boolValue ? (NSString * _Nonnull)@((const char * _Nonnull)[[NSString stringWithFormat:@"%s.%s", cStringKeypath(PATH), cStringKeypath(COLLECTION_OBJECT, COLLECTION_PATH)] UTF8String]) : (NSString * _Nonnull)nil | ||
|
||
#define collectionKeypath4(OBJ, PATH, COLLECTION_OBJECT, COLLECTION_PATH) \ | ||
(YES).boolValue ? (NSString * _Nonnull)@((const char * _Nonnull)[[NSString stringWithFormat:@"%s.%s", cStringKeypath(OBJ, PATH), cStringKeypath(COLLECTION_OBJECT, COLLECTION_PATH)] UTF8String]) : (NSString * _Nonnull)nil |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.