19
19
* under the License.
20
20
*/
21
21
22
+ import java .util .HashMap ;
23
+ import java .util .Map ;
22
24
import java .util .Stack ;
25
+ import java .util .concurrent .atomic .AtomicInteger ;
23
26
24
27
import org .apache .maven .doxia .sink .impl .SinkAdapter ;
25
28
import org .apache .maven .doxia .util .HtmlTools ;
@@ -69,6 +72,12 @@ public class IndexingSink
69
72
/** The stack. */
70
73
private final Stack <IndexEntry > stack ;
71
74
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
+
72
81
/**
73
82
* Default constructor.
74
83
*
@@ -78,7 +87,8 @@ public IndexingSink( IndexEntry sectionEntry )
78
87
{
79
88
stack = new Stack <>();
80
89
stack .push ( sectionEntry );
81
-
90
+ usedIds = new HashMap <>();
91
+ usedIds .put ( sectionEntry .getId (), new AtomicInteger () );
82
92
init ();
83
93
}
84
94
@@ -311,7 +321,7 @@ public void text( String text )
311
321
title = title .replaceAll ( "[\\ r\\ n]+" , "" );
312
322
entry .setTitle ( title );
313
323
314
- entry .setId ( HtmlTools .encodeId ( title ) );
324
+ entry .setId ( getUniqueId ( HtmlTools .encodeId ( title ) ) );
315
325
316
326
break ;
317
327
// Dunno how to handle these yet
@@ -323,6 +333,28 @@ public void text( String text )
323
333
}
324
334
}
325
335
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
+
326
358
/**
327
359
* Creates and pushes a new IndexEntry onto the top of this stack.
328
360
*/
0 commit comments