NormalizedFileNames.java

  1. /*******************************************************************************
  2.  * Copyright (c) 2009, 2025 Mountainminds GmbH & Co. KG and Contributors
  3.  * This program and the accompanying materials are made available under
  4.  * the terms of the Eclipse Public License 2.0 which is available at
  5.  * http://www.eclipse.org/legal/epl-2.0
  6.  *
  7.  * SPDX-License-Identifier: EPL-2.0
  8.  *
  9.  * Contributors:
  10.  *    Marc R. Hoffmann - initial API and implementation
  11.  *
  12.  *******************************************************************************/
  13. package org.jacoco.report.internal;

  14. import java.util.BitSet;
  15. import java.util.HashMap;
  16. import java.util.HashSet;
  17. import java.util.Locale;
  18. import java.util.Map;
  19. import java.util.Set;

  20. /**
  21.  * Internal utility to create normalized file names from string ids. The file
  22.  * names generated by an instance of this class have the following properties:
  23.  *
  24.  * <ul>
  25.  * <li>The same input id is mapped to the same file name.</li>
  26.  * <li>Different ids are mapped to different file names.</li>
  27.  * <li>For safe characters the file name corresponds to the input id, other
  28.  * characters are replaced by <code>_</code> (underscore).</li>
  29.  * <li>File names are case aware, i.e. the same file name but with different
  30.  * upper/lower case characters is not possible.</li>
  31.  * <li>If unique filenames can't directly created from the ids, additional
  32.  * prefixes are prepended.</li>
  33.  * </ul>
  34.  */
  35. class NormalizedFileNames {

  36.     private static final BitSet LEGAL_CHARS = new BitSet();

  37.     static {
  38.         final String legal = "abcdefghijklmnopqrstuvwxyz"
  39.                 + "ABCDEFGHIJKLMNOPQRSTUVWYXZ0123456789$-._";
  40.         for (final char c : legal.toCharArray()) {
  41.             LEGAL_CHARS.set(c);
  42.         }
  43.     }

  44.     private final Map<String, String> mapping = new HashMap<String, String>();

  45.     private final Set<String> usedNames = new HashSet<String>();

  46.     public String getFileName(final String id) {
  47.         String name = mapping.get(id);
  48.         if (name != null) {
  49.             return name;
  50.         }
  51.         name = replaceIllegalChars(id);
  52.         name = ensureUniqueness(name);
  53.         mapping.put(id, name);
  54.         return name;
  55.     }

  56.     private String replaceIllegalChars(final String s) {
  57.         final StringBuilder sb = new StringBuilder(s.length());
  58.         boolean modified = false;
  59.         for (int i = 0; i < s.length(); i++) {
  60.             final char c = s.charAt(i);
  61.             if (LEGAL_CHARS.get(c)) {
  62.                 sb.append(c);
  63.             } else {
  64.                 sb.append('_');
  65.                 modified = true;
  66.             }
  67.         }
  68.         return modified ? sb.toString() : s;
  69.     }

  70.     private String ensureUniqueness(final String s) {
  71.         String unique = s;
  72.         String lower = unique.toLowerCase(Locale.ENGLISH);
  73.         int idx = 1;
  74.         while (usedNames.contains(lower)) {
  75.             unique = (idx++) + "~" + s;
  76.             lower = unique.toLowerCase(Locale.ENGLISH);
  77.         }
  78.         usedNames.add(lower);
  79.         return unique;
  80.     }

  81. }