Skip to content

Commit 24f0066

Browse files
kwinhboutemy
authored andcommitted
[DOXIA-662] Non unique IDs generated by IndexingSink
This closes #41
1 parent 5192294 commit 24f0066

File tree

2 files changed

+70
-2
lines changed

2 files changed

+70
-2
lines changed

doxia-core/src/main/java/org/apache/maven/doxia/index/IndexingSink.java

+34-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
* under the License.
2020
*/
2121

22+
import java.util.HashMap;
23+
import java.util.Map;
2224
import java.util.Stack;
25+
import java.util.concurrent.atomic.AtomicInteger;
2326

2427
import org.apache.maven.doxia.sink.impl.SinkAdapter;
2528
import org.apache.maven.doxia.util.HtmlTools;
@@ -69,6 +72,12 @@ public class IndexingSink
6972
/** The stack. */
7073
private final Stack<IndexEntry> stack;
7174

75+
/** A map containing all used ids of index entries as key and how often they are used as value
76+
* (0-based, i.e. 0 means used 1 time). {@link AtomicInteger} is only used here as it implements
77+
* a mutable integer (not for its atomicity).
78+
*/
79+
private final Map<String, AtomicInteger> usedIds;
80+
7281
/**
7382
* Default constructor.
7483
*
@@ -78,7 +87,8 @@ public IndexingSink( IndexEntry sectionEntry )
7887
{
7988
stack = new Stack<>();
8089
stack.push( sectionEntry );
81-
90+
usedIds = new HashMap<>();
91+
usedIds.put( sectionEntry.getId(), new AtomicInteger() );
8292
init();
8393
}
8494

@@ -311,7 +321,7 @@ public void text( String text )
311321
title = title.replaceAll( "[\\r\\n]+", "" );
312322
entry.setTitle( title );
313323

314-
entry.setId( HtmlTools.encodeId( title ) );
324+
entry.setId( getUniqueId ( HtmlTools.encodeId( title ) ) );
315325

316326
break;
317327
// Dunno how to handle these yet
@@ -323,6 +333,28 @@ public void text( String text )
323333
}
324334
}
325335

336+
/**
337+
* Converts the given id into a unique one by potentially suffixing it with an index value.
338+
*
339+
* @param id
340+
* @return the unique id
341+
*/
342+
String getUniqueId( String id )
343+
{
344+
final String uniqueId;
345+
346+
if ( usedIds.containsKey( id ) )
347+
{
348+
uniqueId = id + "_" + usedIds.get( id ).incrementAndGet();
349+
}
350+
else
351+
{
352+
usedIds.put( id, new AtomicInteger() );
353+
uniqueId = id;
354+
}
355+
return uniqueId;
356+
}
357+
326358
/**
327359
* Creates and pushes a new IndexEntry onto the top of this stack.
328360
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package org.apache.maven.doxia.index;
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.junit.Test;
23+
24+
import static org.junit.Assert.assertEquals;
25+
26+
public class IndexingSinkTest
27+
{
28+
@Test
29+
public void testGetUniqueId()
30+
{
31+
IndexingSink sink = new IndexingSink( new IndexEntry( "root" ) );
32+
assertEquals( "root_1", sink.getUniqueId( "root" ) );
33+
assertEquals( "root_2", sink.getUniqueId( "root" ) );
34+
assertEquals( "newid", sink.getUniqueId( "newid" ) );
35+
}
36+
}

0 commit comments

Comments
 (0)