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.
|
|
|
|
//
|
|
|
|
|
2021-12-07 18:13:49 +08:00
|
|
|
#import "DoricResourceManager.h"
|
2021-11-26 11:58:39 +08:00
|
|
|
#import "DoricContext.h"
|
2022-03-07 18:31:14 +08:00
|
|
|
#import "DoricArrayBufferResource.h"
|
2021-10-25 16:01:44 +08:00
|
|
|
|
2021-12-07 18:13:49 +08:00
|
|
|
@interface DoricResourceManager ()
|
2021-10-25 16:01:44 +08:00
|
|
|
@property(nonatomic, strong) NSMutableDictionary <NSString *, id <DoricResourceLoader>> *loaders;
|
2021-11-18 18:15:36 +08:00
|
|
|
@property(nonatomic, strong) dispatch_queue_t mapQueue;
|
2021-10-25 16:01:44 +08:00
|
|
|
@end
|
|
|
|
|
2021-12-07 18:13:49 +08:00
|
|
|
@implementation DoricResourceManager
|
2021-10-25 16:01:44 +08:00
|
|
|
- (instancetype)init {
|
|
|
|
if (self = [super init]) {
|
|
|
|
_loaders = [NSMutableDictionary new];
|
2021-11-18 18:15:36 +08:00
|
|
|
_mapQueue = dispatch_queue_create("doric.resource", DISPATCH_QUEUE_SERIAL);
|
2021-10-25 16:01:44 +08:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)registerLoader:(id <DoricResourceLoader>)loader {
|
2021-11-18 18:15:36 +08:00
|
|
|
dispatch_sync(self.mapQueue, ^{
|
|
|
|
self.loaders[loader.resourceType] = loader;
|
|
|
|
});
|
2021-10-25 16:01:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)unRegisterLoader:(id <DoricResourceLoader>)loader {
|
2021-11-18 18:15:36 +08:00
|
|
|
dispatch_sync(self.mapQueue, ^{
|
|
|
|
[self.loaders removeObjectForKey:loader.resourceType];
|
|
|
|
});
|
2021-10-25 16:01:44 +08:00
|
|
|
}
|
|
|
|
|
2021-11-18 19:08:33 +08:00
|
|
|
- (__kindof DoricResource *)load:(NSDictionary *)resource
|
2021-10-25 16:01:44 +08:00
|
|
|
withContext:(DoricContext *)context {
|
2021-11-18 19:08:33 +08:00
|
|
|
NSString *type = resource[@"type"];
|
|
|
|
NSString *identifier = resource[@"identifier"];
|
|
|
|
NSString *resId = resource[@"resId"];
|
|
|
|
__block __kindof DoricResource *doricResource;
|
2021-11-18 18:15:36 +08:00
|
|
|
dispatch_sync(self.mapQueue, ^() {
|
2021-11-26 11:58:39 +08:00
|
|
|
doricResource = [context.cachedResources objectForKey:resId];
|
2021-11-18 19:08:33 +08:00
|
|
|
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"];
|
|
|
|
}
|
2021-11-26 11:58:39 +08:00
|
|
|
[context.cachedResources setObject:doricResource forKey:resId];
|
2021-11-18 18:15:36 +08:00
|
|
|
}
|
|
|
|
});
|
2021-11-18 19:08:33 +08:00
|
|
|
return doricResource;
|
2021-10-25 16:01:44 +08:00
|
|
|
}
|
|
|
|
|
2021-12-07 18:13:49 +08:00
|
|
|
@end
|