/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. * */ package org.apache.qpid.server.model; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Map; import org.apache.qpid.server.plugin.ConfiguredObjectTypeFactory; import org.apache.qpid.server.plugin.QpidServiceLoader; import org.apache.qpid.server.store.ConfiguredObjectRecord; import org.apache.qpid.server.store.UnresolvedConfiguredObject; import org.apache.qpid.server.util.ServerScopedRuntimeException; public class ConfiguredObjectFactoryImpl implements ConfiguredObjectFactory { private final Map _defaultTypes = new HashMap(); private final Map> _allFactories = new HashMap>(); private final Map> _supportedTypes = new HashMap>(); private final Model _model; public ConfiguredObjectFactoryImpl(Model model) { _model = model; QpidServiceLoader serviceLoader = new QpidServiceLoader(); Iterable allFactories = serviceLoader.instancesOf(ConfiguredObjectTypeFactory.class); for (ConfiguredObjectTypeFactory factory : allFactories) { final Class categoryClass = factory.getCategoryClass(); final String categoryName = categoryClass.getSimpleName(); Map categoryFactories = _allFactories.get(categoryName); if (categoryFactories == null) { categoryFactories = new HashMap(); _allFactories.put(categoryName, categoryFactories); _supportedTypes.put(categoryName, new ArrayList()); ManagedObject annotation = categoryClass.getAnnotation(ManagedObject.class); if (annotation != null && !"".equals(annotation.defaultType())) { _defaultTypes.put(categoryName, annotation.defaultType()); } else { _defaultTypes.put(categoryName, categoryName); } } if (categoryFactories.put(factory.getType(), factory) != null) { throw new ServerScopedRuntimeException( "Misconfiguration - there is more than one factory defined for class " + categoryName + " with type " + factory.getType()); } if (factory.getType() != null) { _supportedTypes.get(categoryName).add(factory.getType()); } } } @Override public > UnresolvedConfiguredObject recover(ConfiguredObjectRecord record, ConfiguredObject... parents) { String category = record.getType(); String type = (String) record.getAttributes().get(ConfiguredObject.TYPE); ConfiguredObjectTypeFactory factory = getConfiguredObjectTypeFactory(category, type); if(factory == null) { throw new NoFactoryForTypeException(category, type); } return factory.recover(this, record, parents); } @Override public > X create(Class clazz, final Map attributes, final ConfiguredObject... parents) { ConfiguredObjectTypeFactory factory = getConfiguredObjectTypeFactory(clazz, attributes); return factory.create(this, attributes, parents); } @Override public > ConfiguredObjectTypeFactory getConfiguredObjectTypeFactory(final Class categoryClass, Map attributes) { final String category = categoryClass.getSimpleName(); Map categoryFactories = _allFactories.get(category); if(categoryFactories == null) { throw new NoFactoryForCategoryException(category); } String type = (String) attributes.get(ConfiguredObject.TYPE); ConfiguredObjectTypeFactory factory; if(type != null) { factory = getConfiguredObjectTypeFactory(category, type); if(factory == null) { throw new NoFactoryForTypeException(category, type); } } else { factory = getConfiguredObjectTypeFactory(category, null); } return factory; } @Override public > ConfiguredObjectTypeFactory getConfiguredObjectTypeFactory(final String category, final String type) { Map categoryFactories = _allFactories.get(category); if(categoryFactories == null) { throw new NoFactoryForCategoryException(category); } ConfiguredObjectTypeFactory factory = categoryFactories.get(type); if(factory == null) { factory = categoryFactories.get(_defaultTypes.get(category)); if(factory == null) { throw new NoFactoryForTypeException(category, type); } } return factory; } @Override public Collection getSupportedTypes(Class category) { return Collections.unmodifiableCollection(_supportedTypes.get(category.getSimpleName())); } @Override public Model getModel() { return _model; } }