Stream Lazarus Pascal Reference Documentation
Stream
Current Version: 11.6.0
Chilkat.Stream
Stream from a source file, byte array, string, or selected file part
without manually loading or copying all data first.
Write streamed data to a sink file, append to an existing file, or output
to
Read or write raw bytes, fixed byte counts, encoded byte strings,
individual bytes, or
Read and write strings using
Control read and write wait behavior, poll for immediately available
data, and inspect read or write failure reasons.
Track bytes sent and received, detect end-of-stream or write-closed
state, reset streams, close writing, and abort long-running operations.
Read, write, pipe, monitor, and control byte or text streams.
Chilkat.Stream is a general-purpose streaming object for moving
data between sources and sinks without requiring the entire payload to be
handled at once. A stream can read from files, byte arrays, strings, or other
sources; write to files, memory, BinData,
StringBuilder, or other sinks; handle binary and text data;
apply character-set rules for strings; process file parts; track bytes sent
and received; and support timeouts, polling, aborts, async task integration,
and end-of-stream handling.
File and memory sources
File and object sinks
BinData, StringBuilder, bytes, or strings.
Binary reads and writes
BinData content.
Text streaming
StringCharset, optionally use a
BOM, and read text until CRLF or a matching delimiter.
Timeouts and polling
Progress and lifecycle
BinData, or
StringBuilder. Check EndOfStream,
ReadFailReason, WriteFailReason,
NumReceived, NumSent, and
LastErrorText to understand stream progress and failures.
ReadTimeoutMs, a value of 0 means a polling
read, not an infinite timeout. For WriteTimeoutMs,
0 means return immediately if the stream cannot be written to
right away.
Create / Free
uses
Chilkat.Stream;
var
obj: TStream;
begin
obj := TStream.Create;
try
if not obj.IsValid then
raise Exception.Create('Failed to create a TStream instance.');
// ... use obj ...
finally
obj.Free;
end;
end;
Allocates the underlying CkStream object and returns a new TStream instance. Simply adding Chilkat.Stream to the unit's uses clause is enough to locate and bind to the Chilkat shared library (DLL / .so / .dylib) at runtime — no separate load step is required. Check obj.IsValid after calling Create; it is False if the underlying library could not be found/loaded or the object could not be allocated (for example, when unlicensed).
Every TStream created by calling Create should eventually be released by calling .Free (inherited from TObject). The destructor automatically disposes the underlying CkStream handle. A native (unmanaged) memory leak occurs if the object is never freed.
Properties
AbortCurrent
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.)
CanRead
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.
CanWrite
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.
DataAvailable
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).
DebugLogFilePath
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.
DefaultChunkSize
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
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).
HeartbeatMs
The interval in milliseconds between each AbortCheck event callback, which enables an application to abort certain method calls before they complete. By default, HeartbeatMs is set to 0, meaning no AbortCheck event callbacks will trigger.
IsWriteClosed
True if the stream is closed for writing. Once closed, no more data may be written to the stream.
LastErrorHtml
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.
topLastErrorText
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.
LastErrorXml
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.
topLastMethodSuccess
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. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.
Length
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
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
The number of bytes received by the stream.
topNumSent
The number of bytes sent by the stream.
topReadFailReason
This property is automatically set when a Read* method is called. It indicates the reason for failure. Possible values are:
- 0>
- 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
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
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.
topSinkFileAppend
If True, the stream appends to the SinkFile rather than truncating and re-writing the sink file. The default value is False.
SourceFile
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.
topSourceFilePart
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
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
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.
StringCharset
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.
VerboseLogging
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.
Version
WriteFailReason
This property is automatically set when a Write* method is called. It indicates the reason for failure. Possible values are:
- 0>
- 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
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
function LoadTaskCaller(task: TChilkatBase): Boolean;
ReadBd
function ReadBd(binData: TChilkatBase): Boolean;
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.
topReadBytesENC
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 True for success, False for failure.
ReadNBytesENC
const encoding: string): string;
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 True for success, False for failure.
ReadSb
function ReadSb(sb: TChilkatBase): Boolean;
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.
topReadString
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 True for success, False for failure.
topReadToCRLF
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 True for success, False for failure.
topReadUntilMatch
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 True for success, False for 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.
topSetSourceString
const charset: string): Boolean;
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.
topWriteBd
function WriteBd(binData: TChilkatBase): Boolean;
WriteByte
Writes a single byte to the stream. The byteVal must have a value from 0 to 255.
Returns True for success, False for failure.
topWriteBytesENC
const encoding: string): Boolean;
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.
WriteClose
Indicates that no more data will be written to the stream.
Returns True for success, False for failure.
topWriteSb
function WriteSb(sb: TChilkatBase): Boolean;
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.
topWriteString
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.
topEvents
Chilkat for Pascal supports three synchronous event callbacks: OnAbortCheck, OnPercentDone, and OnProgressInfo. Each is a property of the class; assign a method of one of your own objects (an of object handler) to receive the callbacks, or assign nil to unhook. The handler types are declared in the Chilkat.Base unit:
TChilkatAbortCheckEvent = function(Sender: TChilkatBase): Boolean of object;
TChilkatPercentDoneEvent = function(Sender: TChilkatBase; PctDone: Integer): Boolean of object;
TChilkatProgressInfoEvent = procedure(Sender: TChilkatBase; const Name, Value: string) of object;All Chilkat methods are synchronous, so callbacks are invoked on the thread that called the method -- if the method was called from the main thread, it is safe to access UI elements from the handler. The HeartbeatMs property controls the frequency of OnAbortCheck callbacks (the default of 0 means no AbortCheck events fire). Returning True from an OnAbortCheck or OnPercentDone handler aborts the running method.
AbortCheck
property OnAbortCheck: TChilkatAbortCheckEvent;
Enables a method call to be aborted by triggering the AbortCheck event at intervals defined by the HeartbeatMs property. If HeartbeatMs is set to its default value of 0, no events will occur. For instance, set HeartbeatMs to 200 to trigger 5 AbortCheck events per second.
Event callback implementation:
// A handler is a method of one of your own classes, e.g. a form:
function TMyObject.StreamAbortCheck(Sender: TChilkatBase): Boolean;
begin
// Called every HeartbeatMs milliseconds while a method is running.
// Return True to abort the method; return False to continue.
Result := False;
end;To add an event handler:
stream := TStream.Create;
stream.HeartbeatMs := 250; // fire OnAbortCheck 4 times per second
stream.OnAbortCheck := MyObject.StreamAbortCheck;PercentDone
property OnPercentDone: TChilkatPercentDoneEvent;
This provides the percentage completion for any method involving network communications or time-consuming processing, assuming the progress can be measured as a percentage. This event is triggered only when it's possible and logical to express the operation's progress as a percentage. The pctDone argument will range from 1 to 100. For methods that finish quickly, the number of PercentDone callbacks may vary, but the final callback will have pctDone equal to 100. For longer operations, callbacks will not exceed one per percentage point (e.g., 1, 2, 3, ..., 98, 99, 100).
The PercentDone callback also acts as an AbortCheck event. For fast methods where PercentDone fires, an AbortCheck event may not trigger since the PercentDone callback already provides an opportunity to abort. For longer operations, where time between PercentDone callbacks is extended, AbortCheck callbacks enable more responsive operation termination.
To abort the operation, set the abort output argument to True. This will cause the method to terminate and return a failure status or corresponding failure value.
Event callback implementation:
// A handler is a method of one of your own classes, e.g. a form:
function TMyObject.StreamPercentDone(Sender: TChilkatBase; PctDone: Integer): Boolean;
begin
// PctDone ranges from 1 to 100.
WriteLn('Percent done: ', PctDone);
// Return True to abort the method; return False to continue.
Result := False;
end;To add an event handler:
stream := TStream.Create;
stream.OnPercentDone := MyObject.StreamPercentDone;ProgressInfo
property OnProgressInfo: TChilkatProgressInfoEvent;
This event callback provides tag name/value pairs that detail what occurs during a method call. To discover existing tag names, create code to handle the event, emit the pairs, and review them. Most tag names are self-explanatory.
Note: Some Chilkat methods don't fire any ProgressInfo events.
Event callback implementation:
// A handler is a method of one of your own classes, e.g. a form:
procedure TMyObject.StreamProgressInfo(Sender: TChilkatBase; const Name, Value: string);
begin
WriteLn(Name, ': ', Value);
end;To add an event handler:
stream := TStream.Create;
stream.OnProgressInfo := MyObject.StreamProgressInfo;