Skip to content

Commit 64ddf82

Browse files
committed
[DOXIA-614] Make Parser::parse(Reader,Sink,String) the default method for modules
Closes #35
1 parent 8bfb5be commit 64ddf82

File tree

9 files changed

+34
-29
lines changed

9 files changed

+34
-29
lines changed

doxia-core/src/main/java/org/apache/maven/doxia/parser/AbstractParser.java

+20-3
Original file line numberDiff line numberDiff line change
@@ -179,15 +179,32 @@ protected File getBasedir()
179179
public void parse( String string, Sink sink )
180180
throws ParseException
181181
{
182-
parse( new StringReader( string ), sink );
182+
this.parse( string, sink, null );
183+
}
184+
185+
/**
186+
* {@inheritDoc}
187+
*
188+
* Convenience method to parse an arbitrary string and emit events into the given sink.
189+
*
190+
* @param string a string that provides the source input
191+
* @param sink a sink that consumes the Doxia events
192+
* @param reference a string containing the reference to the source of the input string (e.g. filename)
193+
* @throws org.apache.maven.doxia.parser.ParseException if the string could not be parsed
194+
* @since 1.10
195+
*/
196+
public void parse( String string, Sink sink, String reference )
197+
throws ParseException
198+
{
199+
parse( new StringReader( string ), sink, reference );
183200
}
184201

185202
/** {@inheritDoc} */
186203
@Override
187-
public void parse( Reader source, Sink sink, String reference )
204+
public void parse( Reader source, Sink sink )
188205
throws ParseException
189206
{
190-
parse( source, sink );
207+
parse( source, sink, null );
191208
}
192209

193210
/**

doxia-core/src/main/java/org/apache/maven/doxia/parser/AbstractXmlParser.java

+1-13
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public abstract class AbstractXmlParser
100100
private boolean validate = false;
101101

102102
/** {@inheritDoc} */
103-
public void parse( Reader source, Sink sink )
103+
public void parse( Reader source, Sink sink, String reference )
104104
throws ParseException
105105
{
106106
init();
@@ -166,18 +166,6 @@ protected void initXmlParser( XmlPullParser parser )
166166
// nop
167167
}
168168

169-
/**
170-
* {@inheritDoc}
171-
*
172-
* Convenience method to parse an arbitrary string and emit any xml events into the given sink.
173-
*/
174-
@Override
175-
public void parse( String string, Sink sink )
176-
throws ParseException
177-
{
178-
super.parse( string, sink );
179-
}
180-
181169
/** {@inheritDoc} */
182170
@Override
183171
public final int getType()

doxia-core/src/main/java/org/apache/maven/doxia/parser/Xhtml5BaseParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ public class Xhtml5BaseParser
8181

8282
/** {@inheritDoc} */
8383
@Override
84-
public void parse( Reader source, Sink sink )
84+
public void parse( Reader source, Sink sink, String reference )
8585
throws ParseException
8686
{
8787
init();
8888

8989
try
9090
{
91-
super.parse( source, sink );
91+
super.parse( source, sink, reference );
9292
}
9393
finally
9494
{

doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ public class XhtmlBaseParser
8282

8383
/** {@inheritDoc} */
8484
@Override
85-
public void parse( Reader source, Sink sink )
85+
public void parse( Reader source, Sink sink, String reference )
8686
throws ParseException
8787
{
8888
init();
8989

9090
try
9191
{
92-
super.parse( source, sink );
92+
super.parse( source, sink, reference );
9393
}
9494
finally
9595
{

doxia-modules/doxia-module-fml/src/main/java/org/apache/maven/doxia/module/fml/FmlParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class FmlParser
8989
private Map<String, Object> macroParameters = new HashMap<>();
9090

9191
/** {@inheritDoc} */
92-
public void parse( Reader source, Sink sink )
92+
public void parse( Reader source, Sink sink, String reference )
9393
throws ParseException
9494
{
9595
this.faqs = null;
@@ -118,7 +118,7 @@ public void parse( Reader source, Sink sink )
118118
this.faqs = new Faqs();
119119

120120
// this populates faqs
121-
super.parse( tmp, sink );
121+
super.parse( tmp, sink, reference );
122122

123123
writeFaqs( sink );
124124
}

doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public int getType()
163163

164164
/** {@inheritDoc} */
165165
@Override
166-
public void parse( Reader source, Sink sink )
166+
public void parse( Reader source, Sink sink, String reference )
167167
throws ParseException
168168
{
169169
try

doxia-modules/doxia-module-xdoc/src/main/java/org/apache/maven/doxia/module/xdoc/XdocParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public class XdocParser
8585
private boolean hasTitle;
8686

8787
/** {@inheritDoc} */
88-
public void parse( Reader source, Sink sink )
88+
public void parse( Reader source, Sink sink, String reference )
8989
throws ParseException
9090
{
9191
this.sourceContent = null;
@@ -110,7 +110,7 @@ public void parse( Reader source, Sink sink )
110110

111111
try
112112
{
113-
super.parse( new StringReader( sourceContent ), sink );
113+
super.parse( new StringReader( sourceContent ), sink, reference );
114114
}
115115
finally
116116
{

doxia-modules/doxia-module-xhtml/src/main/java/org/apache/maven/doxia/module/xhtml/XhtmlParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ protected void init()
333333
}
334334

335335
/** {@inheritDoc} */
336-
public void parse( Reader source, Sink sink )
336+
public void parse( Reader source, Sink sink, String reference )
337337
throws ParseException
338338
{
339339
this.sourceContent = null;
@@ -355,7 +355,7 @@ public void parse( Reader source, Sink sink )
355355

356356
try
357357
{
358-
super.parse( new StringReader( sourceContent ), sink );
358+
super.parse( new StringReader( sourceContent ), sink, reference );
359359
}
360360
finally
361361
{

doxia-modules/doxia-module-xhtml5/src/main/java/org/apache/maven/doxia/module/xhtml5/Xhtml5Parser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ protected void init()
334334
}
335335

336336
/** {@inheritDoc} */
337-
public void parse( Reader source, Sink sink )
337+
public void parse( Reader source, Sink sink, String reference )
338338
throws ParseException
339339
{
340340
this.sourceContent = null;
@@ -356,7 +356,7 @@ public void parse( Reader source, Sink sink )
356356

357357
try
358358
{
359-
super.parse( new StringReader( sourceContent ), sink );
359+
super.parse( new StringReader( sourceContent ), sink, reference );
360360
}
361361
finally
362362
{

0 commit comments

Comments
 (0)