Stream Tcl Reference Documentation
Stream
Current Version: 10.0.0
Provides a generic class for streaming from a source to a sink. Streams can be connected together where the sink of one feeds to the source of another.
Note: This class was added in Chilkat v9.5.0.56. Initially it will seem somewhat useless, but over time, streaming functionality will be added to existing Chilkat classes and will be prevalent in new Chilkat classes.
Object Creation
set myStream [new CkStream]
Properties
AbortCurrent
set boolVal [CkStream_get_AbortCurrent $myStream]
CkStream_put_AbortCurrent $myStream $boolVal
When set to 1, causes the currently running method to abort. Methods that always finish quickly (i.e.have no length file operations or network communications) are not affected. If no method is running, then this property is automatically reset to 0 when the next method is called. When the abort occurs, this property is reset to 0. Both synchronous and asynchronous method calls can be aborted. (A synchronous method call could be aborted by setting this property from a separate thread.)
topCanRead
set boolVal [CkStream_get_CanRead $myStream]
1 if the stream supports reading. Otherwise 0.
Note: A stream that supports reading, which has already reached the end-of-stream, will still have a CanRead value of 1. This property indicates the stream's inherent ability, and not whether or not the stream can be read at a particular moment in time.
topCanWrite
set boolVal [CkStream_get_CanWrite $myStream]
1 if the stream supports writing. Otherwise 0.
Note: A stream that supports writing, which has already been closed for write, will still have a CanWrite value of 1. This property indicates the stream's inherent ability, and not whether or not the stream can be written at a particular moment in time.
topDataAvailable
set boolVal [CkStream_get_DataAvailable $myStream]
1 if it is known for sure that data is ready and waiting to be read. 0 if it is not known for sure (it may be that data is immediately available, but reading the stream with a ReadTimeoutMs of 0, which is to poll the stream, is the way to find out).
topDebugLogFilePath
# ckStr is a CkString
CkStream_get_DebugLogFilePath $myStream $ckStr
set strVal [CkStream_get_debugLogFilePath $myStream]
CkStream_put_DebugLogFilePath $myStream $strVal
If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.
This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:
- a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
- the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
- there is an internal problem (bug) in the Chilkat code that causes the hang.
DefaultChunkSize
set intVal [CkStream_get_DefaultChunkSize $myStream]
CkStream_put_DefaultChunkSize $myStream $intVal
The default internal chunk size for reading or writing. The default value is 65536. If this property is set to 0, it will cause the default chunk size (65536) to be used. Note: The chunk size can have significant performance impact. If performance is an issue, be sure to experiment with different chunk sizes.
topEndOfStream
set boolVal [CkStream_get_EndOfStream $myStream]
1 if the end-of-stream has already been reached. When the stream has already ended, all calls to Read* methods will return 0 with the ReadFailReason set to 3 (already at end-of-stream).
topIsWriteClosed
set boolVal [CkStream_get_IsWriteClosed $myStream]
1 if the stream is closed for writing. Once closed, no more data may be written to the stream.
topLastErrorHtml
# ckStr is a CkString
CkStream_get_LastErrorHtml $myStream $ckStr
set strVal [CkStream_get_lastErrorHtml $myStream]
Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.
topLastErrorText
# ckStr is a CkString
CkStream_get_LastErrorText $myStream $ckStr
set strVal [CkStream_get_lastErrorText $myStream]
Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.
LastErrorXml
# ckStr is a CkString
CkStream_get_LastErrorXml $myStream $ckStr
set strVal [CkStream_get_lastErrorXml $myStream]
Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.
topLastMethodSuccess
set boolVal [CkStream_get_LastMethodSuccess $myStream]
CkStream_put_LastMethodSuccess $myStream $boolVal
Indicate whether the last method call succeeded or failed. A value of 1 indicates success, a value of 0 indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:
- Any method that returns a string.
- Any method returning a Chilkat object, binary bytes, or a date/time.
- Any method returning a standard boolean status value where success = 1 and failure = 0.
- Any method returning an integer where failure is defined by a return value less than zero.
Note: Methods that do not fit the above requirements will always set this property equal to 1. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.
topLength
set int64Val [CkStream_get_Length $myStream]
CkStream_put_Length $myStream $int64Val
The length (in bytes) of the stream's source. If unknown, then this property will have a value of -1. This property may be set by the application if it knows in advance the length of the stream.
topLength32
set intVal [CkStream_get_Length32 $myStream]
CkStream_put_Length32 $myStream $intVal
The length (in bytes) of the stream's source. If unknown, then this property will have a value of -1. This property may be set by the application if it knows in advance the length of the stream.
Setting this property also sets the Length property (which is a 64-bit integer).
topNumReceived
set int64Val [CkStream_get_NumReceived $myStream]
The number of bytes received by the stream.
topNumSent
set int64Val [CkStream_get_NumSent $myStream]
The number of bytes sent by the stream.
topReadFailReason
set intVal [CkStream_get_ReadFailReason $myStream]
This property is automatically set when a Read* method is called. It indicates the reason for failure. Possible values are:
- No failure (success)
- Timeout, or no data is immediately available for a polling read.
- Aborted by an application callback.
- Already at end-of-stream.
- Fatal stream error.
- Out-of-memory error (this is very unlikely).
ReadTimeoutMs
set intVal [CkStream_get_ReadTimeoutMs $myStream]
CkStream_put_ReadTimeoutMs $myStream $intVal
The maximum number of seconds to wait while reading. The default value is 30 seconds (i.e. 30000ms). A value of 0 indicates a poll. (A polling read is to return with a timeout if no data is immediately available.)
Important: For most Chilkat timeout related properties, a value of 0 indicates an infinite timeout. For this property, a value of 0 indicates a poll. If setting a timeout related property (or method argument) to zero, be sure to understand if 0 means "wait forever" or "poll".
The timeout value is not a total timeout. It is the maximum time to wait while no additional data is forthcoming.
topSinkFile
# ckStr is a CkString
CkStream_get_SinkFile $myStream $ckStr
set strVal [CkStream_get_sinkFile $myStream]
CkStream_put_SinkFile $myStream $strVal
Sets the sink to the path of a file. The file does not need to exist at the time of setting this property. The sink file will be automatically opened on demand, when the stream is first written.
Note: This property takes priority over other potential sinks. Make sure this property is set to an empty string if the stream's sink is to be something else.
SinkFileAppend
set boolVal [CkStream_get_SinkFileAppend $myStream]
CkStream_put_SinkFileAppend $myStream $boolVal
If 1, the stream appends to the SinkFile rather than truncating and re-writing the sink file. The default value is 0.
topSourceFile
# ckStr is a CkString
CkStream_get_SourceFile $myStream $ckStr
set strVal [CkStream_get_sourceFile $myStream]
CkStream_put_SourceFile $myStream $strVal
Sets the source to the path of a file. The file does not need to exist at the time of setting this property. The source file will be automatically opened on demand, when the stream is first read.
Note: This property takes priority over other potential sources. Make sure this property is set to an empty string if the stream's source is to be something else.
SourceFilePart
set intVal [CkStream_get_SourceFilePart $myStream]
CkStream_put_SourceFilePart $myStream $intVal
If the source is a file, then this property can be used to stream one part of the file. The SourceFilePartSize property defines the size (in bytes) of each part. The SourceFilePart and SourceFilePartSize have default values of 0, which means the entire SourceFile is streamed.
This property is a 0-based index. For example, if the SourceFilePartSize is 1000, then part 0 is for bytes 0 to 999, part 1 is for bytes 1000 to 1999, etc.
SourceFilePartSize
set intVal [CkStream_get_SourceFilePartSize $myStream]
CkStream_put_SourceFilePartSize $myStream $intVal
If the source is a file, then this property, in conjunction with the SourceFilePart property, can be used to stream a single part of the file. This property defines the size (in bytes) of each part. The SourceFilePart and SourceFilePartSize have default values of 0, which means that by default, the entire SourceFile is streamed.
StringBom
set boolVal [CkStream_get_StringBom $myStream]
CkStream_put_StringBom $myStream $boolVal
If 1, then include the BOM when creating a string source via SetSourceString where the charset is utf-8, utf-16, etc. (The term "BOM" stands for Byte Order Mark, also known as the preamble.) Also, if 1, then include the BOM when writing a string via the WriteString method. The default value of this property is 0.
topStringCharset
# ckStr is a CkString
CkStream_get_StringCharset $myStream $ckStr
set strVal [CkStream_get_stringCharset $myStream]
CkStream_put_StringCharset $myStream $strVal
Indicates the expected character encoding, such as utf-8, windows-1256, utf-16, etc. for methods that read text such as: ReadString, ReadToCRLF, ReadUntilMatch. Also controls the character encoding when writing strings with the WriteString method. The supported charsets are indicated at the link below.
The default value is "utf-8".
Utf8
set boolVal [CkStream_get_Utf8 $myStream]
CkStream_put_Utf8 $myStream $boolVal
When set to 1, all "const char *" arguments are interpreted as utf-8 strings. If set to 0 (the default), then "const char *" arguments are interpreted as ANSI strings. Also, when set to 1, and Chilkat method returning a "const char *" is returning the utf-8 representation. If set to 0, all "const char *" return values are ANSI strings.
topVerboseLogging
set boolVal [CkStream_get_VerboseLogging $myStream]
CkStream_put_VerboseLogging $myStream $boolVal
If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
topVersion
# ckStr is a CkString
CkStream_get_Version $myStream $ckStr
set strVal [CkStream_get_version $myStream]
WriteFailReason
set intVal [CkStream_get_WriteFailReason $myStream]
This property is automatically set when a Write* method is called. It indicates the reason for failure. Possible values are:
- No failure (success)
- Timeout, or unable to immediately write when the WriteTimeoutMs is 0.
- Aborted by an application callback.
- The stream has already ended.
- Fatal stream error.
- Out-of-memory error (this is very unlikely).
WriteTimeoutMs
set intVal [CkStream_get_WriteTimeoutMs $myStream]
CkStream_put_WriteTimeoutMs $myStream $intVal
The maximum number of seconds to wait while writing. The default value is 30 seconds (i.e. 30000ms). A value of 0 indicates to return immediately if it is not possible to write to the sink immediately.
topMethods
LoadTaskCaller
set status [CkStream_LoadTaskCaller $task]
ReadBd
set status [CkStream_ReadBd $binData]
Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The incoming data is appended to binData.
Returns 1 for success, 0 for failure.
ReadBdAsync (1)
# binData is a CkBinData
set ret_task [CkStream_ReadBdAsync $binData]
Creates an asynchronous task to call the ReadBd method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
ReadBytes
Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive.
Returns 1 for success, 0 for failure.
topReadBytesAsync (1)
set ret_task [CkStream_ReadBytesAsync]
Creates an asynchronous task to call the ReadBytes method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topReadBytesENC
# outStr is a CkString (output)
set status [CkStream_ReadBytesENC $encoding $outStr]
set retStr [CkStream_readBytesENC $myStream $encoding]
The same as ReadBytes, except returns the received bytes in encoded string form. The encoding argument indicates the encoding, which can be "base64", "hex", or any of the multitude of encodings indicated in the link below.
Returns 1 for success, 0 for failure.
ReadBytesENCAsync (1)
# encoding is a string
set ret_task [CkStream_ReadBytesENCAsync $encoding]
Creates an asynchronous task to call the ReadBytesENC method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topReadNBytes
# outBytes is a CkByteData (output)
set status [CkStream_ReadNBytes $numBytes $outData]
Reads exactly numBytes bytes from the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive.
Returns 1 for success, 0 for failure.
topReadNBytesAsync (1)
# numBytes is an integer
set ret_task [CkStream_ReadNBytesAsync $numBytes]
Creates an asynchronous task to call the ReadNBytes method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topReadNBytesENC
# encoding is a string
# outStr is a CkString (output)
set status [CkStream_ReadNBytesENC $numBytes $encoding $outStr]
set retStr [CkStream_readNBytesENC $myStream $numBytes $encoding]
The same as ReadNBytes, except returns the received bytes in encoded string form. The encoding argument indicates the encoding, which can be "base64", "hex", or any of the multitude of encodings indicated in the link below.
Returns 1 for success, 0 for failure.
ReadNBytesENCAsync (1)
# numBytes is an integer
# encoding is a string
set ret_task [CkStream_ReadNBytesENCAsync $numBytes $encoding]
Creates an asynchronous task to call the ReadNBytesENC method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topReadSb
set status [CkStream_ReadSb $sb]
Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is appended to sb. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadSb.
Returns 1 for success, 0 for failure.
topReadSbAsync (1)
# sb is a CkStringBuilder
set ret_task [CkStream_ReadSbAsync $sb]
Creates an asynchronous task to call the ReadSb method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
ReadString
set status [CkStream_ReadString $outStr]
set retStr [CkStream_readString $myStream]
Read as much data as is immediately available on the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is returned as a string. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadString.
Returns 1 for success, 0 for failure.
topReadStringAsync (1)
set ret_task [CkStream_ReadStringAsync]
Creates an asynchronous task to call the ReadString method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topReadToCRLF
set status [CkStream_ReadToCRLF $outStr]
set retStr [CkStream_readToCRLF $myStream]
Reads the stream until a CRLF is received. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is returned as a string. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadString.
Note: If the end-of-stream is reached prior to receiving the CRLF, then the remaining data is returned, and the ReadFailReason property will be set to 3 (to indicate end-of-file). This is the only case where as string would be returned that does not end with CRLF.
Returns 1 for success, 0 for failure.
topReadToCRLFAsync (1)
set ret_task [CkStream_ReadToCRLFAsync]
Creates an asynchronous task to call the ReadToCRLF method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topReadUntilMatch
# outStr is a CkString (output)
set status [CkStream_ReadUntilMatch $matchStr $outStr]
set retStr [CkStream_readUntilMatch $myStream $matchStr]
Reads the stream until the string indicated by matchStr is received. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive. The data is returned as a string. The incoming bytes are interpreted according to the StringCharset property. For example, if utf-8 bytes are expected, then StringCharset should be set to "utf-8" prior to calling ReadString.
Note: If the end-of-stream is reached prior to receiving the match string, then the remaining data is returned, and the ReadFailReason property will be set to 3 (to indicate end-of-file). This is the only case where as string would be returned that does not end with the desired match string.
Returns 1 for success, 0 for failure.
ReadUntilMatchAsync (1)
# matchStr is a string
set ret_task [CkStream_ReadUntilMatchAsync $matchStr]
Creates an asynchronous task to call the ReadUntilMatch method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topReset
Resets the stream. If a source or sink is open, then it is closed. Properties such as EndOfStream and IsWriteClose are reset to default values.
topSetSourceBytes
SetSourceString
# charset is a string
set status [CkStream_SetSourceString $srcStr $charset]
Sets the stream's source to the contents of srcStr. The charset indicates the character encoding to be used for the byte representation of the srcStr.
Returns 1 for success, 0 for failure.
topWriteBd
set status [CkStream_WriteBd $binData]
WriteBdAsync (1)
# binData is a CkBinData
set ret_task [CkStream_WriteBdAsync $binData]
Creates an asynchronous task to call the WriteBd method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteByte
set status [CkStream_WriteByte $byteVal]
Writes a single byte to the stream. The byteVal must have a value from 0 to 255.
Returns 1 for success, 0 for failure.
topWriteByteAsync (1)
# byteVal is an integer
set ret_task [CkStream_WriteByteAsync $byteVal]
Creates an asynchronous task to call the WriteByte method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteBytes
WriteBytesAsync (1)
Creates an asynchronous task to call the WriteBytes method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteBytesENC
# encoding is a string
set status [CkStream_WriteBytesENC $byteData $encoding]
Writes binary bytes to a stream. The byte data is passed in encoded string form, where the encoding can be "base64", "hex", or any of the supported binary encodings listed at the link below.
Returns 1 for success, 0 for failure.
WriteBytesENCAsync (1)
# byteData is a string
# encoding is a string
set ret_task [CkStream_WriteBytesENCAsync $byteData $encoding]
Creates an asynchronous task to call the WriteBytesENC method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteClose
WriteSb
set status [CkStream_WriteSb $sb]
Writes the contents of sb to the stream. The actual bytes written are the byte representation of the string as indicated by the StringCharset property. For example, to write utf-8 bytes, first set StringCharset equal to "utf-8" and then call WriteSb.
Returns 1 for success, 0 for failure.
topWriteSbAsync (1)
# sb is a CkStringBuilder
set ret_task [CkStream_WriteSbAsync $sb]
Creates an asynchronous task to call the WriteSb method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
topWriteString
set status [CkStream_WriteString $str]
Writes a string to a stream. The actual bytes written are the byte representation of the string as indicated by the StringCharset property. For example, to write utf-8 bytes, first set StringCharset equal to "utf-8" and then call WriteString.
Returns 1 for success, 0 for failure.
topWriteStringAsync (1)
# str is a string
set ret_task [CkStream_WriteStringAsync $str]
Creates an asynchronous task to call the WriteString method with the arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
Returns NULL on failure
top