Package ec.util
Class Code
java.lang.Object
ec.util.Code
Code provides some simple wrapper functions for encoding and decoding
basic data types for storage in a pseudo-Java source code strings
format. This differs from just "printing"
them to string in that the actual precision of the object is maintained.
Code attempts to keep the representations as "Java-like" as possible --
the exceptions being primarily floats and doubles, which are encoded as
ints and longs. Encoding of objects and arrays is not supported. You'll
have to handle that yourself. Strings are supported.
Everything is case-SENSITIVE. Here's the breakdown.
| Type | Format |
| boolean | true or false (old style, case sensitive) or T or F (new style, case sensitive) |
| byte | bbyte| |
| short | sshort| |
| int | iint| |
| long | llong| |
| float | ffloatConvertedToIntForStorage|humanReadableFloat| or (only for reading in) f|humanReadableFloat| |
| float | ddoubleConvertedToLongForStorage|humanReadableDouble| or (only for reading in) d|humanReadableDouble| |
| char | standard Java char, except that the only valid escape sequences are: \0 \t \n \b \' \" \ u unicodeHex |
| string | standard Java string with \ u ...\ u Unicode escapes, except that the only other valid escape sequences are: \0 \t \n \b \' \" |
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DecodeReturncheckPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, then trims the line and checks the preamble.static voidDecodes the next item out of a DecodeReturn and modifies the DecodeReturn to hold the results.static Stringencode(boolean b) Encodes a boolean.static Stringencode(byte b) Encodes a byte.static Stringencode(char c) Encodes a character.static Stringencode(double d) Encodes a double.static Stringencode(float f) Encodes a float.static Stringencode(int i) Encodes an int.static Stringencode(long l) Encodes a long.static Stringencode(short s) Encodes a short.static StringEncodes a String.static booleanreadBooleanWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a boolean value ("true" or "false") if there is one, and returns it.static bytereadByteWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a byte if there is one, and returns it.static charreadCharacterWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a character if there is one, and returns it.static doublereadDoubleWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a double if there is one, and returns it.static floatreadFloatWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a float if there is one, and returns it.static intreadIntegerWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in an integer if there is one, and returns it.static longreadLongWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a long if there is one, and returns it.static shortreadShortWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a short if there is one, and returns it.static StringreadStringWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a string if there is one, and returns it.
-
Constructor Details
-
Code
public Code()
-
-
Method Details
-
encode
Encodes a boolean. -
encode
Encodes a byte. -
encode
Encodes a character. -
encode
Encodes a short. -
encode
Encodes an int. -
encode
Encodes a long. -
encode
Encodes a float. -
encode
Encodes a double. -
encode
Encodes a String. -
decode
Decodes the next item out of a DecodeReturn and modifies the DecodeReturn to hold the results. See DecodeReturn for more explanations about how to interpret the results. -
checkPreamble
public static DecodeReturn checkPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, then trims the line and checks the preamble. Returns a DecodeReturn on the line if successful, else posts a fatal error. Sets the DecodeReturn's line number. The DecodeReturn has not yet been decoded. You'll need to do that with Code.decode(...) -
readStringWithPreamble
public static String readStringWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a string if there is one, and returns it. Generates an error otherwise. -
readCharacterWithPreamble
public static char readCharacterWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a character if there is one, and returns it. Generates an error otherwise. -
readByteWithPreamble
public static byte readByteWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a byte if there is one, and returns it. Generates an error otherwise. -
readShortWithPreamble
public static short readShortWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a short if there is one, and returns it. Generates an error otherwise. -
readLongWithPreamble
public static long readLongWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a long if there is one, and returns it. Generates an error otherwise. -
readIntegerWithPreamble
public static int readIntegerWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in an integer if there is one, and returns it. Generates an error otherwise. -
readFloatWithPreamble
public static float readFloatWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a float if there is one, and returns it. Generates an error otherwise. -
readDoubleWithPreamble
public static double readDoubleWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a double if there is one, and returns it. Generates an error otherwise. -
readBooleanWithPreamble
public static boolean readBooleanWithPreamble(String preamble, EvolutionState state, LineNumberReader reader) Finds the next nonblank line, skips past an expected preamble, and reads in a boolean value ("true" or "false") if there is one, and returns it. Generates an error otherwise.
-