1 package org.apache.maven.plugin.checkstyle.rss;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import org.apache.maven.plugin.MojoExecutionException;
23 import org.apache.maven.plugin.logging.Log;
24 import org.apache.maven.plugin.logging.SystemStreamLog;
25 import org.apache.velocity.context.Context;
26 import org.apache.velocity.exception.ResourceNotFoundException;
27 import org.apache.velocity.exception.VelocityException;
28 import org.codehaus.plexus.velocity.VelocityComponent;
29
30 import java.io.File;
31 import java.io.FileWriter;
32 import java.io.IOException;
33 import java.io.Writer;
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55 public class VelocityTemplate
56 {
57 private String templateDirectory;
58
59 private Log log;
60
61 private VelocityComponent velocity;
62
63 public VelocityTemplate( VelocityComponent velocityComponent, String templateBaseDirectory )
64 {
65 this.velocity = velocityComponent;
66 this.templateDirectory = templateBaseDirectory;
67 }
68
69 public String getTemplateDirectory()
70 {
71 return templateDirectory;
72 }
73
74 public VelocityComponent getVelocity()
75 {
76 return velocity;
77 }
78
79
80
81
82
83
84
85
86
87
88
89 public void generate( String outputFilename, String template, Context context )
90 throws VelocityException, MojoExecutionException, IOException
91 {
92 Writer writer = null;
93
94 try
95 {
96 File f = new File( outputFilename );
97
98 if ( !f.getParentFile().exists() )
99 {
100 f.getParentFile().mkdirs();
101 }
102
103 writer = new FileWriter( f );
104
105 getVelocity().getEngine().mergeTemplate( templateDirectory + "/" + template, context, writer );
106 }
107 catch ( ResourceNotFoundException e )
108 {
109 throw new ResourceNotFoundException( "Template not found: " + templateDirectory + "/" + template, e );
110 }
111 catch ( VelocityException e )
112 {
113 throw e;
114 }
115 catch ( IOException e )
116 {
117 throw e;
118 }
119 catch ( Exception e )
120 {
121 throw new MojoExecutionException( e.getMessage(), e );
122 }
123 finally
124 {
125 if ( writer != null )
126 {
127 writer.flush();
128 writer.close();
129
130 getLog().debug( "File " + outputFilename + " created..." );
131 }
132 }
133 }
134
135 public void setTemplateDirectory( String templateDirectory )
136 {
137 this.templateDirectory = templateDirectory;
138 }
139
140 public void setVelocity( VelocityComponent velocity )
141 {
142 this.velocity = velocity;
143 }
144
145 public Log getLog()
146 {
147 if ( this.log == null )
148 {
149 this.log = new SystemStreamLog();
150 }
151 return log;
152 }
153
154 public void setLog( Log log )
155 {
156 this.log = log;
157 }
158
159 }