image bugfixx - mir now depends on jai imagio
[mir.git] / source / mir / generator / TALGenerator.java
1 /*\r
2  * Copyright (C) 2001, 2002 The Mir-coders group\r
3  *\r
4  * This file is part of Mir.\r
5  *\r
6  * Mir is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 2 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Mir is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with Mir; if not, write to the Free Software\r
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19  *\r
20  * In addition, as a special exception, The Mir-coders gives permission to link\r
21  * the code of this program with  any library licensed under the Apache Software License,\r
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library\r
23  * (or with modified versions of the above that use the same license as the above),\r
24  * and distribute linked combinations including the two.  You must obey the\r
25  * GNU General Public License in all respects for all of the code used other than\r
26  * the above mentioned libraries.  If you modify this file, you may extend this\r
27  * exception to your version of the file, but you are not obligated to do so.\r
28  * If you do not wish to do so, delete this exception statement from your version.\r
29  */\r
30 package mir.generator;\r
31 \r
32 import java.io.PrintWriter;\r
33 import java.util.Map;\r
34 \r
35 import mir.generator.tal.MirExpressionParser;\r
36 import mir.generator.tal.TALTemplate;\r
37 import mir.generator.tal.TALTemplateEngine;\r
38 import mir.log.LoggerWrapper;\r
39 \r
40 public class TALGenerator implements Generator {\r
41   private String templateIdentifier;\r
42   private TALGeneratorLibrary library;\r
43   private static LoggerWrapper logger = new LoggerWrapper("Generator.velocity");\r
44 \r
45   public TALGenerator(String aTemplate, TALGeneratorLibrary aLibrary) {\r
46     templateIdentifier = aTemplate;\r
47     library = aLibrary;\r
48   }\r
49 \r
50   public void generate(Object anOutputWriter, Map aValues, LoggerWrapper aLogger) throws GeneratorExc, GeneratorFailure {\r
51     TALTemplate template;\r
52 \r
53     try {\r
54       template = library.engine.loadTemplate(templateIdentifier);\r
55       if (template == null) {\r
56         throw new GeneratorExc("TALGeneratorLibrary: Can't find template " + templateIdentifier);\r
57       }\r
58       template.processTemplate(aValues, (PrintWriter) anOutputWriter);\r
59     }\r
60     catch (Throwable t) {\r
61       throw new GeneratorFailure(t);\r
62     }\r
63   }\r
64 \r
65   public static class TALGeneratorLibrary implements GeneratorLibrary {\r
66     private TALTemplateEngine engine;\r
67 \r
68     public TALGeneratorLibrary(String aTemplateRoot) throws GeneratorExc, GeneratorFailure {\r
69       engine = new TALTemplateEngine(new MirExpressionParser(), aTemplateRoot);\r
70     }\r
71 \r
72     public Generator makeGenerator(String anIdentifier) throws GeneratorExc, GeneratorFailure {\r
73       return new TALGenerator(anIdentifier, this);\r
74     }\r
75   }\r
76 \r
77   public static class TALGeneratorLibraryFactory implements GeneratorLibraryFactory {\r
78     private String basePath;\r
79 \r
80     public TALGeneratorLibraryFactory(String aBasePath) {\r
81       basePath = aBasePath;\r
82     }\r
83 \r
84     public GeneratorLibrary makeLibrary(String anInitializationString) throws GeneratorExc, GeneratorFailure {\r
85       return new TALGeneratorLibrary(basePath+anInitializationString);\r
86     };\r
87   }\r
88 }\r