Unit CastleClassUtils
Description
Basic classes and class utilities (for streams, strings, lists and such). Many utilities for classes that are defined in the Classes unit, and some classes of our my own.
Some notes about TStream descendants :
We call a stream "purely sequential" (or just "sequential") if it allows only reading and/or writing of data and does not allow free "Seek" calls, in particular — it does not allow Seek to move back in a stream.
We call a stream "growing" if it's read-only and it's purely sequential and it's Size property may be useless. In other words, when you read a "growing" stream, you don't know when it ends, until you reach the end. You just have to read data until Read returns 0.
Remember that to reliably detect end of the stream when you use TStream.Read, you have to test is ReadCount = 0. Merely testing that ReadCount < less than you requested is not enough, e.g. seen for THandleStream when handle is StdIn.
Uses
- Classes
- SysUtils
- Contnrs
- Generics.Collections
- CastleUtils
- CastleStringUtils
Overview
Classes, Interfaces, Objects and Records
Name | Description |
---|---|
Class TStringListCaseSens |
TStringList that is case sensitive. |
Class EStreamNotImplemented |
|
Class EStreamNotImplementedWrite |
|
Class EStreamNotImplementedSeek |
|
Class EStreamNotImplementedSetSize |
|
Class TPeekCharStream |
Abstract class to read another stream, always being able to back one character. |
Class TSimplePeekCharStream |
Read another stream, sequentially, always being able to back one character. |
Class TBufferedReadStream |
Read another stream, sequentially, always being able to back one character, and buffering it. |
Class TSerializationProcess |
Call methods of this class within TCastleComponent.CustomSerialization override. |
Class TCastleComponent |
Component with various CGE extensions: can be a parent of other non-visual components (to display them in CGE editor and serialize them to files), can be translated, can have custom logic when serializing/deserializing (CustomSerialization). |
Class TCastleObjectStack |
Extended TObjectStack for Castle Game Engine. |
Class TCastleObjectQueue |
Extended TObjectQueue for Castle Game Engine. |
Class TCastleObjectList |
Extended TObjectList for Castle Game Engine. |
Class TNotifyEventList |
|
Class TSimpleNotifyEventList |
|
Class TProcedureList |
|
Class TFreeNotificationObserver |
Observe when something is freed, and call an event then. |
Functions and Procedures
procedure StringsAdd(Strs: TStrings; Count: integer; itemVal: string='dummy'); overload; |
procedure AddStrArrayToStrings(const StrArr: array of string; strlist: TStrings); |
procedure Strings_AddSplittedString(Strings: TStrings; const S, Splitter: string); |
procedure Strings_SetText(SList: TStrings; const S: String); |
procedure Strings_Trim(Strings: TStrings; MaxCount: Cardinal); |
procedure WriteStr(const Stream: TStream; const S: AnsiString); overload; |
procedure WritelnStr(const Stream: TStream; const S: AnsiString); overload; |
procedure WriteStr(const S: AnsiString); overload; |
procedure WritelnStr(const S: AnsiString); overload; |
function StreamReadChar(Stream: TStream): AnsiChar; |
function StreamReadZeroEndString(Stream: TStream): AnsiString; |
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean; out endingChar: AnsiChar): AnsiString; overload; |
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean): AnsiString; overload; |
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars; out endingChar: AnsiChar): AnsiString; overload; |
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars): AnsiString; overload; |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean; out endingChar: integer): AnsiString; overload; |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean): AnsiString; overload; |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars; out endingChar: integer): AnsiString; overload; |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars): AnsiString; overload; |
procedure ReadGrowingStream(const GrowingStream, DestStream: TStream; const ResetDestStreamPosition: Boolean; const BufferSize: Cardinal = 10 * 1000); |
function ReadGrowingStreamToString(const GrowingStream: TStream): AnsiString; |
function ReadGrowingStreamToDefaultString(const GrowingStream: TStream): String; |
procedure StreamWriteString(const Stream: TStream; const S: AnsiString); |
function StreamReadString(const Stream: TStream): AnsiString; |
function StreamToString(const Stream: TStream): AnsiString; |
procedure MemoryStreamLoadFromString(const Stream: TMemoryStream; const S: AnsiString; const Rewind: boolean = true); overload; |
function MemoryStreamLoadFromString( const S: AnsiString; const Rewind: boolean = true): TMemoryStream; overload; |
procedure MemoryStreamLoadFromDefaultString(const Stream: TMemoryStream; const S: String; const Rewind: boolean = true); overload; |
function MemoryStreamLoadFromDefaultString( const S: String; const Rewind: boolean = true): TMemoryStream; overload; |
procedure CreateIfNeeded(var Component: TComponent; ComponentClass: TComponentClass; Owner: TComponent); |
procedure TranslateProperties(const C: TComponent; const TranslatePropertyEvent: TTranslatePropertyEvent); |
function DumpStackToString(const BaseFramePointer: Pointer): string; |
function DumpExceptionBackTraceToString: string; |
function ProposeComponentName(const ComponentClass: TComponentClass; const ComponentsOwner: TComponent; BaseName: String = ''): String; |
function InternalProposeName(const ComponentClass: TComponentClass; const ComponentsOwner: TComponent): String; deprecated 'use ProposeComponentName'; |
Types
TPropertySection = (...); |
TPropertySections = set of TPropertySection; |
TTranslatePropertyEvent = procedure (const Sender: TCastleComponent; const PropertyName: String; var PropertyValue: String) of object; |
TFreeNotificationEvent = procedure (const Sender: TFreeNotificationObserver) of object; |
Constants
DefaultReadBufferSize = 1024 * 1024; |
Variables
StdInStream: TStream; |
StdOutStream: TStream; |
StdErrStream: TStream; |
Description
Functions and Procedures
procedure StringsAdd(Strs: TStrings; Count: integer; itemVal: string='dummy'); overload; |
Add some strings. |
procedure AddStrArrayToStrings(const StrArr: array of string; strlist: TStrings); |
Add all strings from string array to TStrings instance. |
procedure Strings_AddSplittedString(Strings: TStrings; const S, Splitter: string); |
Splits S by Splitter, and adds each splitted part to Strings. Splitting is done by Splitter, i.e. if N is the number of occurrences of Splitter inside S, then it always adds N + 1 strings to Strings. Yes, this means that if S starts with Splitter then the first part is equal to ''. And if S ends with Splitter then the last oart is equal to ''. |
procedure Strings_SetText(SList: TStrings; const S: String); |
Use this instead of |
procedure Strings_Trim(Strings: TStrings; MaxCount: Cardinal); |
Make sure we don't have more than MaxCount strings on a list. Removes the last strings if necessary. |
procedure WriteStr(const Stream: TStream; const S: AnsiString); overload; |
Write string contents, encoded as 8-bit (UTF-8), to stream. Versions with "Ln" suffix append a newline. Versions without Stream parameter write to StdOutStream. Note: When compiled with Delphi, overloaded versions that take Delphi 16-bit String convert it to 8-bit AnsiString, and still write 8-bit. So the output stream contents are the same, in both FPC and Delphi. |
procedure WritelnStr(const Stream: TStream; const S: AnsiString); overload; |
This item has no description. |
procedure WriteStr(const S: AnsiString); overload; |
This item has no description. |
procedure WritelnStr(const S: AnsiString); overload; |
This item has no description. |
function StreamReadChar(Stream: TStream): AnsiChar; |
Read one character from stream. Exceptions raised
|
function StreamReadZeroEndString(Stream: TStream): AnsiString; |
This item has no description. |
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean; out endingChar: AnsiChar): AnsiString; overload; |
Read stream, until you find some character in EndingChars. Returns read contents, without final character (the one in EndingChars set). If you use a version with BackEndingChar parameter and pass BackEndingChar = Independently from BackEndingChar, if you use a version with EndingChar parameter, it will be set to the ending character.
Exceptions raised
|
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean): AnsiString; overload; |
This item has no description. |
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars; out endingChar: AnsiChar): AnsiString; overload; |
This item has no description. |
function StreamReadUpto_NotEOS(Stream: TStream; const endingChars: TSetOfChars): AnsiString; overload; |
This item has no description. |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean; out endingChar: integer): AnsiString; overload; |
Read stream, until you find some character in EndingChars, or end of stream. Compared to StreamReadUpto_NotEOS, this treats "end of stream" as a normal situation, and doesn't raise any exception on it. It sets EndingChar to -1 on end of stream. When EndingChar is not -1, you know you can safely cast it to normal 8-bit character. Everything else works like with StreamReadUpto_NotEOS. |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars; backEndingChar: boolean): AnsiString; overload; |
This item has no description. |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars; out endingChar: integer): AnsiString; overload; |
This item has no description. |
function StreamReadUpto_EOS(Stream: TStream; const endingChars: TSetOfChars): AnsiString; overload; |
This item has no description. |
procedure ReadGrowingStream(const GrowingStream, DestStream: TStream; const ResetDestStreamPosition: Boolean; const BufferSize: Cardinal = 10 * 1000); |
Read a growing stream, and append it to another destination stream. A "growing stream" is a stream that we can only read sequentially, no seeks allowed, and size is unknown until we hit the end. The only operation we do on GrowingStream is GrowingStream.Read and the only operation on DestStream is DestStream.WriteBuffer. So DestStream usually must be able to grow dynamically to accomodate any GrowingStream input size. This procedure ends when GrowingStream ends. If ResetDestStreamPosition then at the end we do DestStream.Position := 0 (since it is usually useful and it would be easy for you to forget about it). |
function ReadGrowingStreamToString(const GrowingStream: TStream): AnsiString; |
Read a growing stream, and returns it's contents as a string. A "growing stream" is a stream that we can only read sequentially, no seeks allowed, and size is unknown until we hit the end. Works on 8-bit strings, i.e. AnsiStrings. |
function ReadGrowingStreamToDefaultString(const GrowingStream: TStream): String; |
Read a growing stream, and returns it's contents as a string. A "growing stream" is a stream that we can only read sequentially, no seeks allowed, and size is unknown until we hit the end. Works with String, i.e. UTF-16 with Delphi, UTF-8 with FPC. |
procedure StreamWriteString(const Stream: TStream; const S: AnsiString); |
Encode / decode a string in a binary stream. Records string length (4 bytes), then the string contents (Length(S) bytes). Works on 8-bit strings, i.e. AnsiStrings. |
function StreamReadString(const Stream: TStream): AnsiString; |
This item has no description. |
function StreamToString(const Stream: TStream): AnsiString; |
Convert whole Stream to a string. Changes Stream.Position to 0 and then reads Stream.Size bytes, so be sure that Stream.Size is usable. Use ReadGrowingStreamToString if you want to read a stream where setting Position / reading Size are not reliable. Works on 8-bit strings, i.e. AnsiStrings. |
procedure MemoryStreamLoadFromString(const Stream: TMemoryStream; const S: AnsiString; const Rewind: boolean = true); overload; |
Set contents of TMemoryStream to given string, in UTF-8 encoding. If Rewind then the position is reset to the beginning, otherwise it stays at the end. Works on 8-bit strings, i.e. AnsiStrings. |
function MemoryStreamLoadFromString( const S: AnsiString; const Rewind: boolean = true): TMemoryStream; overload; |
This item has no description. |
procedure MemoryStreamLoadFromDefaultString(const Stream: TMemoryStream; const S: String; const Rewind: boolean = true); overload; |
Set contents of TMemoryStream to given string, in UTF-8 or UTF-16 (matching default String) encoding. If Rewind then the position is reset to the beginning, otherwise it stays at the end. On FPC, works with 8-bit strings (AnsiStrings) and is equivalent to MemoryStreamLoadFromString8. On Delphi, works with 16-bit strings (UnicodeString), so the resulting stream size is 2x larger. |
function MemoryStreamLoadFromDefaultString( const S: String; const Rewind: boolean = true): TMemoryStream; overload; |
This item has no description. |
procedure CreateIfNeeded(var Component: TComponent; ComponentClass: TComponentClass; Owner: TComponent); |
Create Component instance, if it's |
procedure TranslateProperties(const C: TComponent; const TranslatePropertyEvent: TTranslatePropertyEvent); |
Enumerate all properties that are possible to translate in this component and its children. E.g. in TCastleLabel it will return TCastleLabel.Caption, in TCastleEdit it will return TCastleEdit.Text and TCastleEdit.Placeholder. Returns only non-empty properties, thus assuming that if current (by convention, English) text is empty, then there is no point in translating it. Moreover descendants may define boolean properties to exclude particular text from translating, e.g. TCastleLabel.CaptionTranslate, TCastleEdit.TextTranslate, TCastleEdit.PlaceholderTranslate. For every TComponent it also recursively enumerates properties to translate in children, i.e. in all published subcomponents and children (returned by TCastleComponent.CustomSerialization). The goal is to be 100% consistent with CastleComponentSerialize, which is used to (de)serialize hierarchy of components (like TCastleUserInterface or TCastleTransform). You usually don't want to call this method (it is called by other engine routines). Use higher-level routines in CastleLocalizationGetText. See also
|
function DumpStackToString(const BaseFramePointer: Pointer): string; |
This item has no description. |
function DumpExceptionBackTraceToString: string; |
This item has no description. |
function ProposeComponentName(const ComponentClass: TComponentClass; const ComponentsOwner: TComponent; BaseName: String = ''): String; |
Propose a name for given component class, making it unique in given ComponentsOwner. If you provide non-empty BaseName, it will be used as component base name, and we will only add numeric suffix to make it unique. Make sure in this case that BaseName is a valid Pascal identifier. If you leave empty BaseName, we will use ComponentClass.ClassName to generate a useful base name. Again, we will add numeric suffix to make it unique. |
function InternalProposeName(const ComponentClass: TComponentClass; const ComponentsOwner: TComponent): String; deprecated 'use ProposeComponentName'; |
Warning: this symbol is deprecated: use ProposeComponentName This item has no description. |
Types
TPropertySection = (...); |
Used by TCastleComponent.PropertySections. Values
|
TPropertySections = set of TPropertySection; |
This item has no description. |
TTranslatePropertyEvent = procedure (const Sender: TCastleComponent; const PropertyName: String; var PropertyValue: String) of object; |
TFreeNotificationEvent = procedure (const Sender: TFreeNotificationObserver) of object; |
Notification from TFreeNotificationObserver. Note that it doesn't specify the freed component, because you can get it from |
Constants
DefaultReadBufferSize = 1024 * 1024; |
This item has no description. |
Variables
StdInStream: TStream; |
Streams to read/write a standard input/output/error of the program. Tip: to read the standard input as a text file, you can use TTextReader and StdInStream: var StdInReader: TTextReader; begin StdInReader := TTextReader.Create(StdInStream, false); try while not StdInReader.Eof do DoSomethingWithInputLine(StdInReader.Readln); finally FreeAndNil(StdinReader) end; end;
The advantage of using TTextReader above, compared to using the standard Pascal Notes only for Windows GUI applications:
) |
StdOutStream: TStream; |
Streams to read/write a standard input/output/error of the program. Tip: to read the standard input as a text file, you can use TTextReader and StdInStream: var StdInReader: TTextReader; begin StdInReader := TTextReader.Create(StdInStream, false); try while not StdInReader.Eof do DoSomethingWithInputLine(StdInReader.Readln); finally FreeAndNil(StdinReader) end; end;
The advantage of using TTextReader above, compared to using the standard Pascal Notes only for Windows GUI applications:
) |
StdErrStream: TStream; |
Streams to read/write a standard input/output/error of the program. Tip: to read the standard input as a text file, you can use TTextReader and StdInStream: var StdInReader: TTextReader; begin StdInReader := TTextReader.Create(StdInStream, false); try while not StdInReader.Eof do DoSomethingWithInputLine(StdInReader.Readln); finally FreeAndNil(StdinReader) end; end;
The advantage of using TTextReader above, compared to using the standard Pascal Notes only for Windows GUI applications:
) |
Generated by PasDoc 0.16.0-snapshot.