All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.agileclick.genorm.QueryGen Maven / Gradle / Ivy

The newest version!
/* 
Copyright 2012 Brian Hawkins
Licensed 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.agileclick.genorm;

import java.io.*;
import org.dom4j.io.SAXReader;
import org.dom4j.*;
import java.util.*;
import java.util.regex.*;
import org.jargp.*;
import org.antlr.stringtemplate.*;

import static java.lang.System.out;

public class QueryGen extends GenUtil
	{
	/* public static final String DESTINATION = "genorm.querygen.destination";
	public static final String PACKAGE = "genorm.querygen.package";
	public static final String FORMATTER = "genomr.querygen.formatter";
	public static final String TYPE_MAP = "genorm.querygen.typeMap"; */
	
	//private Format formatter;
	//private String m_packageName;
	//private Map m_typeMap;
	//private Properties m_config;
	//private ArrayList m_pluginList;
	
	//===========================================================================
	private static class CommandLine
		{
		public String source;
		public String destination;
		public String targetPackage;
		public String configurationFile;
		
		public CommandLine()
			{
			source = null;
			destination = null;
			targetPackage = null;
			configurationFile = null;
			}
		}
		
	//===========================================================================
	private static final ParameterDef[] PARAMETERS = 
		{
		new StringDef('s', "source"),
		new StringDef('d', "destination"),
		new StringDef('p', "targetPackage"),
		new StringDef('c', "configurationFile"),
		};
		
	
	
//==============================================================================
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
	private static String readFile(String fileName)
			throws IOException
		{
		FileReader fReader;
		StringBuilder sBuf = new StringBuilder(128);
		int inputChar;
		
		fReader = new FileReader(fileName);
		while((inputChar = fReader.read()) != -1)
			{
			sBuf.append((char)inputChar);
			}
			
		fReader.close();
			
		return (sBuf.toString());
		}
		
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
	public static void main(String[] args)
		{
		CommandLine cl = new CommandLine();
		ArgumentProcessor proc = new ArgumentProcessor(PARAMETERS);
		
		proc.processArgs(args, cl);
		
		
		try
			{
			QueryGen og = new QueryGen(cl.source); //, cl.destination, cl.targetPackage);
			
			if (cl.destination != null)
				og.setDestination(cl.destination);
				
			if (cl.targetPackage != null)
				og.setPackage(cl.targetPackage);
			
			og.generateClasses();
			}
		catch (Exception e)
			{
			e.printStackTrace();
			}
		}
		
//------------------------------------------------------------------------------
	public QueryGen(String source)
			throws ConfigurationException
		{
		super(source, false);
		}
		
//------------------------------------------------------------------------------
	/* public QueryGen(Properties configuration)
		{
		m_config = configuration;
		m_pluginList = new ArrayList();
		} */
		
//------------------------------------------------------------------------------
	/* public QueryGen(String source, String destDir, String packageName)
			throws ConfigurationException
		{
		super(source, false);
		} */



//------------------------------------------------------------------------------
	/* private Object loadClass(String prop, String defaultClass)
			throws ConfigurationException
		{
		Object ret = null;
		
		String className = m_config.getProperty(prop, defaultClass);
		
		try
			{
			if (className != null)
				ret = Class.forName(className).newInstance();
			}
		catch (ClassNotFoundException cnfe)
			{
			throw new ConfigurationException(prop, "Cannot load class "+className);
			}
		catch (InstantiationException ie)
			{
			throw new ConfigurationException(prop, "Cannot load class "+className);
			}
		catch (IllegalAccessException iae)
			{
			throw new ConfigurationException(prop, "Cannot load class "+className);
			}
			
		return (ret);
		} */
		
//------------------------------------------------------------------------------
	public void setConfiguration(String configurationFile)
		{
		setConfiguration(new PropertiesFile(configurationFile));
		}
		
//------------------------------------------------------------------------------
	public void setConfiguration(Properties configuration)
		{
		m_config = configuration;
		}
		
//------------------------------------------------------------------------------
	public void setConfigOption(String option, String value)
		{
		m_config.setProperty(option, value);
		}

		
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
	/* private void loadConfiguration(Element e)
			throws ClassNotFoundException, InstantiationException, IllegalAccessException
		{
		if (e.attributeValue("package") != null)
			m_config.setProperty(PACKAGE, e.attributeValue("package"));
			
		if (e.attributeValue("destination") != null)
			m_config.setProperty(DESTINATION, e.attributeValue("destination"));
			
		Iterator types = e.selectNodes("type").iterator();
		if (types.hasNext())
			m_typeMap = new HashMap();
			
		while (types.hasNext())
			{
			Element type = (Element)types.next();
			m_typeMap.put(type.attributeValue("custom"), type.attributeValue("java"));
			}
			
		Iterator plugins = e.selectNodes("plugin").iterator();
		while (plugins.hasNext())
			{
			Element plugin = (Element)plugins.next();
			QueryPlugin qPlugin = (QueryPlugin)Class.forName(plugin.attributeValue("class")).newInstance();
			
			qPlugin.init(plugin);
			m_pluginList.add(qPlugin);
			}
		} */
		
//------------------------------------------------------------------------------
	public void generateClasses()
			throws Exception
		{
		FileWriter fw;
		int genfiles = 0;
		
		String destDir = getRequiredProperty(PROP_DESTINATION);
		
		super.setDestinationDir(destDir);
		new File(destDir).mkdirs();
		
		Format formatter = super.getFormat();
			
		try
			{
			/* Iterator config = m_source.selectNodes("configuration/querygen").iterator();
			if (config.hasNext())
				loadConfiguration((Element)config.next()); */
				
			String packageName = getRequiredProperty(PROP_PACKAGE);
			
			StringTemplateGroup dataTypeMapGroup = loadTemplateGroup("templates/data_type_maps.st");
			
			StringTemplateGroup queryObjectTG = loadTemplateGroup("templates/ObjectQuery.java");
			queryObjectTG.setSuperGroup(dataTypeMapGroup);
			
			
			//NodeList nl = m_source.getElementsByTagName(QUERY);
			Iterator queryit = m_source.selectNodes("//queries/query").iterator();
			while (queryit.hasNext())
				{
				Element e = (Element)queryit.next();
				Query q = new Query(e, formatter, m_javaTypeMap);
				
				String fileName = q.getClassName() + "Query.java";
				String dataFileName = q.getClassName() + "Data.java";
								
				genfiles++;
				Map attributes = new HashMap();
				//TextReplace sqlQuery = new TextReplace(this.getClass().getClassLoader().getResourceAsStream("ObjectQuery.tmpl"), "%");
				
				attributes.put("package", packageName);
				attributes.put("query", q);
				attributes.put("dsPackage", m_config.getProperty(PROP_DATASOURCE_PACKAGE, packageName)+".");
				
				//StringBuilder pluginIncludes = new StringBuilder();
				StringBuilder pluginQueryBodies = new StringBuilder();
				
				Set importSet = new TreeSet();
				Set queryImplementSet = new TreeSet();
				Set recordImplementSet = new TreeSet();
				for (GenPlugin gp : m_pluginList)
					{
					QueryPlugin qp;
					if (gp instanceof QueryPlugin)
						qp = (QueryPlugin)gp;
					else
						continue;
						
					importSet.addAll(qp.getQueryImports(attributes));
					queryImplementSet.addAll(qp.getQueryImplements(attributes));
					
					pluginQueryBodies.append(qp.getQueryBody(attributes));
					pluginQueryBodies.append("\n");
					
					recordImplementSet.addAll(qp.getQueryRecordImplements(attributes));
					//pluginIncludes.append(qp.getIncludes(attributes));
					//pluginMethods.append(qp.getMethods(attributes));
					
					//pluginIncludes.append("\n");
					//pluginMethods.append("\n");
					}
					
				attributes.put("importList", importSet);
				attributes.put("queryImplementSet", queryImplementSet);
				attributes.put("queryImplementSetNotEmpty", !queryImplementSet.isEmpty());
				attributes.put("recordImplementSet", recordImplementSet);
				
				attributes.put("pluginQueryBody", pluginQueryBodies.toString());
				
				StringTemplate queryTemplate = queryObjectTG.getInstanceOf("objectQuery");
				queryTemplate.setAttributes(attributes);
				
				fw = new FileWriter(destDir+"/"+fileName);
				fw.write(queryTemplate.toString());
				fw.close();
				
				File dataFile = new File(destDir+"/"+dataFileName);
				if (!q.isUpdate() && !dataFile.exists())
					{
					genfiles++;
					queryTemplate = queryObjectTG.getInstanceOf("objectQueryData");
					queryTemplate.setAttributes(attributes);
					
					fw = new FileWriter(destDir+"/"+dataFileName);
					fw.write(queryTemplate.toString());
					fw.close();
					}
				}
			
			Map attributes = new HashMap();
			attributes.put("package", packageName);
			
			
			
			/* genfiles++;
			writeTemplate("SQLQuery.java", attributes);
			
			genfiles++;
			writeTemplate("Formatter.java", attributes);
			
			genfiles++;
			writeTemplate("DefaultFormatter.java", attributes); */
			
				
			System.out.println("Generated "+genfiles+" class files");
			}
		catch (Exception e)
			{
			System.out.println("Dude an exception");
			e.printStackTrace();
			return;
			}
		}
	}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy