2 * Copyright © 2016-2017 European Support Limited
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.openecomp.core.factory.api;
19 import org.apache.commons.lang3.StringUtils;
20 import org.openecomp.core.factory.FactoryConfig;
21 import org.openecomp.core.factory.impl.AbstractFactoryBase;
22 import org.openecomp.core.utilities.CommonMethods;
23 import org.openecomp.sdc.common.errors.CoreException;
24 import org.openecomp.sdc.common.errors.ErrorCategory;
25 import org.openecomp.sdc.common.errors.ErrorCode;
29 public abstract class AbstractComponentFactory<I> extends AbstractFactory<I> {
32 Registry registry = new RegistryImpl();
33 InitializationHelper.registerFactoryMapping(registry);
38 void register(String factory, String impl);
41 private static class RegistryImpl implements Registry {
43 public void register(String factory, String impl) {
44 AbstractFactoryBase.registerFactory(factory, impl);
48 static class InitializationHelper {
51 private static boolean isRegistered = false;
53 private InitializationHelper() {
56 static synchronized void registerFactoryMapping(Registry registry) {
58 registerFactoryMappingImpl(registry);
63 private static void registerFactoryMappingImpl(Registry registry) {
64 Map<String, String> factoryMap = FactoryConfig.getFactoriesMap();
66 for (Map.Entry<String, String> entry : factoryMap.entrySet()) {
67 String abstractClassName = entry.getKey();
68 String concreteTypeName = entry.getValue();
70 if (StringUtils.isEmpty(concreteTypeName)) {
71 throw new CoreException(
72 new ErrorCode.ErrorCodeBuilder().withId("E0003")
73 .withMessage("Missing configuration value:" + concreteTypeName + ".")
74 .withCategory(ErrorCategory.SYSTEM).build());
77 registry.register(abstractClassName, concreteTypeName);