/******************************************************************************* * Copyright (c) 2009, 2011 Mountainminds GmbH & Co. KG and Contributors * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Marc R. Hoffmann - initial API and implementation * *******************************************************************************/ package org.jacoco.report.internal; import java.util.BitSet; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; /** * Internal utility to create normalized file names from string ids. The file * names generated by an instance of this class have the following properties: * * */ class NormalizedFileNames { private static final BitSet LEGAL_CHARS = new BitSet(); static { final String legal = "abcdefghijklmnopqrstuvwxyz" + "ABCDEFGHIJKLMNOPQRSTUVWYXZ0123456789$-._"; for (final char c : legal.toCharArray()) { LEGAL_CHARS.set(c); } } private final Map mapping = new HashMap(); private final Set usedNames = new HashSet(); public String getFileName(final String id) { String name = mapping.get(id); if (name != null) { return name; } name = replaceIllegalChars(id); name = ensureUniqueness(name); mapping.put(id, name); return name; } private String replaceIllegalChars(final String s) { final StringBuilder sb = new StringBuilder(s.length()); for (int i = 0; i < s.length(); i++) { final char c = s.charAt(i); sb.append(LEGAL_CHARS.get(c) ? c : '_'); } return sb.toString(); } private String ensureUniqueness(final String s) { String unique = s; String lower = unique.toLowerCase(); int idx = 1; while (usedNames.contains(lower)) { unique = s + '~' + idx++; lower = unique.toLowerCase(); } usedNames.add(lower); return unique; } }