This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-iOS/Pod/Classes/Resource/DoricResourceManager.m

71 lines
2.3 KiB
Mathematica
Raw Normal View History

2021-10-25 16:01:44 +08:00
/*
* Copyright [2021] [Doric.Pub]
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//
// Created by pengfei.zhou on 2021/10/22.
//
#import "DoricResourceManager.h"
#import "DoricContext.h"
2022-03-07 18:31:14 +08:00
#import "DoricArrayBufferResource.h"
2021-10-25 16:01:44 +08:00
@interface DoricResourceManager ()
2021-10-25 16:01:44 +08:00
@property(nonatomic, strong) NSMutableDictionary <NSString *, id <DoricResourceLoader>> *loaders;
@property(nonatomic, strong) dispatch_queue_t mapQueue;
2021-10-25 16:01:44 +08:00
@end
@implementation DoricResourceManager
2021-10-25 16:01:44 +08:00
- (instancetype)init {
if (self = [super init]) {
_loaders = [NSMutableDictionary new];
_mapQueue = dispatch_queue_create("doric.resource", DISPATCH_QUEUE_SERIAL);
2021-10-25 16:01:44 +08:00
}
return self;
}
- (void)registerLoader:(id <DoricResourceLoader>)loader {
dispatch_sync(self.mapQueue, ^{
self.loaders[loader.resourceType] = loader;
});
2021-10-25 16:01:44 +08:00
}
- (void)unRegisterLoader:(id <DoricResourceLoader>)loader {
dispatch_sync(self.mapQueue, ^{
[self.loaders removeObjectForKey:loader.resourceType];
});
2021-10-25 16:01:44 +08:00
}
- (__kindof DoricResource *)load:(NSDictionary *)resource
2021-10-25 16:01:44 +08:00
withContext:(DoricContext *)context {
NSString *type = resource[@"type"];
NSString *identifier = resource[@"identifier"];
NSString *resId = resource[@"resId"];
__block __kindof DoricResource *doricResource;
dispatch_sync(self.mapQueue, ^() {
doricResource = [context.cachedResources objectForKey:resId];
if (!doricResource) {
id <DoricResourceLoader> loader = self.loaders[type];
doricResource = [loader load:identifier withContext:context];
2022-03-07 18:31:14 +08:00
if ([doricResource isKindOfClass:DoricArrayBufferResource.class]) {
((DoricArrayBufferResource *) doricResource).data = resource[@"data"];
}
[context.cachedResources setObject:doricResource forKey:resId];
}
});
return doricResource;
2021-10-25 16:01:44 +08:00
}
@end