package util.gdl.transforms.standalone; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.util.List; import util.gdl.factory.exceptions.GdlFormatException; import util.gdl.grammar.Gdl; import util.gdl.transforms.DeORer; import util.kif.KifReader; import util.symbol.factory.exceptions.SymbolFormatException; import validator.StaticValidator; import validator.exception.StaticValidatorException; /** * The standalone version of DeORer can be run as its own program. It * takes a .kif file as input and generates a new .kif file with the * modified output. The new filename is (original name)_DEORED.kif. * * The new file is not intended to be particularly legible; it is * intended mainly for use by other programs. * * @author Alex Landau * */ public class StandaloneDeORer { /** * @param args */ public static void main(String[] args) { if(args.length < 1 || !args[0].endsWith(".kif")) { System.out.println("Please enter the path of a .kif file as an argument."); return; } String filename = args[0]; List<Gdl> description; try { description = KifReader.read(filename); } catch (IOException e) { System.err.println("Problem reading the file " + filename + "."); e.printStackTrace(); return; } catch (SymbolFormatException e) { System.err.println("The file is not a GDL file, or it contains errors."); e.printStackTrace(); return; } catch (GdlFormatException e) { System.err.println("The file is not a GDL file, or it contains errors."); e.printStackTrace(); return; } try { StaticValidator.validateDescription(description); } catch (StaticValidatorException e) { System.err.println("GDL validation error: " + e.toString()); return; } List<Gdl> transformedDescription = DeORer.run(description); String newFilename = filename.substring(0, filename.lastIndexOf(".kif")) + "_DEORED.kif"; try { BufferedWriter out = new BufferedWriter(new FileWriter(new File(newFilename))); for(Gdl gdl : transformedDescription) { out.write(gdl.toString()); out.newLine(); } out.close(); } catch (IOException e) { System.err.println("There was an error writing the translated GDL file " + newFilename + "."); e.printStackTrace(); } } }