1 package com.dhptech.maven.stripbom;
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 public class HelpMojo
20 extends AbstractMojo
21 {
22
23
24
25
26
27 private boolean detail;
28
29
30
31
32
33
34 private java.lang.String goal;
35
36
37
38
39
40
41 private int lineLength;
42
43
44
45
46
47
48 private int indentSize;
49
50
51
52 public void execute()
53 throws MojoExecutionException
54 {
55 if ( lineLength <= 0 )
56 {
57 getLog().warn( "The parameter 'lineLength' should be positive, using '80' as default." );
58 lineLength = 80;
59 }
60 if ( indentSize <= 0 )
61 {
62 getLog().warn( "The parameter 'indentSize' should be positive, using '2' as default." );
63 indentSize = 2;
64 }
65
66 StringBuffer sb = new StringBuffer();
67
68 append( sb, "org.kuali.maven.plugins:strip-bom-maven-plugin:1.0.0-SNAPSHOT", 0 );
69 append( sb, "", 0 );
70
71 append( sb, "strip-bom-plugin", 0 );
72 append( sb, "This plugin will strip BOMs from source files or files in your build directory", 1 );
73 append( sb, "", 0 );
74
75 if ( goal == null || goal.length() <= 0 )
76 {
77 append( sb, "This plugin has 2 goals:", 0 );
78 append( sb, "", 0 );
79 }
80
81 if ( goal == null || goal.length() <= 0 || "help".equals( goal ) )
82 {
83 append( sb, "strip-bom:help", 0 );
84 append( sb, "Display help information on strip-bom-maven-plugin.\nCall\n\u00a0\u00a0mvn\u00a0strip-bom:help\u00a0-Ddetail=true\u00a0-Dgoal=<goal-name>\nto display parameter details.", 1 );
85 append( sb, "", 0 );
86 if ( detail )
87 {
88 append( sb, "Available parameters:", 1 );
89 append( sb, "", 0 );
90
91 append( sb, "detail (Default: false)", 2 );
92 append( sb, "If true, display all settable properties for each goal.", 3 );
93 append( sb, "Expression: ${detail}", 3 );
94 append( sb, "", 0 );
95
96 append( sb, "goal", 2 );
97 append( sb, "The name of the goal for which to show help. If unspecified, all goals will be displayed.", 3 );
98 append( sb, "Expression: ${goal}", 3 );
99 append( sb, "", 0 );
100
101 append( sb, "indentSize (Default: 2)", 2 );
102 append( sb, "The number of spaces per indentation level, should be positive.", 3 );
103 append( sb, "Expression: ${indentSize}", 3 );
104 append( sb, "", 0 );
105
106 append( sb, "lineLength (Default: 80)", 2 );
107 append( sb, "The maximum length of a display line, should be positive.", 3 );
108 append( sb, "Expression: ${lineLength}", 3 );
109 append( sb, "", 0 );
110 }
111 }
112
113 if ( goal == null || goal.length() <= 0 || "strip-bom".equals( goal ) )
114 {
115 append( sb, "strip-bom:strip-bom", 0 );
116 append( sb, "Goal to strip BOMs from UTF-8 text files.", 1 );
117 append( sb, "", 0 );
118 if ( detail )
119 {
120 append( sb, "Available parameters:", 1 );
121 append( sb, "", 0 );
122
123 append( sb, "failBuild (Default: false)", 2 );
124 append( sb, "Set to true if you want the build to fail when BOMs are found, really only useful if warnOnly = true.", 3 );
125 append( sb, "Expression: ${strip-bom.failBuild}", 3 );
126 append( sb, "", 0 );
127
128 append( sb, "file", 2 );
129 append( sb, "Locations of a single file to strip the BOM from.", 3 );
130 append( sb, "Expression: ${file}", 3 );
131 append( sb, "", 0 );
132
133 append( sb, "files", 2 );
134 append( sb, "Locations of the files to strip BOMs.", 3 );
135 append( sb, "", 0 );
136
137 append( sb, "warnOnly (Default: false)", 2 );
138 append( sb, "Set to true if you only want StripBOM to issue a warning message when a file contains a BOM.", 3 );
139 append( sb, "Expression: ${strip-bom.warnOnly}", 3 );
140 append( sb, "", 0 );
141 }
142 }
143
144 if ( getLog().isInfoEnabled() )
145 {
146 getLog().info( sb.toString() );
147 }
148 }
149
150
151
152
153
154
155
156
157
158
159 private static String repeat( String str, int repeat )
160 {
161 StringBuffer buffer = new StringBuffer( repeat * str.length() );
162
163 for ( int i = 0; i < repeat; i++ )
164 {
165 buffer.append( str );
166 }
167
168 return buffer.toString();
169 }
170
171
172
173
174
175
176
177
178
179 private void append( StringBuffer sb, String description, int indent )
180 {
181 for ( Iterator it = toLines( description, indent, indentSize, lineLength ).iterator(); it.hasNext(); )
182 {
183 sb.append( it.next().toString() ).append( '\n' );
184 }
185 }
186
187
188
189
190
191
192
193
194
195
196
197 private static List toLines( String text, int indent, int indentSize, int lineLength )
198 {
199 List lines = new ArrayList();
200
201 String ind = repeat( "\t", indent );
202 String[] plainLines = text.split( "(\r\n)|(\r)|(\n)" );
203 for ( int i = 0; i < plainLines.length; i++ )
204 {
205 toLines( lines, ind + plainLines[i], indentSize, lineLength );
206 }
207
208 return lines;
209 }
210
211
212
213
214
215
216
217
218
219 private static void toLines( List lines, String line, int indentSize, int lineLength )
220 {
221 int lineIndent = getIndentLevel( line );
222 StringBuffer buf = new StringBuffer( 256 );
223 String[] tokens = line.split( " +" );
224 for ( int i = 0; i < tokens.length; i++ )
225 {
226 String token = tokens[i];
227 if ( i > 0 )
228 {
229 if ( buf.length() + token.length() >= lineLength )
230 {
231 lines.add( buf.toString() );
232 buf.setLength( 0 );
233 buf.append( repeat( " ", lineIndent * indentSize ) );
234 }
235 else
236 {
237 buf.append( ' ' );
238 }
239 }
240 for ( int j = 0; j < token.length(); j++ )
241 {
242 char c = token.charAt( j );
243 if ( c == '\t' )
244 {
245 buf.append( repeat( " ", indentSize - buf.length() % indentSize ) );
246 }
247 else if ( c == '\u00A0' )
248 {
249 buf.append( ' ' );
250 }
251 else
252 {
253 buf.append( c );
254 }
255 }
256 }
257 lines.add( buf.toString() );
258 }
259
260
261
262
263
264
265
266 private static int getIndentLevel( String line )
267 {
268 int level = 0;
269 for ( int i = 0; i < line.length() && line.charAt( i ) == '\t'; i++ )
270 {
271 level++;
272 }
273 for ( int i = level + 1; i <= level + 4 && i < line.length(); i++ )
274 {
275 if ( line.charAt( i ) == '\t' )
276 {
277 level++;
278 break;
279 }
280 }
281 return level;
282 }
283 }