|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4.Util
public final class Util
This provides useful static methods for I/O and XML operations.
Thread Safety: Safe.
Nested Class Summary | |
---|---|
static class |
Util.BooleanPref
This reads and writes boolean-valued Java persistent preferences. |
static class |
Util.IntPref
This reads and writes integer-valued Java persistent preferences. |
static class |
Util.StringPref
This reads and writes String-valued Java persistent preferences. |
Field Summary | |
---|---|
static java.util.Comparator<java.lang.String> |
slashComparator
Sorts two strings for optimum module order; we guarantee slashComparator(a,b)==0 iff a.equals(b). |
Method Summary | ||
---|---|---|
static
|
append(java.util.List<T> list,
T element)
Copy the input list, append "element" to it, then return the result as an unmodifiable list. |
|
static
|
append(T[] list,
T element)
Copy the input array, append "element" to it, then return the result as a new array. |
|
static
|
asList(T... array)
Returns an unmodifiable List with same elements as the array. |
|
static
|
asMap(K[] keys,
V... values)
Returns a newly created LinkedHashMap mapping each key to its corresponding value, in the given order. |
|
static
|
asSet(V... values)
Returns a newly created LinkedHashSet containing the given elements in the given order. |
|
static java.lang.String |
canon(java.lang.String filename)
Returns the canonical absolute path for a file. |
|
static boolean |
close(java.io.Closeable object)
Attempt to close the file/stream/reader/writer and return true if and only if we successfully closed it. |
|
static java.lang.String |
convertLineBreak(java.lang.String input)
Converts Windows/Mac/Unix linebreaks into '\n', and replace non-tab non-linebreak control characters into space. |
|
static void |
copy(boolean executable,
boolean keepPath,
java.lang.String destdir,
java.lang.String... names)
Copy the list of files from JAR into the destination directory, then set the correct permissions on them if possible. |
|
static java.lang.String |
encode(java.lang.String str)
Encode special characters of a String using XML/HTML encoding. |
|
static void |
encodeXML(java.io.PrintWriter out,
java.lang.String str)
Write a String into a PrintWriter, and encode special characters using XML-specific encoding. |
|
static void |
encodeXML(java.lang.StringBuilder out,
java.lang.String str)
Write a String into a StringBuilder, and encode special characters using XML-specific encoding. |
|
static void |
encodeXMLs(java.io.PrintWriter out,
java.lang.String... strs)
Write a list of Strings into a PrintWriter, where strs[2n] are written as-is, and strs[2n+1] are XML-encoded. |
|
static void |
encodeXMLs(java.lang.StringBuilder out,
java.lang.String... strs)
Write a list of Strings into a StringBuilder, where strs[2n] are written as-is, and strs[2n+1] are XML-encoded. |
|
static
|
fastJoin(java.lang.Iterable<E> collection1,
java.lang.Iterable<E> collection2)
Return an iterable whose iterator is a read-only iterator that first iterate over Collection1, and then Collection2. |
|
static java.lang.String |
getCurrentDirectory()
Returns the current "default directory" which is used by the FileOpen and FileSave dialogs. |
|
static int |
indexOf(java.lang.String big,
java.lang.String small,
int start,
boolean forward,
boolean caseSensitive)
Finds the first occurrence of small within big. |
|
static java.lang.String |
jarPrefix()
This returns the constant prefix to denote whether Util.readAll() should read from a JAR or read from the file system. |
|
static int |
max(int bitwidth)
Returns the largest allowed integer, or -1 if no integers are allowed (bitwidth < 1). |
|
static int |
min(int bitwidth)
Returns the smallest allowed integer, or 0 if no integers are allowed (bitwidth < 1) |
|
static boolean |
onMac()
Returns true iff running on Mac OS X. |
|
static boolean |
onWindows()
Returns true iff running on Windows |
|
static
|
prepend(java.util.List<T> list,
T element)
Copy the input list, prepend "element" to it, then return the result as an unmodifiable list. |
|
static java.lang.String |
readAll(java.lang.String filename)
Read everything into a String; throws IOException if an error occurred. |
|
static void |
setCurrentDirectory(java.io.File newDirectory)
Modifies the current "default directory" which is used by the FileOpen and FileSave dialogs. |
|
static void |
shift(java.io.RandomAccessFile file,
long from,
long to)
Copy file.content[from...f.length-1] into file.content[to...], then truncate the file after that point. |
|
static int |
shiftmask(int bitwidth)
Returns a mask of the form 000..0011..11 where the number of 1s is equal to the number of significant bits of the highest integer withing the given bitwidth |
|
static java.lang.String |
tail(java.lang.String string)
Returns the substring after the last "/" |
|
static long |
writeAll(java.lang.String filename,
java.lang.String content)
Open then overwrite the file with the given content; throws Err if an error occurred. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.util.Comparator<java.lang.String> slashComparator
Method Detail |
---|
public static <T> ConstList<T> append(java.util.List<T> list, T element)
public static <T> T[] append(T[] list, T element)
public static <T> ConstList<T> prepend(java.util.List<T> list, T element)
public static <T> ConstList<T> asList(T... array)
public static <V> java.util.LinkedHashSet<V> asSet(V... values)
public static <K,V> java.util.LinkedHashMap<K,V> asMap(K[] keys, V... values)
public static <E> java.lang.Iterable<E> fastJoin(java.lang.Iterable<E> collection1, java.lang.Iterable<E> collection2)
public static java.lang.String convertLineBreak(java.lang.String input)
public static boolean close(java.io.Closeable object)
public static void setCurrentDirectory(java.io.File newDirectory)
public static java.lang.String getCurrentDirectory()
public static java.lang.String jarPrefix()
public static java.lang.String readAll(java.lang.String filename) throws java.io.FileNotFoundException, java.io.IOException
java.io.FileNotFoundException
java.io.IOException
public static long writeAll(java.lang.String filename, java.lang.String content) throws Err
Err
public static final java.lang.String canon(java.lang.String filename)
Note: if filename=="", we return "".
public static void copy(boolean executable, boolean keepPath, java.lang.String destdir, java.lang.String... names)
executable
- - if true, we will attempt to set the file's "executable" permission (failure to do this is ignored)keepPath
- - if true, the full path will be created for the destination filedestdir
- - the destination directorynames
- - the files to copy from the JARpublic static void shift(java.io.RandomAccessFile file, long from, long to) throws java.io.IOException
If (from > to), this means we simply delete the portion of the file beginning at "to" and up to but excluding "from".
If (from < to), this means we insert (to-from) number of ARBITRARY bytes into the "from" location and shift the original file content accordingly.
Note: after this operation, the file's current position will be moved to the start of the file.
java.io.IOException
- if (from < 0) || (to < 0) || (from >= file.length())public static void encodeXML(java.io.PrintWriter out, java.lang.String str)
In particular, it changes LESS THAN, GREATER THAN, AMPERSAND, SINGLE QUOTE, and DOUBLE QUOTE into "<" ">" "&" "'" and """ and turns any characters outside of the 32..126 range into the "&#xHHHH;" encoding (where HHHH is the 4 digit lowercase hexadecimal representation of the character value).
out
- - the PrintWriter to write intostr
- - the String to write outpublic static void encodeXML(java.lang.StringBuilder out, java.lang.String str)
In particular, it changes LESS THAN, GREATER THAN, AMPERSAND, SINGLE QUOTE, and DOUBLE QUOTE into "<" ">" "&" "'" and """ and turns any characters outside of the 32..126 range into the "&#xHHHH;" encoding (where HHHH is the 4 digit lowercase hexadecimal representation of the character value).
out
- - the StringBuilder to write intostr
- - the String to write outpublic static java.lang.String encode(java.lang.String str)
In particular, it changes LESS THAN, GREATER THAN, AMPERSAND, SINGLE QUOTE, and DOUBLE QUOTE into "<" ">" "&" "'" and """ and turns any characters outside of the 32..126 range into the "&#xHHHH;" encoding (where HHHH is the 4 digit lowercase hexadecimal representation of the character value).
public static void encodeXMLs(java.io.PrintWriter out, java.lang.String... strs)
For example, if you call encodeXML(out, A, B, C, D, E), it is equivalent to the following:
out.print(A);
encodeXML(out, B);
out.print(C);
encodeXML(out, D);
out.print(E);
In other words, it writes the even entries as-is, and writes the odd entries using XML encoding.
out
- - the PrintWriter to write intostrs
- - the list of Strings to write outpublic static void encodeXMLs(java.lang.StringBuilder out, java.lang.String... strs)
For example, if you call encodeXML(out, A, B, C, D, E), it is equivalent to the following:
out.append(A);
encodeXML(out, B);
out.append(C);
encodeXML(out, D);
out.append(E);
In other words, it writes the even entries as-is, and writes the odd entries using XML encoding.
out
- - the StringBuilder to write intostrs
- - the list of Strings to write outpublic static int indexOf(java.lang.String big, java.lang.String small, int start, boolean forward, boolean caseSensitive)
big
- - the String that we want to perform the search onsmall
- - the pattern we are looking forwardstart
- - the offset within "big" to start (for example: 0 means to start from the beginning of "big")forward
- - true if the search should go forward; false if it should go backwardscaseSensitive
- - true if the search should be done in a case-sensitive manner
public static boolean onWindows()
public static boolean onMac()
public static java.lang.String tail(java.lang.String string)
public static int max(int bitwidth)
public static int min(int bitwidth)
public static int shiftmask(int bitwidth)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |