mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
* Update the dangerfile * Make a trivial change to test new dangerfile * Try out the new value with another trivial change * Add a configuration API to make a unified place for pulling config from clients safely * Specify properties for delegate * Finish removing text experiment global enable * Generate the config file * Clean up configuration to fix tests * Work on making it serializable * Finish it up * Fix example code * Update sample project * Clean up a few things * Align with new project order * Make it faster and update license header * Add an option to specify your config at compile time * Update another license header * Add a version field, and bring interface state coalescing into configuration * Update CA queue code * Update CATransactionQueue tests * Turn transaction queue on by default (for now, see comment) * Update the tests * Update the tests AGAIN * Remove unused ordered set
97 lines
2.9 KiB
Objective-C
97 lines
2.9 KiB
Objective-C
//
|
|
// ASConfigurationInternal.m
|
|
// Texture
|
|
//
|
|
// Copyright (c) 2018-present, Pinterest, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
|
|
#import "ASConfigurationInternal.h"
|
|
#import <AsyncDisplayKit/ASConfiguration.h>
|
|
#import <AsyncDisplayKit/ASConfigurationDelegate.h>
|
|
#import <stdatomic.h>
|
|
|
|
#define ASGetSharedConfigMgr() (__bridge ASConfigurationManager *)ASConfigurationManager.sharedInstance
|
|
|
|
@implementation ASConfigurationManager {
|
|
ASConfiguration *_config;
|
|
dispatch_queue_t _delegateQueue;
|
|
_Atomic(ASExperimentalFeatures) _activatedExperiments;
|
|
}
|
|
|
|
/// Return CFTypeRef to avoid retain/release on this singleton.
|
|
+ (CFTypeRef)sharedInstance
|
|
{
|
|
static CFTypeRef inst;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
inst = (__bridge_retained CFTypeRef)[[ASConfigurationManager alloc] init];
|
|
});
|
|
return inst;
|
|
}
|
|
|
|
+ (ASConfiguration *)defaultConfiguration NS_RETURNS_RETAINED
|
|
{
|
|
ASConfiguration *config = [[ASConfiguration alloc] init];
|
|
// On by default for now, pending fix for https://github.com/TextureGroup/Texture/issues/853
|
|
config.experimentalFeatures = ASExperimentalInterfaceStateCoalescing;
|
|
return config;
|
|
}
|
|
|
|
- (instancetype)init
|
|
{
|
|
if (self = [super init]) {
|
|
_delegateQueue = dispatch_queue_create("org.TextureGroup.Texture.ConfigNotifyQueue", DISPATCH_QUEUE_SERIAL);
|
|
if ([ASConfiguration respondsToSelector:@selector(textureConfiguration)]) {
|
|
_config = [[ASConfiguration textureConfiguration] copy];
|
|
} else {
|
|
_config = [ASConfigurationManager defaultConfiguration];
|
|
}
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (BOOL)activateExperimentalFeature:(ASExperimentalFeatures)requested
|
|
{
|
|
if (_config == nil) {
|
|
return NO;
|
|
}
|
|
|
|
NSAssert(__builtin_popcount(requested) == 1, @"Cannot activate multiple features at once with this method.");
|
|
|
|
// If they're disabled, ignore them.
|
|
ASExperimentalFeatures enabled = requested & _config.experimentalFeatures;
|
|
ASExperimentalFeatures prevTriggered = atomic_fetch_or(&_activatedExperiments, enabled);
|
|
ASExperimentalFeatures newlyTriggered = enabled & ~prevTriggered;
|
|
|
|
// Notify delegate if needed.
|
|
if (newlyTriggered != 0) {
|
|
__unsafe_unretained id<ASConfigurationDelegate> del = _config.delegate;
|
|
dispatch_async(_delegateQueue, ^{
|
|
[del textureDidActivateExperimentalFeatures:newlyTriggered];
|
|
});
|
|
}
|
|
|
|
return (enabled != 0);
|
|
}
|
|
|
|
#if DEBUG
|
|
+ (void)test_resetWithConfiguration:(ASConfiguration *)configuration
|
|
{
|
|
ASConfigurationManager *inst = ASGetSharedConfigMgr();
|
|
inst->_config = configuration ?: [self defaultConfiguration];
|
|
atomic_store(&inst->_activatedExperiments, 0);
|
|
}
|
|
#endif
|
|
|
|
@end
|
|
|
|
BOOL ASActivateExperimentalFeature(ASExperimentalFeatures feature)
|
|
{
|
|
return [ASGetSharedConfigMgr() activateExperimentalFeature:feature];
|
|
}
|