1 | |
package org.apache.maven.doxia.plugin; |
2 | |
|
3 | |
import java.util.ArrayList; |
4 | |
import java.util.Iterator; |
5 | |
import java.util.List; |
6 | |
|
7 | |
import org.apache.maven.plugin.AbstractMojo; |
8 | |
import org.apache.maven.plugin.MojoExecutionException; |
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
@SuppressWarnings( "all" ) |
20 | 0 | public class HelpMojo |
21 | |
extends AbstractMojo |
22 | |
{ |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
private boolean detail; |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
private java.lang.String goal; |
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
private int lineLength; |
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
private int indentSize; |
50 | |
|
51 | |
|
52 | |
|
53 | |
public void execute() |
54 | |
throws MojoExecutionException |
55 | |
{ |
56 | 0 | if ( lineLength <= 0 ) |
57 | |
{ |
58 | 0 | getLog().warn( "The parameter 'lineLength' should be positive, using '80' as default." ); |
59 | 0 | lineLength = 80; |
60 | |
} |
61 | 0 | if ( indentSize <= 0 ) |
62 | |
{ |
63 | 0 | getLog().warn( "The parameter 'indentSize' should be positive, using '2' as default." ); |
64 | 0 | indentSize = 2; |
65 | |
} |
66 | |
|
67 | 0 | StringBuffer sb = new StringBuffer(); |
68 | |
|
69 | 0 | append( sb, "org.apache.maven.doxia:doxia-book-maven-plugin:1.3-SNAPSHOT", 0 ); |
70 | 0 | append( sb, "", 0 ); |
71 | |
|
72 | 0 | append( sb, "Doxia Book Maven Plugin", 0 ); |
73 | 0 | append( sb, "A Maven plugin for Doxia books.", 1 ); |
74 | 0 | append( sb, "", 0 ); |
75 | |
|
76 | 0 | if ( goal == null || goal.length() <= 0 ) |
77 | |
{ |
78 | 0 | append( sb, "This plugin has 2 goals:", 0 ); |
79 | 0 | append( sb, "", 0 ); |
80 | |
} |
81 | |
|
82 | 0 | if ( goal == null || goal.length() <= 0 || "help".equals( goal ) ) |
83 | |
{ |
84 | 0 | append( sb, "doxia-book:help", 0 ); |
85 | 0 | append( sb, "Display help information on doxia-book-maven-plugin.\nCall\n\u00a0\u00a0mvn\u00a0doxia-book:help\u00a0-Ddetail=true\u00a0-Dgoal=<goal-name>\nto display parameter details.", 1 ); |
86 | 0 | append( sb, "", 0 ); |
87 | 0 | if ( detail ) |
88 | |
{ |
89 | 0 | append( sb, "Available parameters:", 1 ); |
90 | 0 | append( sb, "", 0 ); |
91 | |
|
92 | 0 | append( sb, "detail (Default: false)", 2 ); |
93 | 0 | append( sb, "If true, display all settable properties for each goal.", 3 ); |
94 | 0 | append( sb, "Expression: ${detail}", 3 ); |
95 | 0 | append( sb, "", 0 ); |
96 | |
|
97 | 0 | append( sb, "goal", 2 ); |
98 | 0 | append( sb, "The name of the goal for which to show help. If unspecified, all goals will be displayed.", 3 ); |
99 | 0 | append( sb, "Expression: ${goal}", 3 ); |
100 | 0 | append( sb, "", 0 ); |
101 | |
|
102 | 0 | append( sb, "indentSize (Default: 2)", 2 ); |
103 | 0 | append( sb, "The number of spaces per indentation level, should be positive.", 3 ); |
104 | 0 | append( sb, "Expression: ${indentSize}", 3 ); |
105 | 0 | append( sb, "", 0 ); |
106 | |
|
107 | 0 | append( sb, "lineLength (Default: 80)", 2 ); |
108 | 0 | append( sb, "The maximum length of a display line, should be positive.", 3 ); |
109 | 0 | append( sb, "Expression: ${lineLength}", 3 ); |
110 | 0 | append( sb, "", 0 ); |
111 | |
} |
112 | |
} |
113 | |
|
114 | 0 | if ( goal == null || goal.length() <= 0 || "render-books".equals( goal ) ) |
115 | |
{ |
116 | 0 | append( sb, "doxia-book:render-books", 0 ); |
117 | 0 | append( sb, "A Mojo to create books in different output formats.", 1 ); |
118 | 0 | append( sb, "", 0 ); |
119 | 0 | if ( detail ) |
120 | |
{ |
121 | 0 | append( sb, "Available parameters:", 1 ); |
122 | 0 | append( sb, "", 0 ); |
123 | |
|
124 | 0 | append( sb, "basedir (Default: ${basedir})", 2 ); |
125 | 0 | append( sb, "Base directory of the project.", 3 ); |
126 | 0 | append( sb, "", 0 ); |
127 | |
|
128 | 0 | append( sb, "books", 2 ); |
129 | 0 | append( sb, "A list of books.", 3 ); |
130 | 0 | append( sb, "Required: Yes", 3 ); |
131 | 0 | append( sb, "", 0 ); |
132 | |
|
133 | 0 | append( sb, "generatedDocs (Default: ${project.build.directory}/generated-site)", 2 ); |
134 | 0 | append( sb, "Directory containing the generated project docs.", 3 ); |
135 | 0 | append( sb, "", 0 ); |
136 | |
|
137 | 0 | append( sb, "inputEncoding (Default: ${project.build.sourceEncoding})", 2 ); |
138 | 0 | append( sb, "Specifies the input encoding.", 3 ); |
139 | 0 | append( sb, "Expression: ${encoding}", 3 ); |
140 | 0 | append( sb, "", 0 ); |
141 | |
|
142 | 0 | append( sb, "locales (Default: ${locales})", 2 ); |
143 | 0 | append( sb, "A comma separated list of locales supported by Maven. The first valid token will be the default Locale for this instance of the Java Virtual Machine.", 3 ); |
144 | 0 | append( sb, "", 0 ); |
145 | |
|
146 | 0 | append( sb, "outputEncoding (Default: ${project.reporting.outputEncoding})", 2 ); |
147 | 0 | append( sb, "Specifies the output encoding.", 3 ); |
148 | 0 | append( sb, "Expression: ${outputEncoding}", 3 ); |
149 | 0 | append( sb, "", 0 ); |
150 | |
} |
151 | |
} |
152 | |
|
153 | 0 | if ( getLog().isInfoEnabled() ) |
154 | |
{ |
155 | 0 | getLog().info( sb.toString() ); |
156 | |
} |
157 | 0 | } |
158 | |
|
159 | |
|
160 | |
|
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
private static String repeat( String str, int repeat ) |
169 | |
{ |
170 | 0 | StringBuffer buffer = new StringBuffer( repeat * str.length() ); |
171 | |
|
172 | 0 | for ( int i = 0; i < repeat; i++ ) |
173 | |
{ |
174 | 0 | buffer.append( str ); |
175 | |
} |
176 | |
|
177 | 0 | return buffer.toString(); |
178 | |
} |
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
|
184 | |
|
185 | |
|
186 | |
|
187 | |
|
188 | |
private void append( StringBuffer sb, String description, int indent ) |
189 | |
{ |
190 | 0 | for ( Iterator it = toLines( description, indent, indentSize, lineLength ).iterator(); it.hasNext(); ) |
191 | |
{ |
192 | 0 | sb.append( it.next().toString() ).append( '\n' ); |
193 | |
} |
194 | 0 | } |
195 | |
|
196 | |
|
197 | |
|
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
|
203 | |
|
204 | |
|
205 | |
|
206 | |
private static List toLines( String text, int indent, int indentSize, int lineLength ) |
207 | |
{ |
208 | 0 | List<String> lines = new ArrayList<String>(); |
209 | |
|
210 | 0 | String ind = repeat( "\t", indent ); |
211 | 0 | String[] plainLines = text.split( "(\r\n)|(\r)|(\n)" ); |
212 | 0 | for ( int i = 0; i < plainLines.length; i++ ) |
213 | |
{ |
214 | 0 | toLines( lines, ind + plainLines[i], indentSize, lineLength ); |
215 | |
} |
216 | |
|
217 | 0 | return lines; |
218 | |
} |
219 | |
|
220 | |
|
221 | |
|
222 | |
|
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | |
|
228 | |
private static void toLines( List<String> lines, String line, int indentSize, int lineLength ) |
229 | |
{ |
230 | 0 | int lineIndent = getIndentLevel( line ); |
231 | 0 | StringBuffer buf = new StringBuffer( 256 ); |
232 | 0 | String[] tokens = line.split( " +" ); |
233 | 0 | for ( int i = 0; i < tokens.length; i++ ) |
234 | |
{ |
235 | 0 | String token = tokens[i]; |
236 | 0 | if ( i > 0 ) |
237 | |
{ |
238 | 0 | if ( buf.length() + token.length() >= lineLength ) |
239 | |
{ |
240 | 0 | lines.add( buf.toString() ); |
241 | 0 | buf.setLength( 0 ); |
242 | 0 | buf.append( repeat( " ", lineIndent * indentSize ) ); |
243 | |
} |
244 | |
else |
245 | |
{ |
246 | 0 | buf.append( ' ' ); |
247 | |
} |
248 | |
} |
249 | 0 | for ( int j = 0; j < token.length(); j++ ) |
250 | |
{ |
251 | 0 | char c = token.charAt( j ); |
252 | 0 | if ( c == '\t' ) |
253 | |
{ |
254 | 0 | buf.append( repeat( " ", indentSize - buf.length() % indentSize ) ); |
255 | |
} |
256 | 0 | else if ( c == '\u00A0' ) |
257 | |
{ |
258 | 0 | buf.append( ' ' ); |
259 | |
} |
260 | |
else |
261 | |
{ |
262 | 0 | buf.append( c ); |
263 | |
} |
264 | |
} |
265 | |
} |
266 | 0 | lines.add( buf.toString() ); |
267 | 0 | } |
268 | |
|
269 | |
|
270 | |
|
271 | |
|
272 | |
|
273 | |
|
274 | |
|
275 | |
private static int getIndentLevel( String line ) |
276 | |
{ |
277 | 0 | int level = 0; |
278 | 0 | for ( int i = 0; i < line.length() && line.charAt( i ) == '\t'; i++ ) |
279 | |
{ |
280 | 0 | level++; |
281 | |
} |
282 | 0 | for ( int i = level + 1; i <= level + 4 && i < line.length(); i++ ) |
283 | |
{ |
284 | 0 | if ( line.charAt( i ) == '\t' ) |
285 | |
{ |
286 | 0 | level++; |
287 | 0 | break; |
288 | |
} |
289 | |
} |
290 | 0 | return level; |
291 | |
} |
292 | |
} |