/* * (c) Copyright 2007-2011 by Volker Bergmann. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, is permitted under the terms of the * GNU General Public License. * * For redistributing this software or a derivative work under a license other * than the GPL-compatible Free Software License as defined by the Free * Software Foundation or approved by OSI, you must first obtain a commercial * license to this software product from Volker Bergmann. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * WITHOUT A WARRANTY OF ANY KIND. ALL EXPRESS OR IMPLIED CONDITIONS, * REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE * HEREBY EXCLUDED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ package org.databene.domain.address; import org.databene.benerator.NonNullGenerator; import org.databene.benerator.WeightedGenerator; import org.databene.benerator.dataset.AbstractDatasetGenerator; import org.databene.benerator.dataset.AtomicDatasetGenerator; import org.databene.benerator.dataset.Dataset; import org.databene.benerator.dataset.WeightedDatasetGenerator; import org.databene.benerator.sample.ConstantGenerator; import org.databene.benerator.util.GeneratorUtil; import org.databene.benerator.wrapper.WeighingGeneratorWrapper; /** * Generates a random country.<br/> * <br/> * Created: 11.06.2006 08:15:51 * @author Volker Bergmann */ public class CountryGenerator extends AbstractDatasetGenerator<Country> implements NonNullGenerator<Country> { private static final String REGION = "/org/databene/dataset/region"; // Constructors ---------------------------------------------------------------------------------------------------- public CountryGenerator() { this("world"); } public CountryGenerator(String datasetName) { super(Country.class, REGION, datasetName, true); } @Override protected boolean isAtomic(Dataset dataset) { Country country = Country.getInstance(dataset.getName(), false); return (country != null); } @Override protected WeightedGenerator<Country> createGeneratorForAtomicDataset(Dataset dataset) { WeightedDatasetGenerator<Country> result; Country country = Country.getInstance(dataset.getName(), false); result = createGeneratorForCountry(country); supportedDatasets.add(dataset.getName()); return result; } protected WeightedDatasetGenerator<Country> createGeneratorForCountry(Country country) { ConstantGenerator<Country> coreGenerator = new ConstantGenerator<Country>(country); WeightedGenerator<Country> generator = new WeighingGeneratorWrapper<Country>(coreGenerator, country.getPopulation()); totalWeight += generator.getWeight(); return new AtomicDatasetGenerator<Country>(generator, nesting, country.getIsoCode()); } public Country generate() { return GeneratorUtil.generateNonNull(this); } // java.lang.Object overrides -------------------------------------------------------------------------------------- @Override public String toString() { return getClass().getSimpleName() + "[" + getDataset() + "]"; } }