DocBook|Search
Class Reference
%IO.StringStream
   
Server:basexml
Instance:SOAXML
User:UnknownUser
 
-
  [BASEXML] >  [%IO] >  [StringStream]
Private  Storage  

class %IO.StringStream extends %IO.I.CharacterSeekableStream

A stream class that uses a String for its storage. The underlying String may be in any supported encoding; Set the CharEncoding property to control the interpretation of the string. Note that on Unicode systems it is possible to use a string containing wide-character values. In this case the results of any encoding other than 'Native' are undefined.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
4 11


Summary

Properties
%TranslationTable AtEnd CharEncoding Data
DefaultFlushOnWrite ExternalBytePosition ExternalByteSize IsCharacter
IsOpen LineTerminator Name Position
Size

Methods
%%OIDGet %AddToSaveSet %ClassIsLatestVersion %ClassName
%ConstructClone %DispatchClassMethod %DispatchGetModified %DispatchGetProperty
%DispatchMethod %DispatchSetModified %DispatchSetMultidimProperty %DispatchSetProperty
%Extends %GetParameter %IsA %IsModified
%New %NormalizeObject %ObjectModified %OriginalNamespace
%PackageName %RemoveFromSaveSet %SerializeObject %SetModified
%ValidateObject CharEncodingSet Clear Close
CopyFrom CopyReplace CopyReplaceArray DefaultFlushOnWriteGet
ExternalByteSeek ExternalByteSizeGet ExternalByteTruncateAt Find
Flush InputFromDevice IsCharacterGet OutputToDevice
Read ReadLine ReadUntil ReadUntilArray
Rewind Seek SizeGet TruncateAt
Write WriteLine


Properties

• property %TranslationTable as %String(TRUNCATE=1) [ ReadOnly ];
cached value of the encoding translation table derived from CharEncoding
• property CharEncoding as %String(TRUNCATE=1) [ InitialExpression = "Native" ];
Names the character encoding used to encode this character stream in its storage or transport format A value of "Native" in this property means the stream is encoded in the native format for the local installation, with no translation done. Values of "RawBytes" or "Binary" mean that each character is represented by the corresponding byte in the external storage or transport format. (This property is overridden from %IO.IParts.ByteIO but has a different meaning in this character IO context.)
• property Data as %String(TRUNCATE=1) [ ReadOnly ];
Underlying encoded string data

Methods

• method CharEncodingSet(pCharEncoding As %String) as %Status
This is a Set accessor method for the CharEncoding property.
• method ExternalByteSeek(pBytePos As %Integer, Output pSC As %Status) as %Boolean
• method ExternalByteSizeGet() as %Integer
This is a Get accessor method for the ExternalByteSize property.
• method ExternalByteTruncateAt(pBytePos As %Integer, Output pSC As %Status) as %Boolean
• method Read(pMaxReadLen As %Integer, ByRef pTimeout As %Numeric, Output pSC As %Status) as %String
Read until pMaxReadLen chars are gotten or pTimeout expires On return, if pTimeout is unchanged it means the full timeout period expired. If the timeout period expired and the returned string is shorter than pMaxReadLen, then AtEnd will be 1.
• method ReadLine(pMaxReadLen As %Integer, ByRef pTimeout As %Numeric, Output pSC As %Status, ByRef pLineTerminator As %String = ..LineTerminator) as %String
Read until pMaxReadLen chars are gotten, pTimeout expires, or a LineTerminator character is found. On return, if pTimeout=0 it means no timeout occurred. If pTimeout=0 and the returned string contains the full pMaxReadLen characters, it means no LineTerminator was encountered yet, even if the following character would be a LineTerminator. If pTimeout=0 and the returned string is shorter than pMaxReadLen, then either a LineTerminator or the End Of Stream (AtEnd = 1) was encountered. If pLineTerminator is defined, then the line is read until one of the given characters is encountered. On return, pLineTerminator contains the encountered character(s) if any.
• method Seek(pPosition As %Integer = 1, Output pSC As %Status) as %Boolean
• method SizeGet() as %Integer
Return the current character size of the data stream.
• method TruncateAt(pPosition As %Integer, Output pSC As %Status) as %Boolean
• method Write(pData As %String = "", pFlush As %Boolean, Output pSC As %Status)
Write pData to the stream buffer. If pFlush is True, ensure that the data are actually sent to the stream.