/*
 * Copyright [2019] [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.
 */
//
//  DoricJSLoaderManager.m
//  Doric
//
//  Created by pengfei.zhou on 2019/11/23.
//

#import "DoricJSLoaderManager.h"
#import "DoricMainBundleJSLoader.h"
#import "DoricHttpJSLoader.h"
#import "Doric.h"
#import "DoricSingleton.h"

@interface DoricJSLoaderManager ()
@property(nonatomic, copy) NSSet <id <DoricLoaderProtocol>> *loaders;
@end

@implementation DoricJSLoaderManager

+ (instancetype)instance {
    return DoricSingleton.instance.jsLoaderManager;
}

- (instancetype)init {
    if (self = [super init]) {
        _loaders = [[NSSet alloc] initWithArray:@[
                [DoricMainBundleJSLoader new],
                [DoricHttpJSLoader new],
        ]];
    }
    return self;
}

- (void)addJSLoader:(id <DoricLoaderProtocol>)loader {
    self.loaders = [[self.loaders mutableCopy] also:^(NSMutableSet *it) {
        [it addObject:loader];
    }];
}

- (DoricAsyncResult <NSString *> *)request:(NSString *)source {
    __block DoricAsyncResult *ret;
    if ([source hasPrefix:@"_internal_://"]) {
        ret = [DoricAsyncResult new];
        __block NSString *contextId = nil;
        __block NSString *className = nil;
        NSURLComponents *components = [NSURLComponents componentsWithString:source];
        [components.queryItems forEach:^(NSURLQueryItem *obj) {
            if ([obj.name isEqualToString:@"class"]) {
                className = obj.value;
            } else if ([obj.name isEqualToString:@"context"]) {
                contextId = obj.value;
            }
        }];
        if (contextId && className) {
            [ret setupResult:[NSString stringWithFormat:@"Entry('%@','%@')", contextId, className]];
        } else {
            [ret setupError:[NSException exceptionWithName:@"LoadingError"
                                                    reason:[NSString stringWithFormat:@"Scheme %@ format error", source]
                                                  userInfo:nil]];
        }
        return ret;

    }
    [self.loaders enumerateObjectsUsingBlock:^(id <DoricLoaderProtocol> obj, BOOL *stop) {
        if ([obj filter:source]) {
            ret = [obj request:source];
            *stop = YES;
        }
    }];
    if (!ret) {
        ret = [DoricAsyncResult new];
        [ret setupError:[NSException exceptionWithName:@"LoadingError"
                                                reason:[NSString stringWithFormat:@"Cannot find JS Loader for %@", source]
                                              userInfo:nil]];
    }
    return ret;
}
@end