Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
EDT:EGL Language Primitive Type Conversions
Please see the parent of this page, EDT:EGL Language.
Conversions Between Primitive Types (Table 4)
Conversion Matrix
To see if there's a conversion from one type to another, find the cell in "from" type's row and the "to" type's column.
This matrix might contain differences from RBD.
|
bigint |
boolean |
bytes |
date |
decimal |
float |
int |
number |
smallfloat |
smallint |
string |
time | timestamp |
bigint |
a |
|
g |
|
f |
f |
f |
f |
f |
f |
d |
|
|
boolean |
|
a |
|
|
|
|
|
|
|
|
b |
|
|
bytes |
h |
|
j |
|
i |
h |
h |
|
h |
h |
e |
|
|
date |
|
|
|
a |
|
|
|
|
|
|
k |
|
l |
decimal |
f |
|
g |
|
j |
f |
f |
f |
f |
f |
d |
|
|
float |
f |
|
g |
|
f |
a |
f |
f |
f |
f |
d |
|
|
int |
f |
|
g |
|
f |
f |
a |
f |
f |
f |
d |
|
|
number |
f |
|
g |
|
f |
f |
f |
a |
f |
f |
d |
|
|
smallfloat |
f |
|
g |
|
f |
f |
f |
f |
a |
f |
d |
|
|
smallint |
f |
|
g |
|
f |
f |
f |
f |
f |
a |
d |
|
|
string |
d |
|
e |
k |
d |
d |
d |
d |
d |
d |
a |
m | c |
time | |
|
|
|
|
|
|
|
|
|
m | a | l |
timestamp |
|
|
|
l |
|
|
|
|
|
|
c |
l | j |
Key
blank cell = The types are incompatible. Conversion is not supported.
a = Same types (not a conversion).
b = Booleans convert to strings as "true" or "false" (lowercase).
c = Strings convert to/from timestamps using a predefined format for timestamps (to be defined later). The required fields come from the timestamp's pattern. The conversions are not controlled by variables like RBD's defaultTimestampFormat. Because of this, we can't convert from a string to a timestamp with no pattern. We can convert from a timestamp with no pattern to a string. Functions will be provided which convert to/from strings and timestamps with a format string supplied by the program.
d = Strings convert to/from numbers using our literal syntax for numbers. The conversions are not controlled by variables like RBD's defaultNumericFormat. Functions will be provided which convert to/from strings and numbers with a format string supplied by the program.
e = Strings and bytes are not compatible types, however there are functions defined on EString to allow conversion between them. Instance functions are provided for myString.toBytes(); no argument means use the default encoding, and a string argument specifies the encoding to use. There are also static EString.fromBytes(bytes) functions; one argument means use the default encoding, and a string argument specifies the encoding to use. To programmatically find the default encoding, use EString.getDefaultEncoding().
f = All numeric types are compatible with each other, but some conversions can result in overflow or truncation.
g = Numeric types convert to bytes using the number's bit pattern. When the bytes type includes a length (i.e. "bytes(4)" not just "bytes") the conversion is legal only if the size of the number in bytes equals the length of the bytes type.
h = Conversion from bytes to numeric types is done by interpreting the bytes data as a value in the format of the numeric type. If the bytes type includes a length (i.e. "bytes(4)" not just "bytes") the conversion is legal only if the size of the number in bytes equals the length of the bytes type. If the bytes type doesn't include a length, the conversion will fail at run time if the size of the number in bytes is not equal to the length of the bytes data.
i = This is like h, with the additional rule that the decimal type must include a length. (Without the decimal's length we don't know how to interpret the bytes data.)
j = Conversion is necessary if the "from" and "to" types both have parameters (i.e. "bytes(4)" not just "bytes"), and the type parameters aren't identical.
k = Strings convert to/from dates using a predefined format for dates (to be defined later). The conversions are not controlled by variables like RBD's defaultDateFormat. Functions will be provided which convert to/from strings and dates with a format string supplied by the program.
l = Conversions between dates/times and timestamps work as they do in RBD.
m = Strings convert to/from times using a predefined format of "HH:mm:ss". The conversions are not controlled by variables like RBD's defaultTimeFormat.
Conversions Between Primitive Types1 | Core | JavaScript | Java |
Any to everything | 2d - entire table (to verify validation lets all the valid conversions through and catches invalid) bug 354161 |
1d |
done bug 353673 |
Everything to any | -- |
1d |
done bug 353674 |
Conversion Matrix b | -- |
0.1d |
done |
Conversion Matrix c | -- |
0.1d |
1d bug 353675 |
Conversion Matrix d | -- |
0.2d |
1d bug 353676 |
Conversion Matrix e | -- |
0.5d |
0.5d |
Conversion Matrix f | -- |
done |
2d bug 353677 |
Conversion Matrix g | -- |
1d |
1d |
Conversion Matrix h |
-- |
2d |
2d |
Conversion Matrix i |
-- |
1d |
1d |
Conversion Matrix j |
-- |
1d |
1d |
Conversion Matrix k | -- | 1d | 1d bug 353678 |
Conversion Matrix l | -- | |
1d bug 353922 |
Numeric overflows2 |
done |
4d |
4d |
Notes on Table 4
- We'll document error conditions of conversions, and their resulting exceptions. Whenever possible this documentation will be comments in the EGL source file for a type.
- Our philosophy is that we can't make EDT be both efficient, and also behave the same in every environment when it comes to edge cases like numeric overflow. This means that in normal circumstances conversions to numeric types do not check for overflow: EGL does whatever the underlying language does in that situation. There will be special syntax for users to indicate that overflow checking is required. The syntax is To Be Determined. It may be an operation, something that looks like a function call where the source expression and target variable are passed in. What happens when an overflow is detected? We might throw an exception, but that's also To Be Determined.