Difference between revisions of "Midware TMWBuffer"

From Overbyte
Jump to navigation Jump to search
Line 45: Line 45:
  
 
{|  
 
{|  
| width="140" valign="top" | [[Midware_TMWBuffer.DisconnectAll | DisconnectAll]] |||| Disconnect every connected client. Do not confuse with the [[Midware_TAppServ.Stop | Stop]] method.
+
| width="140" valign="top" | [[Midware_TMWBuffer.AppendMetaData | AppendMetaData]] |||| AppendMetaData will add variable length, general purpose meta data at the end of current field.
 
|-
 
|-
| valign="top" | [[Midware_TMWBuffer.Start | Start]] |||| The start procedure will start the server. The server will accept new client connections. See also [[Midware_TAppServ.Stop | Stop]].
+
| valign="top" | [[Midware_TMWBuffer.Assign | Assign]] |||| The Assign method copies data from a TMWBuffer component to another.
 
|-
 
|-
| valign="top" | [[Midware_TMWBuffer.Stop | Stop]] |||| The Stop procedure will stop the server which will no more accept new clients, but will not disconnect already connected clients. See also Start.
+
| valign="top" | [[Midware_TMWBuffer.AppendBinaryField | AppendBinaryField]] |||| Write binary data as field content.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.AppendFields | AppendFields]] |||| Append fields to the current record. See also WriteFields.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.AppendRecord | AppendRecord]] |||| Append a single record from another TMWBuffer.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.AppendStreamField | AppendStreamField]] |||| Append a stream field to current record. See also WriteStreamField.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.Delete | Delete]] |||| Delete the current record. Deleted records are physically lost.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.ExpandBuffer | ExpandBuffer]] |||| ExpandBuffer method check how much free space is left and will try to expand data buffer as needed.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.First | First]] |||| First method makes the first record the current one.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.FreeBookmark | FreeBookmark]] |||| Free resources used for bookmark keeping. See GetBookmark.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.GetBookmark | GetBookmark]] |||| Get a bookmark on current record.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.GetStreamField | GetStreamField]] |||| Get a stream (blob) field value from the buffer.
 +
|-
 +
| valign="top" | [[Midware_TMWBuffer.GotoBookmark | GotoBookmark]] |||| Return the current position to the bookmark setup by GetBookmark.
 
|}
 
|}

Revision as of 13:52, 5 May 2011

Main page -> Midware component reference -> TMWBuffer

Overview

unit RFormat.pas

TMWBuffer if a very important component in MidWare technology. TMWBuffer implement data storage and formatting for transmission. Data echanged between client and server is exactly TMWBuffer content, byte for byte.

TMWBuffer can be seen as a data table in memory. This table is organized as records made of variable field number, each field having a variable length.

TMWBuffer provides methods and properties to read, write and sort data. Data is stored in a very simple format: a buffer dynamically allocated from memory that contains all fields and records. Fields and records boundaries are marked with delimiters. If control characaters or delimiters are found within data, they are escaped. Three delimiters are used: escape delimiter, field delimiter and record delimiter. They are placed at start of buffer in order to consitute a kind of dictionnary.

Properties

AutoExpand AutoExpand property tells the component if the data buffer can be expanded when it is too short for the data that needs to be written to it.
Bof Bof property is TRUE when current position has reached begin of file.
DataBuffer Gives access to the underlaying data buffer.
DataBufferCount he size in bytes of the data present in the buffer.
DataBufferSize The size in bytes of the current buffer.
Eof Eof property is TRUE when current position has reached end of file.
FieldCount Returns the number of fields in the current record.
Fields The indexed Fields[] property gives access to the current record's fields.
FieldSize Return field size in bytes.
FieldType Read only indexed property returning filed type for a given field in current record.
HasData HasData property is TRUE when TMWBuffer contains data.
HeaderSize Size in byte of the header in the data buffer. Default to 0.
MetaData Read only indexed MetaData property gives access to the current record's meta data (application defined).
RecordCount Readonly property RecordCount retunrs the number of records stored in TMWBuffer. See also FieldCount.

Methods

AppendMetaData AppendMetaData will add variable length, general purpose meta data at the end of current field.
Assign The Assign method copies data from a TMWBuffer component to another.
AppendBinaryField Write binary data as field content.
AppendFields Append fields to the current record. See also WriteFields.
AppendRecord Append a single record from another TMWBuffer.
AppendStreamField Append a stream field to current record. See also WriteStreamField.
Delete Delete the current record. Deleted records are physically lost.
ExpandBuffer ExpandBuffer method check how much free space is left and will try to expand data buffer as needed.
First First method makes the first record the current one.
FreeBookmark Free resources used for bookmark keeping. See GetBookmark.
GetBookmark Get a bookmark on current record.
GetStreamField Get a stream (blob) field value from the buffer.
GotoBookmark Return the current position to the bookmark setup by GetBookmark.