Stringlist class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 9: Line 9:
<ul>
<ul>
<li>Because they use the object-oriented model of instantiation, <var>Stringlists</var> eliminate the confusing behavior of <var>[[$lists]]</var> that results from their being tied to the statement that created them.
<li>Because they use the object-oriented model of instantiation, <var>Stringlists</var> eliminate the confusing behavior of <var>[[$lists]]</var> that results from their being tied to the statement that created them.
<li><var>Stringlists</var>are strongly datatyped, so application errors resulting from misuse of <var>[[$lists]]</var> identifiers are eliminated. Code is clearer because it is obvious that a variable is a <var>Stringlist</var> -- <var>[[$lists]]</var> identifiers are simply Float, Fixed, or String datatypes.
<li><var>Stringlists</var>are strongly datatyped, so application errors resulting from misuse of <var>[[$lists]]</var> identifiers are eliminated. Code is clearer because it is obvious that a variable is a <var>Stringlist</var> <var>[[$lists]]</var> identifiers are simply Float, Fixed, or String datatypes.
<li>Because of the way <var>[[$lists]]</var> are instantiated, they are essentially unusable inside class methods.
<li>Because of the way <var>[[$lists]]</var> are instantiated, they are essentially unusable inside class methods.
</ul>
</ul>

Revision as of 22:02, 30 October 2012

The Stringlist class provides a facility that resembles an unbounded array of strings.

While less generalized than a collection class, it has a richer set of methods than any collection class. Unfortunately, the Stringlist class cannot be thought of as either a subset or superset of collections, so it is not necessarily an obvious decision as to which to use.

Stringlist usage

The Stringlist class is essentially an object-oriented version of $lists. It is strongly recommended that all new applications use Stringlists instead of $lists:

  • Because they use the object-oriented model of instantiation, Stringlists eliminate the confusing behavior of $lists that results from their being tied to the statement that created them.
  • Stringlistsare strongly datatyped, so application errors resulting from misuse of $lists identifiers are eliminated. Code is clearer because it is obvious that a variable is a Stringlist$lists identifiers are simply Float, Fixed, or String datatypes.
  • Because of the way $lists are instantiated, they are essentially unusable inside class methods.

Stringlist objects are instantiated with the New function or with methods that return Stringlist instances "under the covers" such as the Sort, SortNew or Copy methods.

The system Discard method deletes a Stringlist object.

Stringlists are stored in CCATEMP, so they take minimal server table space no matter how large the Stringlist.

Like all system classes, Stringlists are considered longstring-capable, that is, any string inputs and outputs are considered longstrings for expression-compilation purposes. The main impact of this is that Stringlist inputs and outputs will have standard longstring truncation behavior: truncation by assignment results in request cancellation.

In addition to the described methods, it is also possible to add data to a Stringlist with the HTML/Text statement using the To clause. This is especially useful if there is a block of mostly constant text to be added to a Stringlist.

Begin %sl is object Stringlist %sl = New Text to %sl <html> <head> <title>Loading a complete web page into a stringlist</title> </head> <body> Each line of this text block is a new stringlist item. </body> End Text %sl:Print End

Migrating from $lists to Stringlists

The MoveFromId and MoveToId methods facilitate migration from $lists to Stringlists: Stringlists can be passed to code that works on $lists after being converted to a $list with MoveToId; $lists can be converted to Stringlists with MoveFromId.

Compatibility

Before Sirius Mods Version 6.6, Stringlists items were limited to 6124 bytes in length.

In Sirius Mods Version 6.6, this limitation was lifted, and Stringlists items can be as many as 2**31-1 bytes long. While, as of Sirius Mods Version 6.6, all methods work correctly with Stringlists items longer than 6124 bytes, a few methods such as Locate and LocateUp still restrict their processing to the first 6124 bytes of a Stringlists item.

List of Stringlist methods

The individual Stringlist methods are summarized in "List of Stringlist methods".