/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenFlexo is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.generator.utils; import java.util.logging.Logger; import org.openflexo.foundation.cg.CGRepository; import org.openflexo.foundation.cg.CGSymbolicDirectory; import org.openflexo.foundation.cg.generator.GeneratedTextResource; import org.openflexo.foundation.rm.ResourceType; import org.openflexo.generator.ProjectGenerator; import org.openflexo.generator.exception.GenerationException; import org.openflexo.generator.exception.UnexpectedExceptionOccuredException; import org.openflexo.generator.rm.ProjectTextFileResource; import org.openflexo.localization.FlexoLocalization; import org.openflexo.logging.FlexoLogger; import org.openflexo.toolbox.FileFormat; /** * @author gpolet * */ public class DefaultApplicationConfGenerator extends MetaFileGenerator { private static final String TEMPLATE_NAME = "DefaultApplication.conf.vm"; private static final Logger logger = FlexoLogger.getLogger(DefaultApplicationConfGenerator.class.getPackage().getName()); private static final String FILE_NAME = "DefaultApplication.conf"; public static final String IDENTIFIER = "DEFAULT_APPLICATION_CONF"; /** * @param aProject */ public DefaultApplicationConfGenerator(ProjectGenerator projectGenerator) { super(projectGenerator, FileFormat.TEXT, ResourceType.TEXT_FILE, FILE_NAME, IDENTIFIER); } @Override public void rebuildDependanciesForResource(ProjectTextFileResource resource) { super.rebuildDependanciesForResource(resource); resource.addToDependentResources(getProject().getFlexoDKVResource()); } @Override public Logger getGeneratorLogger() { return logger; } /** * */ @Override public void generate(boolean forceRegenerate) { if (!forceRegenerate && !needsGeneration()) { return; } try { refreshSecondaryProgressWindow(FlexoLocalization.localizedForKey("generating") + " " + getIdentifier(), false); startGeneration(); String generated = merge(TEMPLATE_NAME, defaultContext()); generatedCode = new GeneratedTextResource(FILE_NAME, generated); stopGeneration(); } catch (GenerationException e) { setGenerationException(e); } catch (Exception e) { setGenerationException(new UnexpectedExceptionOccuredException(e, getProjectGenerator())); } } @Override public String getRelativePath() { return ""; } @Override public CGSymbolicDirectory getSymbolicDirectory(CGRepository repository) { return repository.getResourcesSymbolicDirectory(); } }