Skip to content

Commit 497a438

Browse files
abelsromeroslachiewicz
authored andcommitted
[DOXIA-614] Support passing source reference to Doxia instance
Closes #35
1 parent cb017d8 commit 497a438

File tree

3 files changed

+77
-1
lines changed

3 files changed

+77
-1
lines changed

doxia-core/src/main/java/org/apache/maven/doxia/DefaultDoxia.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,20 @@ public class DefaultDoxia
5656
/** {@inheritDoc} */
5757
public void parse( Reader source, String parserId, Sink sink )
5858
throws ParserNotFoundException, ParseException
59+
{
60+
this.parse( source, parserId, sink, null );
61+
}
62+
63+
/** {@inheritDoc} */
64+
@Override
65+
public void parse( Reader source, String parserId, Sink sink, String reference )
66+
throws ParserNotFoundException, ParseException
5967
{
6068
Parser parser = parserManager.getParser( parserId );
6169

6270
parser.enableLogging( new PlexusLoggerWrapper( getLogger() ) );
6371

64-
parser.parse( source, sink );
72+
parser.parse( source, sink, reference );
6573
}
6674

6775
/** {@inheritDoc} */

doxia-core/src/main/java/org/apache/maven/doxia/Doxia.java

+14
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,20 @@ public interface Doxia
5050
void parse( Reader source, String parserId, Sink sink )
5151
throws ParserNotFoundException, ParseException;
5252

53+
/**
54+
* Parses the given source model using a parser with given id,
55+
* and emits Doxia events into the given sink.
56+
*
57+
* @param source not null reader that provides the source document
58+
* @param parserId identifier for the parser to use
59+
* @param sink a sink that consumes the Doxia events
60+
* @param reference string containing the reference to the source (e.g. filename)
61+
* @throws ParserNotFoundException if no parser could be found for the given id
62+
* @throws ParseException if the model could not be parsed
63+
*/
64+
void parse( Reader source, String parserId, Sink sink, String reference )
65+
throws ParserNotFoundException, ParseException;
66+
5367
/**
5468
* Return a parser for the given <code>parserId</code>.
5569
*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
package org.apache.maven.doxia;
2+
3+
/*
4+
* Licensed to the Apache Software Foundation (ASF) under one
5+
* or more contributor license agreements. See the NOTICE file
6+
* distributed with this work for additional information
7+
* regarding copyright ownership. The ASF licenses this file
8+
* to you under the Apache License, Version 2.0 (the
9+
* "License"); you may not use this file except in compliance
10+
* with the License. You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing,
15+
* software distributed under the License is distributed on an
16+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
* KIND, either express or implied. See the License for the
18+
* specific language governing permissions and limitations
19+
* under the License.
20+
*/
21+
22+
import org.apache.maven.doxia.parser.manager.ParserNotFoundException;
23+
import org.codehaus.plexus.PlexusTestCase;
24+
import org.junit.Test;
25+
26+
public class DefaultDoxiaTest extends PlexusTestCase
27+
{
28+
29+
@Test
30+
public void testCreatesDefaultDoxia()
31+
{
32+
final DefaultDoxia defaultDoxia = new DefaultDoxia();
33+
34+
assertNotNull( defaultDoxia );
35+
}
36+
37+
@Test
38+
public void testFailsWhenParserIdDoesNotExist() throws Exception
39+
{
40+
final String parserId = "a-parser";
41+
final Doxia doxia = lookup( Doxia.class );
42+
43+
try
44+
{
45+
doxia.getParser( parserId );
46+
fail( "Call should fail with ParserNotFoundException" );
47+
}
48+
catch ( ParserNotFoundException e )
49+
{
50+
assertEquals( "Cannot find parser with id = a-parser", e.getMessage() );
51+
}
52+
}
53+
54+
}

0 commit comments

Comments
 (0)