evio
5.2
|
Implements evioChannel functionality for I/O to and from files. More...
#include <evioFileChannel.hxx>
Public Member Functions | |
evioFileChannel (const string &fileName, const string &mode="r", int size=1000000) throw (evioException) | |
Constructor opens channel for reading or writing. More... | |
evioFileChannel (const string &fileName, evioDictionary *dict, const string &mode="r", int size=1000000) throw (evioException) | |
Constructor opens channel for reading or writing, dictionary specified. More... | |
evioFileChannel (const string &fileName, evioDictionary *dict, const uint32_t *firstEvent, const string &mode="w", int size=1000000) throw (evioException) | |
Constructor opens channel for reading or writing to file with dictionary specified, If writing, the first event (an event which gets written once in each split file) may also be specified. More... | |
virtual | ~evioFileChannel (void) |
Destructor closes file, deletes internal buffer, deletes dictionary one created from file. More... | |
void | open (void) throw (evioException) |
Opens channel for reading or writing. More... | |
bool | read (void) throw (evioException) |
Reads from file into internal buffer. More... | |
bool | read (uint32_t *myEventBuf, int length) throw (evioException) |
Reads from file into user-supplied buffer. More... | |
bool | readAlloc (uint32_t **buffer, uint32_t *bufLen) throw (evioException) |
Reads from file and allocates buffer as needed. More... | |
bool | readNoCopy (void) throw (evioException) |
Reads from file using no copy mechanism. More... | |
bool | readRandom (uint32_t bufferNumber) throw (evioException) |
Reads buffer from file given buffer number. More... | |
void | write (void) throw (evioException) |
Writes to file from internal buffer. More... | |
void | write (const uint32_t *myEventBuf) throw (evioException) |
Writes to file from user-supplied buffer. More... | |
void | write (const evioChannel &channel) throw (evioException) |
Writes to file from internal buffer of another evioChannel object. More... | |
void | write (const evioChannel *channel) throw (evioException) |
Writes from internal buffer of another evioChannel object. More... | |
void | write (const evioChannelBufferizable &o) throw (evioException) |
Writes from contents of evioChannelBufferizable object. More... | |
void | write (const evioChannelBufferizable *o) throw (evioException) |
Writes from contents of evioChannelBufferizable object. More... | |
void | close (void) throw (evioException) |
Closes channel. More... | |
int | ioctl (const string &request, void *argp) throw (evioException) |
For getting and setting evIoctl parameters. More... | |
const uint32_t * | getBuffer (void) const throw (evioException) |
Returns pointer to internal channel buffer. More... | |
int | getBufSize (void) const |
Returns internal channel buffer size. More... | |
const uint32_t * | getNoCopyBuffer (void) const throw (evioException) |
Returns pointer to no copy buffer. More... | |
const uint32_t * | getRandomBuffer (void) const throw (evioException) |
Returns pointer to random buffer. More... | |
void | getRandomAccessTable (uint32_t ***const table, uint32_t *len) const throw (evioException) |
Returns random access table. More... | |
string | getFileName (void) const |
Returns channel file name. More... | |
string | getMode (void) const |
Returns channel I/O mode. More... | |
string | getFileXMLDictionary (void) const |
Returns XML dictionary read in from file. More... | |
Public Member Functions inherited from evio::evioChannel | |
evioChannel (void) | |
evioChannel (evioDictionary *dict) | |
virtual | ~evioChannel (void) |
virtual const evioDictionary * | getDictionary (void) const |
Additional Inherited Members | |
Protected Attributes inherited from evio::evioChannel | |
evioDictionary * | dictionary |
Implements evioChannel functionality for I/O to and from files.
Basically a wrapper around the original evio C library.
evioFileChannel::evioFileChannel | ( | const string & | f, |
const string & | m = "r" , |
||
int | size = 1000000 |
||
) | |||
throw | ( | evioException | |
) |
Constructor opens channel for reading or writing.
f | File name |
m | I/O mode, "r", "ra", "w", "a", or "s" |
size | Internal buffer size |
evioFileChannel::evioFileChannel | ( | const string & | f, |
evioDictionary * | dict, | ||
const string & | m = "r" , |
||
int | size = 1000000 |
||
) | |||
throw | ( | evioException | |
) |
Constructor opens channel for reading or writing, dictionary specified.
f | File name |
dict | Dictionary |
m | I/O mode, "r", "ra", "w", "a", or "s" |
size | Internal buffer size |
evioFileChannel::evioFileChannel | ( | const string & | f, |
evioDictionary * | dict, | ||
const uint32_t * | firstEvent, | ||
const string & | m = "w" , |
||
int | size = 1000000 |
||
) | |||
throw | ( | evioException | |
) |
Constructor opens channel for reading or writing to file with dictionary specified, If writing, the first event (an event which gets written once in each split file) may also be specified.
f | File name |
dict | Dictionary |
firstEvent | buffer containing first event |
m | I/O mode, "r", "ra", "w", "a", or "s" |
size | Internal buffer size |
|
virtual |
Destructor closes file, deletes internal buffer, deletes dictionary one created from file.
|
virtual |
Closes channel.
Implements evio::evioChannel.
|
virtual |
Returns pointer to internal channel buffer.
Implements evio::evioChannel.
|
virtual |
Returns internal channel buffer size.
Implements evio::evioChannel.
string evioFileChannel::getFileName | ( | void | ) | const |
Returns channel file name.
string evioFileChannel::getFileXMLDictionary | ( | void | ) | const |
Returns XML dictionary read in from file.
string evioFileChannel::getMode | ( | void | ) | const |
Returns channel I/O mode.
|
virtual |
|
virtual |
Returns random access table.
table | Pointer to table |
len | Length of table |
Reimplemented from evio::evioChannel.
|
virtual |
Returns pointer to random buffer.
Reimplemented from evio::evioChannel.
|
virtual |
For getting and setting evIoctl parameters.
request | String containing evIoctl parameters |
argp | Additional evIoctl parameter |
Implements evio::evioChannel.
|
virtual |
Opens channel for reading or writing.
For read, user-supplied dictionary overrides one found in file.
Implements evio::evioChannel.
|
virtual |
Reads from file into internal buffer.
Implements evio::evioChannel.
|
virtual |
Reads from file into user-supplied buffer.
myBuf | User-supplied buffer. length Length of buffer in 4-byte words. |
Implements evio::evioChannel.
|
virtual |
Reads from file and allocates buffer as needed.
buffer | Pointer to pointer to allocated buffer. |
len | Length of allocated buffer in 4-byte words. |
Note: user MUST free the allocated buffer!
Implements evio::evioChannel.
|
virtual |
Reads from file using no copy mechanism.
Implements evio::evioChannel.
|
virtual |
Reads buffer from file given buffer number.
bufferNumber | Buffer to return |
Reimplemented from evio::evioChannel.
|
virtual |
Writes to file from internal buffer.
Implements evio::evioChannel.
|
virtual |
Writes to file from user-supplied buffer.
myBuf | Buffer containing event |
Implements evio::evioChannel.
|
virtual |
Writes to file from internal buffer of another evioChannel object.
channel | Channel object |
Implements evio::evioChannel.
|
virtual |
Writes from internal buffer of another evioChannel object.
channel | Pointer to channel object |
Implements evio::evioChannel.
|
virtual |
Writes from contents of evioChannelBufferizable object.
o | evioChannelBufferizable object that can serialze to buffer |
Implements evio::evioChannel.
|
virtual |
Writes from contents of evioChannelBufferizable object.
o | Pointer to evioChannelBufferizable object that can serialize to buffer |
Implements evio::evioChannel.