ReplaceImage (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
 
mNo edit summary
Line 1: Line 1:
<span style="font-size:120%"><b>Replace Stringlist item with an image</b></span>
{{Template:Stringlist:ReplaceImage subtitle}}


ReplaceImage is a member of the [[Stringlist class]].
ReplaceImage is a member of the [[Stringlist class]].
Line 5: Line 5:
This callable method replaces a Stringlist item with the contents of an image.
This callable method replaces a Stringlist item with the contents of an image.


==ReplaceImage Syntax==
==Syntax==
<pre>
{{Template:Stringlist:ReplaceImage syntax}}
[%rc =] %sl:ReplaceImage(itemnum, imagename)
===Syntax terms===
</pre>
 
===Syntax Terms===
<dl>
<dl>
<dt>%rc<dd>A numeric variable that is set to 0 if the new item length is the same as the replaced item length, 1 if it is shorter, or 2 if it is longer.<dt>%sl<dd>A Stringlist object.<dt>itemnum<dd>The number of the item that the image is to replace.<dt>imagename<dd>A string that contains the name of an image. This is an optional argument if an image has been associated with the Stringlist via the [[BindImage (Stringlist function)]]. Otherwise, it is a required argument. </dl>
<dt>%rc<dd>A numeric variable that is set to 0 if the new item length is the same as the replaced item length, 1 if it is shorter, or 2 if it is longer.<dt>%sl<dd>A Stringlist object.<dt>itemnum<dd>The number of the item that the image is to replace.<dt>imagename<dd>A string that contains the name of an image. This is an optional argument if an image has been associated with the Stringlist via the [[BindImage (Stringlist function)]]. Otherwise, it is a required argument. </dl>


==Usage Notes==
==Usage notes==
<ul><li>All errors in ReplaceImage result in request cancellation.<li>ReplaceImage is extremely efficient if the Stringlist item size is not being changed (return value for Replace of 0), fairly efficient when a Stringlist item is being replaced with a shorter string (return value of 1), and can be fairly expensive when a Stringlist item is being replaced with a longer string (return value of 2). Replacement with a longer string can be expensive because it can result in the splitting of a Stringlist leaf page. Once a leaf page is split, it will not be merged back together, even if subsequent RemoveItem invocations make this possible. Because of this leaf-page splitting, heavy use of ReplaceImage calls that increase Stringlist item size (and Insert and RemoveItem) can result in "sparse" Stringlists which place an unnecessary burden on the buffer pool and CCATEMP. Such heavy use can also result in an inability to add an item to the end of the Stringlist (via Add) because of a full pointer page, even though the Stringlist is nowhere near the theoretical capacity for a Stringlist. Stringlist compression can be achieved using the [[CopyItems (Stringlist function)]].</ul>
<ul><li>All errors in ReplaceImage result in request cancellation.<li>ReplaceImage is extremely efficient if the Stringlist item size is not being changed (return value for Replace of 0), fairly efficient when a Stringlist item is being replaced with a shorter string (return value of 1), and can be fairly expensive when a Stringlist item is being replaced with a longer string (return value of 2). Replacement with a longer string can be expensive because it can result in the splitting of a Stringlist leaf page. Once a leaf page is split, it will not be merged back together, even if subsequent RemoveItem invocations make this possible. Because of this leaf-page splitting, heavy use of ReplaceImage calls that increase Stringlist item size (and Insert and RemoveItem) can result in "sparse" Stringlists which place an unnecessary burden on the buffer pool and CCATEMP. Such heavy use can also result in an inability to add an item to the end of the Stringlist (via Add) because of a full pointer page, even though the Stringlist is nowhere near the theoretical capacity for a Stringlist. Stringlist compression can be achieved using the [[CopyItems (Stringlist function)]].</ul>
==Examples==
==Examples==

Revision as of 20:00, 31 December 2010

Replace Stringlist item with an image (Stringlist class)


ReplaceImage is a member of the Stringlist class.

This callable method replaces a Stringlist item with the contents of an image.

Syntax

[%rc =] sl:ReplaceImage( itemNum, [imageName])

Syntax terms

%rc
A numeric variable that is set to 0 if the new item length is the same as the replaced item length, 1 if it is shorter, or 2 if it is longer.
%sl
A Stringlist object.
itemnum
The number of the item that the image is to replace.
imagename
A string that contains the name of an image. This is an optional argument if an image has been associated with the Stringlist via the BindImage (Stringlist function). Otherwise, it is a required argument.

Usage notes

  • All errors in ReplaceImage result in request cancellation.
  • ReplaceImage is extremely efficient if the Stringlist item size is not being changed (return value for Replace of 0), fairly efficient when a Stringlist item is being replaced with a shorter string (return value of 1), and can be fairly expensive when a Stringlist item is being replaced with a longer string (return value of 2). Replacement with a longer string can be expensive because it can result in the splitting of a Stringlist leaf page. Once a leaf page is split, it will not be merged back together, even if subsequent RemoveItem invocations make this possible. Because of this leaf-page splitting, heavy use of ReplaceImage calls that increase Stringlist item size (and Insert and RemoveItem) can result in "sparse" Stringlists which place an unnecessary burden on the buffer pool and CCATEMP. Such heavy use can also result in an inability to add an item to the end of the Stringlist (via Add) because of a full pointer page, even though the Stringlist is nowhere near the theoretical capacity for a Stringlist. Stringlist compression can be achieved using the CopyItems (Stringlist function).

Examples

The following example demonstrates how ReplaceImage can be used to maintain the last copy of an image for a particular ID in a Stringlist.

image cust
ssn is string len 10
name is string len 20
bdate is string len 8
end image
...
%list = new

repeat forever
read image cust
if $status then
loop end
end if
%n = %list:findImageItem(%cust:ssn)
if %n then
%list:replaceImage(%n, 'CUST')
else
%list:addimage('CUST')
end if
end repeat

Here is a neater and more efficient way of coding this:

%list:bindimage('CUST')

repeat forever
...
%n = %list:findImageItem(%cust:ssn)
if %n then
%list:replaceImage(%n)
else
%list:addimage
end if
end repeat

In this example, BindImage (Stringlist function) associates the image with the Stringlist, eliminating the need to specify the image name on the ReplaceImage.