blob: 95aacb74ee3aad8f6ba419839220242a28caeec4 [file] [log] [blame]
// Copyright 2024 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.util;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;
/** Utility class to escape strings for use in param files for windows lld-link. */
public final class WindowsParamFileEscaper {
private WindowsParamFileEscaper() {}
/**
* Escapes the @argument to be suitable for lld-link. Existing double-quotes are escaped, and
* arguments that contain whitespace are surrounded in unescaped double-quotes.
*
* @see <a
* href="https://github.com/llvm/llvm-project/blob/4bc3b3501ff994fb3504ed2b973342821a9c8cea/llvm/lib/Support/CommandLine.cpp#L916">LLVM
* Parser Implementation</a>
*/
public static String escapeString(String argument) {
boolean needsSurroundingQuotes = containsWhitespace(argument);
StringBuilder out = new StringBuilder();
if (needsSurroundingQuotes) {
out.append("\"");
}
out.append(argument.replace("\"", "\\\""));
if (needsSurroundingQuotes) {
out.append("\"");
}
return out.toString();
}
private static final ImmutableList<CharSequence> WHITESPACE_CHARACTERS =
ImmutableList.of(" ", "\t", "\n", "\r");
private static boolean containsWhitespace(String argument) {
return WHITESPACE_CHARACTERS.stream().anyMatch(argument::contains);
}
/** Escapes each argument in @unescaped using WindowsParamFileEscaper::escapeString. */
public static Iterable<String> escapeAll(Iterable<? extends String> unescaped) {
return Iterables.transform(unescaped, WindowsParamFileEscaper::escapeString);
}
}