blob: 4662bcbc478c18ba4e594fd003f23d7b3a8ed843 [file] [log] [blame]
/*
* 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
<<<<<<< Updated upstream
*
* 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
=======
*
* https://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
>>>>>>> Stashed changes
* limitations under the License.
*/
package org.apache.jdo.tck.pc.order;
import java.util.Date;
import java.util.List;
import java.util.Locale;
import org.apache.jdo.tck.util.ConversionHelper;
import org.apache.jdo.tck.util.JDOCustomDateEditor;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.core.io.ClassPathResource;
/** Utility class to create a graph of order model instances from an xml representation. */
public class OrderModelReader extends DefaultListableBeanFactory {
private static final long serialVersionUID = 1L;
/** The name of the root list bean. */
public static final String ROOT_LIST_NAME = "root";
/** The bean-factory name in the xml input files. */
public static final String BEAN_FACTORY_NAME = "orderFactory";
/** The order factory instance. */
private OrderFactory orderFactory;
/** Bean definition reader */
private final XmlBeanDefinitionReader reader;
/**
* Create a OrderModelReader for the specified resourceName.
*
* @param resourceName the name of the resource
*/
public OrderModelReader(String resourceName) {
// Use the class loader of the Order class to find the resource
this(resourceName, Order.class.getClassLoader());
}
/**
* Create a OrderModelReader for the specified resourceName.
*
* @param resourceName the name of the resource
* @param classLoader the ClassLOader for the lookup
*/
public OrderModelReader(String resourceName, ClassLoader classLoader) {
super();
configureFactory();
this.reader = new XmlBeanDefinitionReader(this);
this.reader.loadBeanDefinitions(new ClassPathResource(resourceName, classLoader));
}
/**
* Returns a list of root objects. The method expects to find a bean called "root" of type list in
* the xml and returns it.
*
* @return a list of root instances
*/
@SuppressWarnings("unchecked")
public List<Object> getRootList() {
return (List<Object>) getBean(ROOT_LIST_NAME);
}
/**
* Configure the OrderModelReader, e.g. register CustomEditor classes to convert the string
* representation of a property into an instance of the right type.
*/
private void configureFactory() {
registerCustomEditor(Date.class, JDOCustomDateEditor.class);
orderFactory = OrderFactoryRegistry.getInstance();
addSingleton(BEAN_FACTORY_NAME, orderFactory);
}
// Convenience methods
/**
* Convenience method returning a Order instance for the specified name. The method returns <code>
* null</code> if there is no Order bean with the specified name.
*
* @param name the name of the bean to return.
* @return the instance of the bean or <code>null</code> if there no Order bean.
*/
public Order getOrder(String name) {
return getBean(name, Order.class);
}
/**
* Convenience method returning a OrderItem instance for the specified name. The method returns
* <code>null</code> if there is no Department bean with the specified name.
*
* @param name the name of the bean to return.
* @return the instance of the bean or <code>null</code> if there no Department bean.
*/
public OrderItem getOrderItem(String name) {
return getBean(name, OrderItem.class);
}
/**
* @return Returns the tearDownClasses.
*/
public Class<?>[] getTearDownClassesFromFactory() {
return orderFactory.getTearDownClasses();
}
/**
* @return Returns the tearDownClasses.
*/
public static Class<?>[] getTearDownClasses() {
return OrderFactoryConcreteClass.tearDownClasses;
}
public static Date stringToUtilDate(String value) {
return ConversionHelper.toUtilDate(JDOCustomDateEditor.DATE_PATTERN, Locale.US, value);
}
}