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

ingenias.editor.extension.BasicCodeGeneratorImp Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
/** 
 * Copyright (C) 2010  Jorge J. Gomez-Sanz
 * 
 * This file is part of the INGENME tool. INGENME is an open source meta-editor
 * which produces customized editors for user-defined modeling languages
 *
 * This program 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 version 3 of the License
 *
 * This program 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 this program.  If not, see 
 **/

package ingenias.editor.extension;


import ingenias.editor.GUIResources;
import ingenias.editor.ProgressListener;
import ingenias.editor.ProjectProperty;
import ingenias.exception.CannotLoad;
import ingenias.exception.DamagedFormat;
import ingenias.exception.NotInitialised;
import ingenias.exception.UnknowFormat;
import ingenias.generator.browser.Browser;
import java.util.*;
import java.util.Map.Entry;

import ingenias.generator.datatemplate.*;
import ingenias.generator.interpreter.SplitHandler;
import ingenias.generator.interpreter.TemplateTree;
import ingenias.generator.util.Conversor;

import java.io.*;
import java.net.MalformedURLException;
import java.net.URL;

import ingenias.generator.browser.*;

/**
 *  This interface describe the activation method of tools
 *
 *@author     developer
 *@created    30 November 2003
 */

public abstract class BasicCodeGeneratorImp
extends BasicToolImp
implements BasicCodeGenerator {

	public boolean isError() {
		return error;
	}

	public void setError(boolean error) {
		this.error = error;
	}

	protected boolean error = false; // An error has been raised. It indicates the process should stop

	Vector templates = new Vector();

	private ProgressListener pl;

	/**
	 *  Creates a code generator that reuses that reuses an existing browser
	 * directly. This constructor is invoked when launching a code generator
	 * from whithin the IDE.
	 */
	public BasicCodeGeneratorImp(Browser browser) {
		super(browser);


	}

	/**
	 *  Creates a code generator that initialises from scratch a browser.
	 * This constructor is invoked when launching a stand alone version
	 */

	public BasicCodeGeneratorImp(String file) throws ingenias.exception.
	UnknowFormat,
	ingenias.exception.DamagedFormat,
	ingenias.exception.CannotLoad {
		super(file);   
		templates = new Vector();
	}

	public BasicCodeGeneratorImp(String file, String[] templateFileArray) throws UnknowFormat, DamagedFormat,
	CannotLoad {
		super(file);
		try {
			for (int k=0;k")+". The trace is 
" + Conversor.replaceInvalidChar(this.getTrace(e)).replace("\n","
")); } counter++; this.setProgress((int) (50+increment*counter)); } } } public final Vector runWithoutWriting() { Properties props=browser.getState().prop; Properties nprops=new Properties(); Vector handlers=new Vector(); for (Entry entry:props.entrySet()){ ingenias.editor.ProjectProperty oldProjProperty=(ProjectProperty) entry.getValue(); ingenias.editor.ProjectProperty newProjProperty=new ingenias.editor.ProjectProperty( oldProjProperty); if (getIds()!=null && getIds().prefs!=null) // executed within the gui newProjProperty.value=newProjProperty.value.replace("{workspace}", getIds().prefs.getWorkspacePath()); nprops.put(entry.getKey(), newProjProperty); } setProperties(nprops); /* for (Object key: nprops.keySet()){ System.err.println(((ProjectProperty)nprops.get(key.toString())).key+":"+ ((ProjectProperty)nprops.get(key.toString())).value); };*/ Sequences seq = this.generate(); if (templates.size() == 0) { ingenias.editor.Log.getInstance().logERROR( "No templates defined. Please check module " + this.getName() + " implementation. It should use the method addTemplate"); } if (this.isError()){ ingenias.editor.Log.getInstance().logERROR("Code generation stopped because of the error"); } else { Enumeration enumeration = this.templates.elements(); float increment=50f/this.templates.size(); int counter=0; while (enumeration.hasMoreElements()) { java.net.URL temp = (java.net.URL) enumeration.nextElement(); try { if (temp != null) { InputStream is = temp.openStream(); SplitHandler sh=ingenias.generator.interpreter.Codegen.applyArrobaWithoutWriting(seq.toString(), is); handlers.add(sh); } } catch (ingenias.exception.NotWellFormed nwf) { ingenias.editor.Log.getInstance().logERROR("Template " + temp + " is not well formed. Please run a XML parser on it"); } catch (Exception e) { ingenias.editor.Log.getInstance().logERROR("Error " + e.getClass().getName() + ": "+Conversor.replaceInvalidChar(e.getMessage()).replace("\n","
")+". The trace is
" + Conversor.replaceInvalidChar(this.getTrace(e)).replace("\n","
")); } counter++; this.setProgress((int) (50+increment*counter)); } } return handlers; } /** * Runs the code generator with the templates added * */ public final Hashtable editorrun() { Hashtable result=new Hashtable(); Sequences seq = this.generate(); if (templates.size() == 0) { ingenias.editor.Log.getInstance().logERROR( "No templates defined. Please check module " + this.getName() + " implementation. It should use the method addTemplate"); } Enumeration enumeration = this.templates.elements(); float increment=50f/this.templates.size(); int counter=0; while (enumeration.hasMoreElements()) { java.net.URL temp = (java.net.URL) enumeration.nextElement(); try { if (temp != null) { InputStream is = temp.openStream(); TemplateTree instancetags=ingenias.generator.interpreter.Codegen.applyArroba(seq.toString(), is); result.put(temp.toString(),instancetags); } } catch (ingenias.exception.NotWellFormed nwf) { ingenias.editor.Log.getInstance().logERROR("Template " + temp + " is not well formed. Please run a XML parser on it"); } catch (Exception e) { ingenias.editor.Log.getInstance().logERROR("Error " + e.getClass().getName() + ". The trace is \n" + this.getTrace(e)); } counter++; this.setProgress((int) (50+increment*counter)); } return result; } /** * Determines whether current diagrams contains the information this code * generator needs. When there are mistakes, the method uses the log * facilities to inform of errors. * *@return true in case there is all the information it needs, false i.o.c. */ /** * Travel the diagram structure to obtain a Sequences instance with all the * information needed to perform code generation * *@return Description of the Returned Value */ abstract protected Sequences generate(); public boolean verify() { error = false; if (this.isError() != true) { this.generate(); } return this.isError() != true; } public void fatalError(){ this.setError(true); new Exception("Fatal error triggered").printStackTrace(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy