Stream Go Reference Documentation

Stream

Current Version: 10.1.2

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

stream := chilkat.NewStream()
...
stream.DisposeStream()

Properties

AbortCurrent
func (stream *Stream) AbortCurrent() bool
func (stream *Stream) SetAbortCurrent(b bool)
Introduced in version 9.5.0.58

When set to true, 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 false when the next method is called. When the abort occurs, this property is reset to false. Both synchronous and asynchronous method calls can be aborted. (A synchronous method call could be aborted by setting this property from a separate thread.)

top
CanRead
func (stream *Stream) CanRead() bool
Introduced in version 9.5.0.56

true if the stream supports reading. Otherwise false.

Note: A stream that supports reading, which has already reached the end-of-stream, will still have a CanRead value of true. This property indicates the stream's inherent ability, and not whether or not the stream can be read at a particular moment in time.

top
CanWrite
func (stream *Stream) CanWrite() bool
Introduced in version 9.5.0.56

true if the stream supports writing. Otherwise false.

Note: A stream that supports writing, which has already been closed for write, will still have a CanWrite value of true. This property indicates the stream's inherent ability, and not whether or not the stream can be written at a particular moment in time.

top
DataAvailable
func (stream *Stream) DataAvailable() bool
Introduced in version 9.5.0.56

true if it is known for sure that data is ready and waiting to be read. false 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).

top
DebugLogFilePath
func (stream *Stream) DebugLogFilePath() string
func (stream *Stream) SetDebugLogFilePath(s string)

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
DefaultChunkSize
func (stream *Stream) DefaultChunkSize() int
func (stream *Stream) SetDefaultChunkSize(v int)
Introduced in version 9.5.0.56

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.

top
EndOfStream
func (stream *Stream) EndOfStream() bool
Introduced in version 9.5.0.56

true if the end-of-stream has already been reached. When the stream has already ended, all calls to Read* methods will return false with the ReadFailReason set to 3 (already at end-of-stream).

top
IsWriteClosed
func (stream *Stream) IsWriteClosed() bool
Introduced in version 9.5.0.56

true if the stream is closed for writing. Once closed, no more data may be written to the stream.

top
LastErrorHtml
func (stream *Stream) LastErrorHtml() string

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
func (stream *Stream) LastErrorText() string

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
func (stream *Stream) LastErrorXml() string

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
func (stream *Stream) LastMethodSuccess() bool
func (stream *Stream) SetLastMethodSuccess(b bool)

Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages.

top
Length
func (stream *Stream) Length() int64
func (stream *Stream) SetLength(v int64)
Introduced in version 9.5.0.56

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.

top
Length32
func (stream *Stream) Length32() int
func (stream *Stream) SetLength32(v int)
Introduced in version 9.5.0.58

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).

top
NumReceived
func (stream *Stream) NumReceived() int64
Introduced in version 9.5.0.56

The number of bytes received by the stream.

top
NumSent
func (stream *Stream) NumSent() int64
Introduced in version 9.5.0.56

The number of bytes sent by the stream.

top
ReadFailReason
func (stream *Stream) ReadFailReason() int
Introduced in version 9.5.0.56

This property is automatically set when a Read* method is called. It indicates the reason for failure. Possible values are:

  1. No failure (success)
  2. Timeout, or no data is immediately available for a polling read.
  3. Aborted by an application callback.
  4. Already at end-of-stream.
  5. Fatal stream error.
  6. Out-of-memory error (this is very unlikely).

top
ReadTimeoutMs
func (stream *Stream) ReadTimeoutMs() int
func (stream *Stream) SetReadTimeoutMs(v int)
Introduced in version 9.5.0.56

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.

top
SinkFile
func (stream *Stream) SinkFile() string
func (stream *Stream) SetSinkFile(s string)
Introduced in version 9.5.0.56

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.

top
SinkFileAppend
func (stream *Stream) SinkFileAppend() bool
func (stream *Stream) SetSinkFileAppend(b bool)
Introduced in version 9.5.0.83

If true, the stream appends to the SinkFile rather than truncating and re-writing the sink file. The default value is false.

top
SourceFile
func (stream *Stream) SourceFile() string
func (stream *Stream) SetSourceFile(s string)
Introduced in version 9.5.0.56

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.

top
SourceFilePart
func (stream *Stream) SourceFilePart() int
func (stream *Stream) SetSourceFilePart(v int)
Introduced in version 9.5.0.59

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.

More Information and Examples
top
SourceFilePartSize
func (stream *Stream) SourceFilePartSize() int
func (stream *Stream) SetSourceFilePartSize(v int)
Introduced in version 9.5.0.59

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.

More Information and Examples
top
StringBom
func (stream *Stream) StringBom() bool
func (stream *Stream) SetStringBom(b bool)
Introduced in version 9.5.0.56

If true, 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 true, then include the BOM when writing a string via the WriteString method. The default value of this property is false.

top
StringCharset
func (stream *Stream) StringCharset() string
func (stream *Stream) SetStringCharset(s string)
Introduced in version 9.5.0.56

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".

More Information and Examples
top
VerboseLogging
func (stream *Stream) VerboseLogging() bool
func (stream *Stream) SetVerboseLogging(b bool)

If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
func (stream *Stream) Version() string

Version of the component/library, such as "10.1.0"

More Information and Examples
top
WriteFailReason
func (stream *Stream) WriteFailReason() int
Introduced in version 9.5.0.56

This property is automatically set when a Write* method is called. It indicates the reason for failure. Possible values are:

  1. No failure (success)
  2. Timeout, or unable to immediately write when the WriteTimeoutMs is 0.
  3. Aborted by an application callback.
  4. The stream has already ended.
  5. Fatal stream error.
  6. Out-of-memory error (this is very unlikely).

top
WriteTimeoutMs
func (stream *Stream) WriteTimeoutMs() int
func (stream *Stream) SetWriteTimeoutMs(v int)
Introduced in version 9.5.0.56

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.

top

Methods

LoadTaskCaller
func (stream *Stream) LoadTaskCaller(task *Task) bool
Introduced in version 9.5.0.80

Loads the caller of the task's async method.

Returns true for success, false for failure.

top
ReadBd
func (stream *Stream) ReadBd(binData *BinData) bool
Introduced in version 9.5.0.67

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 true for success, false for failure.

More Information and Examples
top
ReadBdAsync (1)
func (stream *Stream) ReadBdAsync(binData *BinData, task chan *Task)
Introduced in version 9.5.0.67

Creates an asynchronous task to call the ReadBd method with the arguments provided.

Returns nil on failure

More Information and Examples
top
ReadBytes
func (stream *Stream) ReadBytes() []byte
Introduced in version 9.5.0.56

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 nil on failure

top
ReadBytesAsync (1)
func (stream *Stream) ReadBytesAsync(task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadBytes method with the arguments provided.

Returns nil on failure

top
ReadBytesENC
func (stream *Stream) ReadBytesENC(encoding string) *string
Introduced in version 9.5.0.56

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 nil on failure

More Information and Examples
top
ReadBytesENCAsync (1)
func (stream *Stream) ReadBytesENCAsync(encoding string, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadBytesENC method with the arguments provided.

Returns nil on failure

top
ReadNBytes
func (stream *Stream) ReadNBytes(numBytes int) []byte
Introduced in version 9.5.0.56

Reads exactly numBytes bytes from the stream. If no data is immediately available, it waits up to ReadTimeoutMs milliseconds for data to arrive.

Returns nil on failure

top
ReadNBytesAsync (1)
func (stream *Stream) ReadNBytesAsync(numBytes int, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadNBytes method with the arguments provided.

Returns nil on failure

top
ReadNBytesENC
func (stream *Stream) ReadNBytesENC(numBytes int, encoding string) *string
Introduced in version 9.5.0.56

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 nil on failure

More Information and Examples
top
ReadNBytesENCAsync (1)
func (stream *Stream) ReadNBytesENCAsync(numBytes int, encoding string, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadNBytesENC method with the arguments provided.

Returns nil on failure

top
ReadSb
func (stream *Stream) ReadSb(sb *StringBuilder) bool
Introduced in version 9.5.0.67

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 true for success, false for failure.

top
ReadSbAsync (1)
func (stream *Stream) ReadSbAsync(sb *StringBuilder, task chan *Task)
Introduced in version 9.5.0.67

Creates an asynchronous task to call the ReadSb method with the arguments provided.

Returns nil on failure

More Information and Examples
top
ReadString
func (stream *Stream) ReadString() *string
Introduced in version 9.5.0.56

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 nil on failure

top
ReadStringAsync (1)
func (stream *Stream) ReadStringAsync(task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadString method with the arguments provided.

Returns nil on failure

top
ReadToCRLF
func (stream *Stream) ReadToCRLF() *string
Introduced in version 9.5.0.56

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 nil on failure

top
ReadToCRLFAsync (1)
func (stream *Stream) ReadToCRLFAsync(task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadToCRLF method with the arguments provided.

Returns nil on failure

top
ReadUntilMatch
func (stream *Stream) ReadUntilMatch(matchStr string) *string
Introduced in version 9.5.0.56

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 nil on failure

top
ReadUntilMatchAsync (1)
func (stream *Stream) ReadUntilMatchAsync(matchStr string, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the ReadUntilMatch method with the arguments provided.

Returns nil on failure

top
Reset
func (stream *Stream) Reset()
Introduced in version 9.5.0.56

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.

top
SetSourceBytes
func (stream *Stream) SetSourceBytes(sourceData []byte) bool
Introduced in version 9.5.0.56

Sets the stream's source to the contents of sourceData.

Returns true for success, false for failure.

top
SetSourceString
func (stream *Stream) SetSourceString(srcStr string, charset string) bool
Introduced in version 9.5.0.56

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 true for success, false for failure.

top
WriteBd
func (stream *Stream) WriteBd(binData *BinData) bool
Introduced in version 9.5.0.67

Writes the contents of binData to the stream.

Returns true for success, false for failure.

top
WriteBdAsync (1)
func (stream *Stream) WriteBdAsync(binData *BinData, task chan *Task)
Introduced in version 9.5.0.67

Creates an asynchronous task to call the WriteBd method with the arguments provided.

Returns nil on failure

top
WriteByte
func (stream *Stream) WriteByte(byteVal int) bool
Introduced in version 9.5.0.56

Writes a single byte to the stream. The byteVal must have a value from 0 to 255.

Returns true for success, false for failure.

top
WriteByteAsync (1)
func (stream *Stream) WriteByteAsync(byteVal int, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteByte method with the arguments provided.

Returns nil on failure

top
WriteBytes
func (stream *Stream) WriteBytes(byteData []byte) bool
Introduced in version 9.5.0.56

Writes binary bytes to a stream.

Returns true for success, false for failure.

top
WriteBytesAsync (1)
func (stream *Stream) WriteBytesAsync(byteData []byte, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteBytes method with the arguments provided.

Returns nil on failure

top
WriteBytesENC
func (stream *Stream) WriteBytesENC(byteData string, encoding string) bool
Introduced in version 9.5.0.56

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 true for success, false for failure.

More Information and Examples
top
WriteBytesENCAsync (1)
func (stream *Stream) WriteBytesENCAsync(byteData string, encoding string, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteBytesENC method with the arguments provided.

Returns nil on failure

top
WriteClose
func (stream *Stream) WriteClose() bool
Introduced in version 9.5.0.56

Indicates that no more data will be written to the stream.

Returns true for success, false for failure.

top
WriteSb
func (stream *Stream) WriteSb(sb *StringBuilder) bool
Introduced in version 9.5.0.67

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 true for success, false for failure.

top
WriteSbAsync (1)
func (stream *Stream) WriteSbAsync(sb *StringBuilder, task chan *Task)
Introduced in version 9.5.0.67

Creates an asynchronous task to call the WriteSb method with the arguments provided.

Returns nil on failure

top
WriteString
func (stream *Stream) WriteString(str string) bool
Introduced in version 9.5.0.56

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 true for success, false for failure.

top
WriteStringAsync (1)
func (stream *Stream) WriteStringAsync(str string, task chan *Task)
Introduced in version 9.5.0.56

Creates an asynchronous task to call the WriteString method with the arguments provided.

Returns nil on failure

top