BinData Delphi DLL Reference Documentation
BinData
Current Version: 10.0.0
Container for binary data. Provides methods for getting, setting, appending, etc. in binary and string encoded formats.
Create/Dispose
var myObject: HCkBinData; begin myObject := CkBinData_Create(); // ... CkBinData_Dispose(myObject); end;
Creates an instance of the HCkBinData object and returns a handle (i.e. a Pointer). The handle is passed in the 1st argument for the functions listed on this page.
Objects created by calling CkBinData_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function.
Properties
LastMethodSuccess
procedure CkBinData_putLastMethodSuccess(objHandle: HCkBinData; newPropVal: wordbool); stdcall;
Indicate whether the last method call succeeded or failed. A value of True indicates success, a value of False 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 = True and failure = False.
- 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 True. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.
topNumBytes
The number of bytes contained within the object.
topMethods
AppendBd
binData: HCkBinData): wordbool; stdcall;
Appends the contents of another BinData to this object.
Returns True for success, False for failure.
topAppendBinary
Appends binary data to the current contents, if any.
Returns True for success, False for failure.
topAppendBinary2
pByteData: pbyte;
szByteData: LongWord): wordbool; stdcall;
Appends binary data to the current contents, if any.
Returns True for success, False for failure.
AppendBom
charset: PWideChar): wordbool; stdcall;
Appends the appropriate BOM (byte order mark), also known as a "preamble", for the given charset. If the charset has no defined BOM, then nothing is appended. An application would typically call this to append the utf-8, utf-16, or utf-32 BOM.
Returns True for success, False for failure.
AppendByte
byteValue: Integer): wordbool; stdcall;
Appends a single byte. The byteValue should be a value from 0 to 255.
Returns True for success, False for failure.
topAppendCountedString
numCountBytes: Integer;
bigEndian: wordbool;
str: PWideChar;
charset: PWideChar): wordbool; stdcall;
Appends a byte count followed by the string in the desired character encoding, such as "utf-8". The numCountBytes is the size in bytes of the integer to represent the byte count. If 0, then a minimal number of bytes is used. If bigEndian is True, the byte count is appended in big endian byte ordering, otherwise little-ending byte ordering. The str is the string to be appended. The charset is the character encoding, such as "utf-8", "utf-16", "windows-1252", etc.
Returns True for success, False for failure.
topAppendEncoded
encData: PWideChar;
encoding: PWideChar): wordbool; stdcall;
Appends encoded binary data to the current data. The encoding may be "Base64", "modBase64", "base64Url", "Base32", "Base58", "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", or any of the encodings found at Chilkat Binary Encodings List.
Returns True for success, False for failure.
AppendEncodedSb
sb: HCkStringBuilder;
encoding: PWideChar): wordbool; stdcall;
Decodes the contents of sb and appends the decoded bytes to this object. The encoding may be "Base64", "modBase64", "base64Url", "Base32", "Base58", "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", or any of the encodings found at Chilkat Binary Encodings List.
Returns True for success, False for failure.
AppendInt2
value: Integer;
littleEndian: wordbool): wordbool; stdcall;
Appends a 16-bit integer (2 bytes). If littleEndian is True, then the integer bytes are appended in little-endian byte order, otherwise big-endian byte order is used.
Returns True for success, False for failure.
AppendInt4
value: Integer;
littleEndian: wordbool): wordbool; stdcall;
Appends a 32-bit integer (4 bytes). If littleEndian is True, then the integer bytes are appended in little-endian byte order, otherwise big-endian byte order is used.
Returns True for success, False for failure.
AppendPadded
str: PWideChar;
charset: PWideChar;
padWithSpace: wordbool;
fieldLen: Integer): wordbool; stdcall;
Appends a string to this object, padded to the fieldLen with NULL or SPACE chars. If padWithSpace is True, then SPACE chars are used and the string is not null-terminated. If fieldLen is False, then null bytes are used. The charset controls the byte representation to use, such as "utf-8".
Note: This call will always append a total number of bytes equal to fieldLen. If the str is longer than fieldLen, the method returns False to indicate failure and nothing is appended.
Returns True for success, False for failure.
AppendSb
sb: HCkStringBuilder;
charset: PWideChar): wordbool; stdcall;
Appends the contents of a StringBuilder to this object.
Returns True for success, False for failure.
AppendString
str: PWideChar;
charset: PWideChar): wordbool; stdcall;
Appends a string to this object. (This does not append the BOM. If a BOM is required, the AppendBom method can be called to append the appropriate BOM.)
Returns True for success, False for failure.
Clear
ContentsEqual
binData: HCkBinData): wordbool; stdcall;
Return True if the contents of this object equals the contents of binData.
topFindString
str: PWideChar;
startIdx: Integer;
charset: PWideChar): Integer; stdcall;
Return the index where the first occurrence of str is found. Return -1 if not found. The startIdx indicates the byte index where the search begins. The charset specifies the byte representation of str that is to be searched. For example, it can be "utf-8", "windows-1252", "ansi", "utf-16", etc.
topGetBinary
Retrieves the binary data contained within the object.
Returns True for success, False for failure.
topGetBinaryChunk
offset: Integer;
numBytes: Integer;
outBytes: HCkByteData): wordbool; stdcall;
Retrieves a chunk of the binary data contained within the object.
Returns True for success, False for failure.
topGetByte
index: Integer): Integer; stdcall;
Returns the value of the byte at the given index. The returned value is an integer from 0 to 255.
Returns True for success, False for failure.
topGetBytesPtr
Returns a pointer to the internal buffer. Be careful with this method because if additional data is appended, the data within the object may be relocated and the pointer may cease to be valid.
GetEncoded
encoding: PWideChar;
outStr: HCkString): wordbool; stdcall;
function CkBinData__getEncoded(objHandle: HCkBinData;
encoding: PWideChar): PWideChar; stdcall;
Retrieves the binary data as an encoded string. The encoding may be "Base64", "modBase64", "base64Url", "Base32", "Base58", "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", or any of the encodings found at Chilkat Binary Encodings List.
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
GetEncodedChunk
offset: Integer;
numBytes: Integer;
encoding: PWideChar;
outStr: HCkString): wordbool; stdcall;
function CkBinData__getEncodedChunk(objHandle: HCkBinData;
offset: Integer;
numBytes: Integer;
encoding: PWideChar): PWideChar; stdcall;
Retrieves a chunk of the binary data and returns it in encoded form. The encoding may be "Base64", "modBase64", "base64Url", "Base32", "Base58", "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", or any of the encodings found at Chilkat Binary Encodings List.
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
GetEncodedSb
encoding: PWideChar;
sb: HCkStringBuilder): wordbool; stdcall;
Writes the encoded data to a StringBuilder. The encoding may be "Base64", "modBase64", "base64Url", "Base32", "Base58", "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", or any of the encodings found at Chilkat Binary Encodings List.
Returns True for success, False for failure.
GetHash
algorithm: PWideChar;
encoding: PWideChar;
outStr: HCkString): wordbool; stdcall;
function CkBinData__getHash(objHandle: HCkBinData;
algorithm: PWideChar;
encoding: PWideChar): PWideChar; stdcall;
Returns the hash of the contents of this object. The algorithm is the hash algorithm, and can be "sha1", "sha256", "sha384", "sha512", "sha3-224", "sha3-256", "sha3-384", "sha3-512", "md2", "md5", "ripemd128", "ripemd160","ripemd256", or "ripemd320". The encoding can be "base64", "modBase64", "base64Url", "base32", "base58", "qp" (for quoted-printable), "url" (for url-encoding), "hex", "hexLower", or any of the encodings found at Chilkat Binary Encodings List.
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
topGetInt2
index: Integer;
littleEndian: wordbool): Integer; stdcall;
Returns the value of the 16-bit signed integer stored in big-endian or little-endian byte ordering at the given index.
topGetInt4
index: Integer;
littleEndian: wordbool): Integer; stdcall;
Returns the value of the 32-bit signed integer stored in big-endian or little-endian byte ordering at the given index.
topGetString
charset: PWideChar;
outStr: HCkString): wordbool; stdcall;
function CkBinData__getString(objHandle: HCkBinData;
charset: PWideChar): PWideChar; stdcall;
Interprets the bytes according to charset and returns the string. The charset can be "utf-8", "utf-16", "ansi", "iso-8859-*", "windows-125*", or any of the supported character encodings listed in the link below.
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
GetTextChunk
startIdx: Integer;
numBytes: Integer;
charset: PWideChar;
outStr: HCkString): wordbool; stdcall;
function CkBinData__getTextChunk(objHandle: HCkBinData;
startIdx: Integer;
numBytes: Integer;
charset: PWideChar): PWideChar; stdcall;
Returns numBytes bytes starting at startIdx. The bytes are interpreted according to charset (for example, "utf-8", "ansi", "utf-16", "windows-1252", etc.)
Returns True for success, False for failure.
See the notes about PWideChar memory ownership and validity.
topGetUInt2
index: Integer;
littleEndian: wordbool): LongWord; stdcall;
Returns the value of the 16-bit unsigned integer stored in big-endian or little-endian byte ordering at the given index.
topGetUInt4
index: Integer;
littleEndian: wordbool): LongWord; stdcall;
Returns the value of the 32-bit unsigned integer stored in big-endian or little-endian byte ordering at the given index.
topLoadBinary
Loads binary data and replaces the current contents, if any.
Returns True for success, False for failure.
topLoadBinary2
pByteData: pbyte;
szByteData: LongWord): wordbool; stdcall;
Loads binary data and replaces the current contents, if any.
Returns True for success, False for failure.
topLoadEncoded
encData: PWideChar;
encoding: PWideChar): wordbool; stdcall;
Loads binary data from an encoded string, replacing the current contents, if any. The encoding may be "Base64", "modBase64", "base64Url", "Base32", "Base58", "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", or any of the encodings found at Chilkat Binary Encodings List.
Returns True for success, False for failure.
topLoadFile
path: PWideChar): wordbool; stdcall;
RemoveByteVal
value: Integer) stdcall;
Removes bytes having a specified value (0-255). For example, to remove all null bytes, pass 0 in value.
topRemoveChunk
offset: Integer;
numBytes: Integer): wordbool; stdcall;
SecureClear
Securely clears the contents by writing 0 bytes to the memory prior to deallocating the internal memory.
Returns True for success, False for failure.
topWriteAppendFile
path: PWideChar): wordbool; stdcall;
WriteFile
path: PWideChar): wordbool; stdcall;