ASN1C C/C++ Common Runtime
ASN1C v7.2.x
|
#include <OSRTMsgBuf.h>
Public Member Functions | |
virtual | ~OSRTMessageBuffer () |
virtual void * | getAppInfo () |
virtual size_t | getByteIndex () |
virtual OSRTCtxtPtr | getContext () |
virtual OSCTXT * | getCtxtPtr () |
virtual char * | getErrorInfo () |
virtual char * | getErrorInfo (char *pBuf, size_t &bufSize) |
virtual OSOCTET * | getMsgCopy () |
virtual const OSOCTET * | getMsgPtr () |
int | getStatus () const |
virtual int | init () |
virtual EXTRTMETHOD int | initBuffer (OSOCTET *pMsgBuf, size_t msgBufLen) |
virtual void | printErrorInfo () |
virtual void | resetErrorInfo () |
virtual void | setAppInfo (void *) |
virtual EXTRTMETHOD void | setDiag (OSBOOL value=TRUE) |
Protected Member Functions | |
EXTRTMETHOD | OSRTMessageBuffer (Type bufferType, OSRTContext *pContext=0) |
Protected Attributes | |
OSRTCtxtHolder | mCtxtHolder |
Type | mBufferType |
Abstract message buffer base class. This class is used to manage an encode or decode message buffer. For encoding, this is the buffer into which the message is being built. For decoding, it describes a message that was read into memory to be decoded. Further classes are derived from this to handle encoding and decoding of messages for different encoding rules types.
|
protected |
The protected constructor creates a new context and sets the buffer class type.
bufferType | Type of message buffer that is being created (for example, XMLEncode). |
pContext | Pointer to a context to use. If NULL, new context will be allocated. |
|
inlinevirtual |
The virtual destructor does nothing. It is overridden by derived versions of this class.
|
inlinevirtual |
Returns a pointer to application-specific information block
Reimplemented in ASN1MessageBuffer.
|
inlinevirtual |
The getByteIndex method is used to fetch the current byte offset within the current working buffer. For encoding, this is the next location that will be written to. For decoding, this is the next byte the parser will read.
|
inlinevirtual |
The getContext method returns the underlying context smart-pointer object.
Referenced by ASN1MessageBuffer::setStatus().
|
inlinevirtual |
The getCtxtPtr method returns the underlying C runtime context. This context can be used in calls to C runtime functions.
Referenced by ASN1MessageBuffer::addEventHandler(), ASN1MessageBuffer::getBitOffset(), ASN1MessageBuffer::removeEventHandler(), and ASN1MessageBuffer::setErrorHandler().
|
inlinevirtual |
Returns error text in a dynamic memory buffer. The buffer is allocated using 'operator new []'. The calling routine is responsible to free the memory by using 'operator delete []'.
|
inlinevirtual |
Returns error text in a memory buffer. If buffer pointer is specified in parameters (not NULL) then error text will be copied in the passed buffer. Otherwise, this method allocates memory using the 'operator new []' function. The calling routine is responsible to free the memory by using 'operator delete []'.
pBuf | A pointer to a destination buffer to obtain the error text. If NULL, dynamic buffer will be allocated. |
bufSize | A reference to buffer size. If pBuf is NULL it will receive the size of allocated dynamic buffer. |
|
inlinevirtual |
The getMsgCopy method will return a copy of the encoded message managed by the object.
Referenced by ASN1MessageBuffer::getBitOffset().
|
inlinevirtual |
The getMsgPtr method will return a const pointer to the encoded message managed by the object.
Referenced by ASN1MessageBuffer::getBitOffset().
|
inline |
This method returns the completion status of previous operation. It can be used to check completion status of constructors or methods, which do not return completion status.
|
inlinevirtual |
Initializes message buffer.
|
virtual |
This version of the overloaded initBuffer method initializes the message buffer to point at the given null-terminated character string.
pMsgBuf | Pointer to message buffer. |
msgBufLen | Length of message buffer in bytes. |
Referenced by ASN1MessageBuffer::getMsgLen().
|
inlinevirtual |
The printErrorInfo method prints information on errors contained within the context.
Referenced by ASN1MessageBuffer::getBitOffset().
|
inlinevirtual |
The resetErrorInfo method resets information on errors contained within the context.
Reimplemented in ASN1MessageBuffer.
Referenced by ASN1MessageBuffer::resetErrorInfo().
|
inlinevirtual |
Sets the application-specific information block.
Reimplemented in ASN1MessageBuffer.
|
virtual |
The setDiag method will turn diagnostic tracing on or off.
value | - Boolean value (default = TRUE = on) |
|
protected |
The mBufferType member variable holds information on the derived message buffer class type (for example, XMLEncode).