Json class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
Line 25: Line 25:
<p class="note">'''Note:''' As with all enumerations, the <var>ToString</var> method implicitly converts an enumeration value to a character string whose value is the name of the enumeration value. For more information about methods available to all enumerations, see [[Enumerations#Common enumeration methods|Common enumeration methods]]. </p>
<p class="note">'''Note:''' As with all enumerations, the <var>ToString</var> method implicitly converts an enumeration value to a character string whose value is the name of the enumeration value. For more information about methods available to all enumerations, see [[Enumerations#Common enumeration methods|Common enumeration methods]]. </p>


==Implicit conversions==
A Json object can represent a number or a string. To create a Json string object one can use the [[String (Json function)|String function]] and to create a Json number object one can use the [[Number (Json function)|Number function]]:
<p class="code">%json    is object json
...
%json = string("Argle bargle")
...
%json = number(2.718281828459)
</p>
However, in many cases, one can assign an intrinsic number of string value directly to a Json object without the conversion function:
<p class="code">%json    is object json
...
%json = "Argle bargle"
...
%json = 2.718281828459
</p>
The resulting type of the Json object is determined from the type of the source of the assignment. The Number and String functions can be useful if one wants to set the target Json object datatype to something different from the source type. Explicit assignment also occurs for Json parameters in methods. For example, if one had:
<p class="code">local function foobar(%json is object json) is float
</p>
One could call the method as
<p class="code">%x = %(local):foobar("Golden")
...
%x = %(local):foobar(1.61803398874989)
</p>
Note that this provides a dynamically typed parameter capability that might be useful to SOUL programmers, even if not specifically interested in parsing or generating JSON strings.
<p>
While it would appear that there is also implicit conversion from boolean values, that's not really the case. In fact, there are Json class [[True (Json function)|True]] and [[False (Json function)|False]] functions that return boolean Json objects with the indicated value. So the following are valid:
<p class="code">%json = true
%json = false
%json = %(json):true
%json = %(json):false)
</p>
but the following is not
<p class="code">%json = %(boolean):true
%json = %(boolean):false)
</p>
And, since comparisons return a numeric value, if one wants to assign the result of a comparison to a Json object as a boolean, one must do something like:
<p class="code">%json = boolean(%war eq %peace)
</p> 
==List of Json methods==
==List of Json methods==
[[List of Json methods]] contains a complete list of the class methods.
[[List of Json methods]] contains a complete list of the class methods.


[[Category:System classes]]
[[Category:System classes]]

Revision as of 21:06, 17 February 2015

The Json class facilitates data exchange with JavaScript programs or other programs that suport the JSON format. JSON can be considered as an alternative encoding format to XML which is supported in SOUL by the XmlDoc API. The advantages of JSON over XML are:

  • It is easier to use in JavaScript programs.
  • It maps more naturally on to object-oriented structures, especially collections.
  • It is lighter-weight. That is, data represented as JSON is typically more compact than the same data represented as XML and the JSON standard is considerably simpler than the XML standard.

All that said, there are many situations where XML is a better choice for an exchange format than JSON.

Json objects would typically be created either programmatically using JSON constructors or by parsing a JSON string sent from another platform. A Json object tree can be examined and manipulated using a set of Json functions and the resulting object tree can be serialized as a string. The Json parsing and serialization functions operate only on unicode so a separate step is required to encode/decode the data to/from a format suitable for network transfer, most commonly UTF-8.

The JsonType enumeration

The JsonType enumeration indicates the type of JSON data represented by a Json object. Json objects simulate JavaScript variables in that they are untyped so that the same variable can actually reference very different datatypes.

The values of the JsonType enumeration which correspond to the equivalent JSON datatypes are:

NullA null object value. A Json object will never have a null value but the type of a null pointer is Null.
StringA unicode string value which can be set or retrieved from a SOUL Unicode variable or expression.
NumberA number value which behaves very much like Model 204 Float variables.
ArrayAn ordered but un-named collection of Json objects.
ObjectAn ordered, named collection of Json objects.

Note: As with all enumerations, the ToString method implicitly converts an enumeration value to a character string whose value is the name of the enumeration value. For more information about methods available to all enumerations, see Common enumeration methods.

Implicit conversions

A Json object can represent a number or a string. To create a Json string object one can use the String function and to create a Json number object one can use the Number function:

%json is object json ... %json = string("Argle bargle") ... %json = number(2.718281828459)

However, in many cases, one can assign an intrinsic number of string value directly to a Json object without the conversion function:

%json is object json ... %json = "Argle bargle" ... %json = 2.718281828459

The resulting type of the Json object is determined from the type of the source of the assignment. The Number and String functions can be useful if one wants to set the target Json object datatype to something different from the source type. Explicit assignment also occurs for Json parameters in methods. For example, if one had:

local function foobar(%json is object json) is float

One could call the method as

%x = %(local):foobar("Golden") ... %x = %(local):foobar(1.61803398874989)

Note that this provides a dynamically typed parameter capability that might be useful to SOUL programmers, even if not specifically interested in parsing or generating JSON strings.

While it would appear that there is also implicit conversion from boolean values, that's not really the case. In fact, there are Json class True and False functions that return boolean Json objects with the indicated value. So the following are valid:

%json = true %json = false %json = %(json):true %json = %(json):false)

but the following is not

%json = %(boolean):true %json = %(boolean):false)

And, since comparisons return a numeric value, if one wants to assign the result of a comparison to a Json object as a boolean, one must do something like:

%json = boolean(%war eq %peace)

List of Json methods

List of Json methods contains a complete list of the class methods.