XBinder  Version 2.6.x
Classes | Typedefs | Functions
rtxBuffer.h File Reference

Common runtime functions for reading from or writing to the message buffer defined within the context structure. More...

#include "rtxsrc/rtxContext.h"
#include "rtxsrc/rtxSList.h"

Go to the source code of this file.

Classes

struct  _OSRTBufLocDescr
 Buffer location descriptor. More...
 

Typedefs

typedef struct _OSRTBufLocDescr OSRTBufLocDescr
 Buffer location descriptor.
 

Functions

EXTERNRT int rtxCheckOutputBuffer (OSCTXT *pctxt, size_t nbytes)
 This function checks to ensure that the output buffer has sufficient space to hold an additional nbytes full bytes (if there is a partially filled byte, it is treated as though full). More...
 
EXTERNRT OSBOOL rtxIsOutputBufferFlushable (OSCTXT *pctxt)
 This function returns true if the context buffer can be flushed to a stream by calling rtxFlushOutputBuffer. More...
 
EXTERNRT int rtxFlushOutputBuffer (OSCTXT *pctxt)
 This function flushes the buffer to a stream. More...
 
EXTERNRT int rtxExpandOutputBuffer (OSCTXT *pctxt, size_t nbytes)
 This function attempts to ensure the output buffer has at least the given number of bytes available. More...
 
EXTERNRT int rtxReadBytesSafe (OSCTXT *pctxt, OSOCTET *buffer, size_t bufsize, size_t nocts)
 This function safely reads bytes from the currently open stream or memory buffer into the given static buffer. More...
 
EXTERNRT int rtxReadBytes (OSCTXT *pctxt, OSOCTET *pdata, size_t nocts)
 This function reads bytes from the currently open stream or memory buffer. More...
 
EXTERNRT int rtxReadBytesDynamic (OSCTXT *pctxt, OSOCTET **ppdata, size_t nocts, OSBOOL *pMemAlloc)
 This function reads bytes from the currently open stream or memory buffer. More...
 
EXTERNRT int rtxWriteBytes (OSCTXT *pctxt, const OSOCTET *pdata, size_t nocts)
 This function writes bytes to the currently open stream or memory buffer. More...
 
EXTERNRT OSBOOL rtxCanonicalSort (OSOCTET *refPoint, OSRTSList *pList, OSBOOL normal)
 Sort a list of buffer locations, referring to component encodings, by comparing the referenced encodings as octet strings. More...
 
EXTERNRT int rtxEncCanonicalSort (OSCTXT *pctxt, OSCTXT *pMemCtxt, OSRTSList *pList)
 Encode the encodings held in pMemCtxt into pctxt, first sorting them as required for canonical BER (and other encoding rules) by X.690 11.6. More...
 
EXTERNRT void rtxGetBufLocDescr (OSCTXT *pctxt, OSRTBufLocDescr *pDescr)
 Set the buffer location description's offset (pDescr->offset) to the current position in pCtxt's buffer.
 
EXTERNRT void rtxAddBufLocDescr (OSCTXT *pctxt, OSRTSList *pElemList, OSRTBufLocDescr *pDescr)
 Create a new Asn1BufLocDescr for an element just encoded and append it to pElemList. More...
 

Detailed Description

Common runtime functions for reading from or writing to the message buffer defined within the context structure.

Definition in file rtxBuffer.h.

Function Documentation

◆ rtxAddBufLocDescr()

EXTERNRT void rtxAddBufLocDescr ( OSCTXT pctxt,
OSRTSList *  pElemList,
OSRTBufLocDescr pDescr 
)

Create a new Asn1BufLocDescr for an element just encoded and append it to pElemList.

Parameters
pctxtPointer to context where data has been encoded.
pElemListList of Asn1BufLocDescr to which a new entry will be added.
pDescrPointer to Asn1BufLocDescr whose offset indicates the start of the element just encoded. The new Asn1BufLocDescr that is added will have the same offset and will have numocts determined by this offset and pctxt's current buffer position.

◆ rtxCanonicalSort()

EXTERNRT OSBOOL rtxCanonicalSort ( OSOCTET *  refPoint,
OSRTSList *  pList,
OSBOOL  normal 
)

Sort a list of buffer locations, referring to component encodings, by comparing the referenced encodings as octet strings.

The sorting can be used with canonical-BER (CER), distinguished-BER (DER), and canonical-XER (XER).

Encoding into the buffer may be done as a normal encoding (start to end) or as a reverse encoding (end to start). This affects the parameters as described below.

Parameters
refPointReference point in the buffer for the buffer locations. For normal encoding, refPoint is the start of the buffer; for reverse encoding, refPoint is the end of the buffer.
pListList of OSRTBufLocDescr, each of which locates the start of an encoded component. The offsets for the locations are relative to refPoint. If normal is TRUE, this function orders the list from least to greatest. Otherwise, it is ordered from greatest to least.
normalTRUE for normal encoding; FALSE for reverse encoding. This tells the function whether to add or substract offsets from refPoint to locate the component encodings and also how to order the list.
Returns
TRUE if any changes to pList were made; FALSE otherwise (meaning the list was already in the desired order).

◆ rtxCheckOutputBuffer()

EXTERNRT int rtxCheckOutputBuffer ( OSCTXT pctxt,
size_t  nbytes 
)

This function checks to ensure that the output buffer has sufficient space to hold an additional nbytes full bytes (if there is a partially filled byte, it is treated as though full).

Dynamic buffers are resized if the check fails, while static buffers induce a buffer overflow error. This function may return RTERR_NOMEM if reallocating the dynamic buffer fails.

Parameters
pctxtPointer to a context structure.
nbytesThe requested capacity for the buffer.
Returns
0 on success, or less than zero on failure.

◆ rtxEncCanonicalSort()

EXTERNRT int rtxEncCanonicalSort ( OSCTXT pctxt,
OSCTXT pMemCtxt,
OSRTSList *  pList 
)

Encode the encodings held in pMemCtxt into pctxt, first sorting them as required for canonical BER (and other encoding rules) by X.690 11.6.

Parameters
pctxtPointer to context structure into which the sorted encodings should be encoded.
pMemCtxtPointer to context structure which holds the unsorted encodings.
pListList of Asn1BufLocDescr, each of which locates an encoding in pMemCtxt's buffer, the whole being the encodings that are to be sorted.

◆ rtxExpandOutputBuffer()

EXTERNRT int rtxExpandOutputBuffer ( OSCTXT pctxt,
size_t  nbytes 
)

This function attempts to ensure the output buffer has at least the given number of bytes available.

A partially full byte in the buffer counts as being available. Dynamic buffers are resized, if necessary, while static buffers induce a buffer overflow error. This function may return RTERR_NOMEM if reallocating a dynamic buffer fails.

Parameters
pctxtPointer to a context structure.
nbytesThe requested capacity for the buffer.
Returns
0 on success, or less than zero on failure.

◆ rtxFlushOutputBuffer()

EXTERNRT int rtxFlushOutputBuffer ( OSCTXT pctxt)

This function flushes the buffer to a stream.

This function MUST only be called if rtxIsOutputBufferFlushable(pctxt) returns TRUE; the behavior is otherwise undefined. After a successful call, pctxt->buffer.byteIndex == 0. Note that pctxt->buffer.bitOffset is not changed - if there was a partial byte in the buffer before this call, there will be a partial by afterward.

Parameters
pctxtPointer to a context structure.
Returns
0 on success, or less than zero on failure.

◆ rtxIsOutputBufferFlushable()

EXTERNRT OSBOOL rtxIsOutputBufferFlushable ( OSCTXT pctxt)

This function returns true if the context buffer can be flushed to a stream by calling rtxFlushOutputBuffer.

This function is used to determine whether it is safe to call rtxFlushOutputBuffer.

Parameters
pctxtPointer to a context structure.
Returns
TRUE if the buffer can be flushed; FALSE is not.

◆ rtxReadBytes()

EXTERNRT int rtxReadBytes ( OSCTXT pctxt,
OSOCTET *  pdata,
size_t  nocts 
)

This function reads bytes from the currently open stream or memory buffer.

Parameters
pctxtPointer to a context structure.
pdataPointer to byte array where bytes are to be copied.
noctsNumber of bytes (octets) to read.
Returns
Status of the operation: 0 if success, negative value if error.

◆ rtxReadBytesDynamic()

EXTERNRT int rtxReadBytesDynamic ( OSCTXT pctxt,
OSOCTET **  ppdata,
size_t  nocts,
OSBOOL *  pMemAlloc 
)

This function reads bytes from the currently open stream or memory buffer.

In this case the function MAY allocate memory to hold the read bytes. It will only do this if the requested number of bytes will not fit in the context buffer; othwerwise, a pointer to a location in the context buffer is returned. If memory was allocated, it should be freed using rtxMemFreePtr.

Parameters
pctxtPointer to a context structure.
ppdataPointer to byte buffer pointer.
noctsNumber of bytes (octets) to read.
pMemAllocPointer to boolean value which is set to true if memory was allocated to hold requested bytes.
Returns
Status of the operation: 0 if success, negative value if error.

◆ rtxReadBytesSafe()

EXTERNRT int rtxReadBytesSafe ( OSCTXT pctxt,
OSOCTET *  buffer,
size_t  bufsize,
size_t  nocts 
)

This function safely reads bytes from the currently open stream or memory buffer into the given static buffer.

This function is preferred over rtxReadBytes because it will detect buffer overflow.

Parameters
pctxtPointer to a context structure.
bufferStatic buffer into which bytes are to be read.
bufsizeSize of the static buffer.
noctsNumber of bytes (octets) to read.
Returns
Status of the operation: 0 if success, negative value if error.

◆ rtxWriteBytes()

EXTERNRT int rtxWriteBytes ( OSCTXT pctxt,
const OSOCTET *  pdata,
size_t  nocts 
)

This function writes bytes to the currently open stream or memory buffer.

Parameters
pctxtPointer to a context structure.
pdataPointer to location where bytes are to be copied.
noctsNumber of bytes to read.
Returns
I/O byte count.