Implement Skylark function repr
Move printing code from EvalUtils to Printer.
Rename functions in Printer:
printValue becomes str or print,
prettyPrintValue becomes repr or write,
formatString becomes format,
makeFormattable becomes strFormattable,
prettyPrintValues becomes listString.
write being self-sufficient is made the reference,
and print is the one that is a wrapper around write,
rather than the other way around, avoiding mutual recursion.
--
MOS_MIGRATED_REVID=95897834
diff --git a/src/main/java/com/google/devtools/build/lib/syntax/Printer.java b/src/main/java/com/google/devtools/build/lib/syntax/Printer.java
index 259b34b..8739be8 100644
--- a/src/main/java/com/google/devtools/build/lib/syntax/Printer.java
+++ b/src/main/java/com/google/devtools/build/lib/syntax/Printer.java
@@ -13,7 +13,21 @@
// limitations under the License.
package com.google.devtools.build.lib.syntax;
+import com.google.common.collect.Lists;
+
+import com.google.devtools.build.lib.collect.nestedset.Order;
+import com.google.devtools.build.lib.vfs.PathFragment;
+
import java.io.IOException;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.Formattable;
+import java.util.Formatter;
+import java.util.IllegalFormatException;
+import java.util.List;
+import java.util.Map;
+import java.util.MissingFormatWidthException;
/**
* (Pretty) Printing of Skylark values
@@ -23,12 +37,157 @@
private Printer() {
}
- private static Appendable backslashChar(Appendable buffer, char c) throws IOException {
- return buffer.append('\\').append(c);
+ /**
+ * Get an informal representation of object x.
+ * Currently only differs from repr in the behavior for strings and labels at top-level,
+ * that are returned as is rather than quoted.
+ * @return the representation.
+ */
+ public static String str(Object x) {
+ return print(new StringBuilder(), x).toString();
}
- private static Appendable escapeCharacter(Appendable buffer, char c, char quote)
- throws IOException {
+ /**
+ * Get an official representation of object x.
+ * For regular data structures, the value should be parsable back into an equal data structure.
+ * @return the representation.
+ */
+ public static String repr(Object x) {
+ return write(new StringBuilder(), x).toString();
+ }
+
+ // In absence of a Python naming tradition, the write() vs print() function names
+ // follow the Lisp tradition: print() displays the informal representation (as in Python str)
+ // whereas write() displays a readable representation (as in Python repr).
+ /**
+ * Print an informal representation of object x.
+ * Currently only differs from repr in the behavior for strings and labels at top-level,
+ * that are returned as is rather than quoted.
+ * @param buffer the Appendable to which to print the representation
+ * @param o the object
+ * @return the buffer, in fluent style
+ */
+ public static Appendable print(Appendable buffer, Object o) {
+ if (o instanceof Label) {
+ return append(buffer, o.toString()); // Pretty-print a label like a string
+ }
+ if (o instanceof String) {
+ return append(buffer, (String) o);
+ }
+ return write(buffer, o);
+ }
+
+ /**
+ * Print an official representation of object x.
+ * For regular data structures, the value should be parsable back into an equal data structure.
+ * @param buffer the Appendable to write to.
+ * @param o the string a representation of which to write.
+ * @return the Appendable, in fluent style.
+ */
+ public static Appendable write(Appendable buffer, Object o) {
+ if (o == null) {
+ throw new NullPointerException(); // Java null is not a build language value.
+
+ } else if (o instanceof String) {
+ writeString(buffer, (String) o);
+
+ } else if (o instanceof Integer || o instanceof Double) {
+ append(buffer, o.toString());
+
+ } else if (o == Environment.NONE) {
+ append(buffer, "None");
+
+ } else if (o == Boolean.TRUE) {
+ append(buffer, "True");
+
+ } else if (o == Boolean.FALSE) {
+ append(buffer, "False");
+
+ } else if (o instanceof List<?>) {
+ List<?> seq = (List<?>) o;
+ printList(buffer, seq, EvalUtils.isImmutable(seq));
+
+ } else if (o instanceof SkylarkList) {
+ SkylarkList list = (SkylarkList) o;
+ printList(buffer, list.toList(), list.isTuple());
+
+ } else if (o instanceof Map<?, ?>) {
+ Map<?, ?> dict = (Map<?, ?>) o;
+ printList(buffer, dict.entrySet(), "{", ", ", "}", null);
+
+ } else if (o instanceof Map.Entry<?, ?>) {
+ Map.Entry<?, ?> entry = (Map.Entry<?, ?>) o;
+ write(buffer, entry.getKey());
+ append(buffer, ": ");
+ write(buffer, entry.getValue());
+
+ } else if (o instanceof SkylarkNestedSet) {
+ SkylarkNestedSet set = (SkylarkNestedSet) o;
+ append(buffer, "set(");
+ printList(buffer, set, "[", ", ", "]", null);
+ Order order = set.getOrder();
+ if (order != Order.STABLE_ORDER) {
+ append(buffer, ", order = \"" + order.getName() + "\"");
+ }
+ append(buffer, ")");
+
+ } else if (o instanceof BaseFunction) {
+ BaseFunction func = (BaseFunction) o;
+ append(buffer, "<function " + func.getName() + ">");
+
+ } else if (o instanceof Label) {
+ write(buffer, o.toString());
+
+ } else if (o instanceof FilesetEntry) {
+ FilesetEntry entry = (FilesetEntry) o;
+ append(buffer, "FilesetEntry(srcdir = ");
+ write(buffer, entry.getSrcLabel().toString());
+ append(buffer, ", files = ");
+ write(buffer, makeStringList(entry.getFiles()));
+ append(buffer, ", excludes = ");
+ write(buffer, makeList(entry.getExcludes()));
+ append(buffer, ", destdir = ");
+ write(buffer, entry.getDestDir().getPathString());
+ append(buffer, ", strip_prefix = ");
+ write(buffer, entry.getStripPrefix());
+ append(buffer, ", symlinks = \"");
+ append(buffer, entry.getSymlinkBehavior().toString());
+ append(buffer, "\")");
+
+ } else if (o instanceof PathFragment) {
+ append(buffer, ((PathFragment) o).getPathString());
+
+ } else {
+ append(buffer, o.toString());
+ }
+
+ return buffer;
+ }
+
+ // Throughout this file, we transform IOException into AssertionError.
+ // During normal operations, we only use in-memory Appendable-s that
+ // cannot cause an IOException.
+ private static Appendable append(Appendable buffer, char c) {
+ try {
+ return buffer.append(c);
+ } catch (IOException e) {
+ throw new AssertionError(e);
+ }
+ }
+
+ private static Appendable append(Appendable buffer, CharSequence s) {
+ try {
+ return buffer.append(s);
+ } catch (IOException e) {
+ throw new AssertionError(e);
+ }
+ }
+
+ private static Appendable backslashChar(Appendable buffer, char c) {
+ return append(append(buffer, '\\'), c);
+ }
+
+ private static Appendable escapeCharacter(Appendable buffer, char c, char quote) {
if (c == quote) {
return backslashChar(buffer, c);
}
@@ -43,29 +202,28 @@
return backslashChar(buffer, 't');
default:
if (c < 32) {
- return buffer.append(String.format("\\x%02x", (int) c));
+ return append(buffer, String.format("\\x%02x", (int) c));
}
- return buffer.append(c); // no need to support UTF-8
+ return append(buffer, c); // no need to support UTF-8
} // endswitch
}
/**
* Write a properly escaped Skylark representation of a string to a buffer.
*
- * @param buffer the Appendable we're writing to.
+ * @param buffer the Appendable to write to.
* @param s the string a representation of which to write.
* @param quote the quote character to use, '"' or '\''.
* @return the Appendable, in fluent style.
*/
- public static Appendable writeString(Appendable buffer, String s, char quote)
- throws IOException {
- buffer.append(quote);
+ public static Appendable writeString(Appendable buffer, String s, char quote) {
+ append(buffer, quote);
int len = s.length();
for (int i = 0; i < len; i++) {
char c = s.charAt(i);
escapeCharacter(buffer, c, quote);
}
- return buffer.append(quote);
+ return append(buffer, quote);
}
/**
@@ -77,7 +235,175 @@
* @param s the string a representation of which to write.
* @return the buffer, in fluent style.
*/
- public static Appendable writeString(Appendable buffer, String s) throws IOException {
+ public static Appendable writeString(Appendable buffer, String s) {
return writeString(buffer, s, '"');
}
+
+ /**
+ * Print a list of object representations
+ * @param buffer an appendable buffer onto which to write the list.
+ * @param list the list of objects to write (each as with repr)
+ * @param before a string to print before the list
+ * @param separator a separator to print between each object
+ * @param after a string to print after the list
+ * @param singletonTerminator null or a string to print after the list if it is a singleton
+ * The singleton case is notably relied upon in python syntax to distinguish
+ * a tuple of size one such as ("foo",) from a merely parenthesized object such as ("foo").
+ * @return the Appendable, in fluent style.
+ */
+ public static Appendable printList(Appendable buffer, Iterable<?> list,
+ String before, String separator, String after, String singletonTerminator) {
+ boolean printSeparator = false; // don't print the separator before the first element
+ int len = 0;
+ append(buffer, before);
+ for (Object o : list) {
+ if (printSeparator) {
+ append(buffer, separator);
+ }
+ write(buffer, o);
+ printSeparator = true;
+ len++;
+ }
+ if (singletonTerminator != null && len == 1) {
+ append(buffer, singletonTerminator);
+ }
+ return append(buffer, after);
+ }
+
+ /**
+ * Print a Skylark list or tuple of object representations
+ * @param buffer an appendable buffer onto which to write the list.
+ * @param list the contents of the list or tuple
+ * @param isTuple is it a tuple or a list?
+ * @return the Appendable, in fluent style.
+ */
+ public static Appendable printList(Appendable buffer, Iterable<?> list, boolean isTuple) {
+ if (isTuple) {
+ return printList(buffer, list, "(", ", ", ")", ",");
+ } else {
+ return printList(buffer, list, "[", ", ", "]", null);
+ }
+ }
+
+ /**
+ * Print a list of object representations
+ * @param list the list of objects to write (each as with repr)
+ * @param before a string to print before the list
+ * @param separator a separator to print between each object
+ * @param after a string to print after the list
+ * @param singletonTerminator null or a string to print after the list if it is a singleton
+ * The singleton case is notably relied upon in python syntax to distinguish
+ * a tuple of size one such as ("foo",) from a merely parenthesized object such as ("foo").
+ * @return a String, the representation.
+ */
+ public static String listString(Iterable<?> list,
+ String before, String separator, String after, String singletonTerminator) {
+ return printList(new StringBuilder(), list, before, separator, after, singletonTerminator)
+ .toString();
+ }
+
+ private static List<?> makeList(Collection<?> list) {
+ return list == null ? Lists.newArrayList() : Lists.newArrayList(list);
+ }
+
+ private static List<String> makeStringList(List<Label> labels) {
+ if (labels == null) {
+ return Collections.emptyList();
+ }
+ List<String> strings = Lists.newArrayListWithCapacity(labels.size());
+ for (Label label : labels) {
+ strings.add(label.toString());
+ }
+ return strings;
+ }
+
+ /**
+ * Convert BUILD language objects to Formattable so JDK can render them correctly.
+ * Don't do this for numeric or string types because we want %d, %x, %s to work.
+ */
+ private static Object strFormattable(final Object o) {
+ if (o instanceof Integer || o instanceof Double || o instanceof String) {
+ return o;
+ } else {
+ return new Formattable() {
+ @Override
+ public String toString() {
+ return str(o);
+ }
+
+ @Override
+ public void formatTo(Formatter formatter, int flags, int width, int precision) {
+ print(formatter.out(), o);
+ }
+ };
+ }
+ }
+
+ private static final Object[] EMPTY = new Object[0];
+
+ /*
+ * N.B. MissingFormatWidthException is the only kind of IllegalFormatException
+ * whose constructor can take and display arbitrary error message, hence its use below.
+ */
+
+ /**
+ * Perform Python-style string formatting. Implemented by delegation to Java's
+ * own string formatting routine to avoid reinventing the wheel. In more
+ * obscure cases, semantics follow JDK (not Python) rules.
+ *
+ * @param pattern a format string.
+ * @param tuple a tuple containing positional arguments
+ */
+ public static String format(String pattern, List<?> tuple) throws IllegalFormatException {
+ int count = countPlaceholders(pattern);
+ if (count != tuple.size()) {
+ throw new MissingFormatWidthException(
+ "not all arguments converted during string formatting");
+ }
+
+ List<Object> args = new ArrayList<>();
+
+ for (Object o : tuple) {
+ args.add(strFormattable(o));
+ }
+
+ try {
+ return String.format(pattern, args.toArray(EMPTY));
+ } catch (IllegalFormatException e) {
+ throw new MissingFormatWidthException(
+ "invalid arguments for format string");
+ }
+ }
+
+ private static int countPlaceholders(String pattern) {
+ int length = pattern.length();
+ boolean afterPercent = false;
+ int i = 0;
+ int count = 0;
+ while (i < length) {
+ switch (pattern.charAt(i)) {
+ case 's':
+ case 'd':
+ if (afterPercent) {
+ count++;
+ afterPercent = false;
+ }
+ break;
+
+ case '%':
+ afterPercent = !afterPercent;
+ break;
+
+ default:
+ if (afterPercent) {
+ throw new MissingFormatWidthException("invalid arguments for format string");
+ }
+ afterPercent = false;
+ break;
+ }
+ i++;
+ }
+
+ return count;
+ }
}