#include <EventBuffer.h>
Inheritance diagram for DybDaq::EventBuffer:
Public Types | |
| typedef std::pair< const char *, unsigned int > | OutputBuffer |
| typedef std::vector< OutputBuffer > | OutputBufferList |
| typedef std::vector< ByteInspector * > | Bytes |
| typedef std::vector< BitsInspector * > | Bits |
Public Member Functions | |
| virtual | ~EventBuffer () |
| Destroy this instance of the class. | |
| const EventTraits & | eventTraits () const |
| Returns the EventTraits instance used to parse this object's buffer. | |
| bool | hasDaqTraits () const |
| virtual const DaqTraits & | daqTraits () const |
| virtual unsigned int | gather (OutputBufferList &outputBuffers) const |
| virtual unsigned int | inspect (DaqBuffer::Bytes &inspectors) const |
| virtual unsigned int | bufferSize () const =0 |
Static Public Attributes | |
| static const unsigned int | kBytesInInt |
| static const unsigned int | kUndefinedFormatComponent |
Protected Member Functions | |
| EventBuffer (char *buffer, const EventTraits &traits, const unsigned int size=0) | |
| Creates an instance of this class. | |
| EventBuffer (const ByteBuffer &byteBuffer, const EventTraits &traits) | |
| Creates an instance of this class. | |
| const char * | buffer () const |
| char * | buffer () |
| bool | hasByteBuffer () const |
| const ByteBuffer & | byteBuffer () const |
| unsigned int | fillInspectors (DaqBuffer::Bytes &inspectors, unsigned int component, unsigned int cursor) const |
| virtual bool | readBool (const unsigned int field) const |
| virtual int | readInt (const unsigned int field) const |
| virtual unsigned char | readUnsignedChar (const unsigned int field) const |
| virtual unsigned int | readUnsignedInt (const unsigned int field) const |
| virtual void | writeField (const bool value, const unsigned int field) |
| virtual void | writeField (const int value, const unsigned int field) |
| virtual void | writeField (const unsigned int value, const unsigned int field) |
| virtual unsigned int | formatComponent () const |
Private Member Functions | |
| EventBuffer () | |
| Suppress default. | |
| EventBuffer (EventBuffer &rhs) | |
| Suppress default. | |
| EventBuffer & | operator= (EventBuffer &rhs) |
| Suppress default. | |
Definition at line 21 of file EventBuffer.h.
| EventBuffer::~EventBuffer | ( | ) | [virtual] |
| EventBuffer::EventBuffer | ( | char * | buffer, | |
| const EventTraits & | traits, | |||
| const unsigned int | size = 0 | |||
| ) | [protected] |
| EventBuffer::EventBuffer | ( | const ByteBuffer & | byteBuffer, | |
| const EventTraits & | traits | |||
| ) | [protected] |
Creates an instance of this class.
Definition at line 26 of file EventBuffer.cc.
00027 : 00028 DaqBuffer(byteBuffer, 00029 traits) { 00030 }
| DybDaq::EventBuffer::EventBuffer | ( | ) | [private] |
Suppress default.
| DybDaq::EventBuffer::EventBuffer | ( | EventBuffer & | rhs | ) | [private] |
Suppress default.
| const EventTraits & EventBuffer::eventTraits | ( | ) | const |
Returns the EventTraits instance used to parse this object's buffer.
Definition at line 35 of file EventBuffer.cc.
00035 { 00036 return dynamic_cast<const EventTraits&>(daqTraits()); 00037 }
| EventBuffer& DybDaq::EventBuffer::operator= | ( | EventBuffer & | rhs | ) | [private] |
Suppress default.
1.4.7