summaryrefslogtreecommitdiff
path: root/src/piglet/piglet2spiglet/Main.java
blob: a98b7081af5e9df677caea5dffc749daceffe6ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package piglet.piglet2spiglet;


import java.io.InputStream;

import aux.CCPrinter;
import piglet.ParseException;
import piglet.PigletParser;
import piglet.TokenMgrError;
import piglet.syntaxtree.Node;
import piglet.visitor.GJDepthFirst;
import piglet.visitor.GenSpigletVisitor;
import piglet.visitor.ScanTempVisitor;


public class Main {
	public static CCPrinter execute(InputStream stream) {
		try {
			new PigletParser(stream);
			Node root = PigletParser.Goal();
    		/*
    		 * TODO: Implement your own Visitors and other classes.
    		 * 
    		 */
			ScanTempVisitor vt = new ScanTempVisitor();
			root.accept(vt);
			GenSpigletVisitor gen = new GenSpigletVisitor();
    		gen.nTemp = Math.max(vt.maxtmp, 20);
    		root.accept(gen, null);
    		return gen.prn;
    	}
    	catch(TokenMgrError e){
    		//Handle Lexical Errors
    		e.printStackTrace();
    	}
    	catch (ParseException e){
    		//Handle Grammar Errors
    		e.printStackTrace();
    	}
    	catch(Exception e){
    		e.printStackTrace();
    	}
		return null;   	
	}
	
    public static void main(String[] args) {
    	execute(System.in).printAll();
    }
}