#include <LocalCacheFile.h>
Public Member Functions | |
virtual void | close (void) |
virtual void | flush (void) |
LocalCacheFile (Storage *base, const std::string &tmpdir="") | |
virtual IOOffset | position (IOOffset offset, Relative whence=SET) |
virtual bool | prefetch (const IOPosBuffer *what, IOSize n) |
virtual IOSize | read (void *into, IOSize n) |
virtual IOSize | read (void *into, IOSize n, IOOffset pos) |
virtual IOSize | readv (IOBuffer *into, IOSize n) |
virtual IOSize | readv (IOPosBuffer *into, IOSize n) |
virtual void | resize (IOOffset size) |
virtual IOSize | write (const void *from, IOSize n) |
virtual IOSize | write (const void *from, IOSize n, IOOffset pos) |
virtual IOSize | writev (const IOBuffer *from, IOSize n) |
virtual IOSize | writev (const IOPosBuffer *from, IOSize n) |
~LocalCacheFile (void) | |
Public Member Functions inherited from Storage | |
virtual bool | eof (void) const |
virtual IOOffset | position (void) const |
IOSize | read (IOBuffer into, IOOffset pos) |
virtual void | rewind (void) |
virtual IOOffset | size (void) const |
Storage (void) | |
IOSize | write (IOBuffer from, IOOffset pos) |
virtual | ~Storage (void) |
Public Member Functions inherited from IOInput | |
int | read (void) |
IOSize | read (IOBuffer into) |
IOSize | xread (IOBuffer into) |
IOSize | xread (void *into, IOSize n) |
IOSize | xreadv (IOBuffer *into, IOSize buffers) |
virtual | ~IOInput (void) |
Destruct the stream. A no-op. More... | |
Public Member Functions inherited from IOOutput | |
IOSize | write (unsigned char byte) |
IOSize | write (IOBuffer from) |
IOSize | xwrite (const void *from, IOSize n) |
IOSize | xwrite (IOBuffer from) |
IOSize | xwritev (const IOBuffer *from, IOSize buffers) |
virtual | ~IOOutput (void) |
Destruct the stream. A no-op. More... | |
Private Member Functions | |
void | cache (IOOffset start, IOOffset end) |
Private Attributes | |
unsigned int | cacheCount_ |
unsigned int | cacheTotal_ |
bool | closedFile_ |
File * | file_ |
IOOffset | image_ |
std::vector< char > | present_ |
Storage * | storage_ |
Additional Inherited Members | |
Public Types inherited from Storage | |
enum | Relative { SET, CURRENT, END } |
Proxy class to copy a file locally in large chunks.
Definition at line 10 of file LocalCacheFile.h.
LocalCacheFile::LocalCacheFile | ( | Storage * | base, |
const std::string & | tmpdir = "" |
||
) |
Definition at line 24 of file LocalCacheFile.cc.
References cms::Exception::addContext(), cacheTotal_, ztee::fd, reco_application_tbsim_DetSim-Digi_cfg::File, file_, edm::errors::FileOpenError, image_, AlCaHLTBitMon_ParallelJobs::p, chain::pattern, present_, File::resize(), AlCaHLTBitMon_QueryRunRegistry::string, and groupFilesInBlocks::temp.
LocalCacheFile::~LocalCacheFile | ( | void | ) |
Definition at line 64 of file LocalCacheFile.cc.
References cms::Exception::addContext(), cacheCount_, cacheTotal_, CHUNK_SIZE, Storage::close(), closedFile_, alignCSCRings::e, IOChannel::fd(), file_, edm::errors::FileReadError, image_, cmsHarvester::index, min(), present_, Storage::read(), dqm_diff::start, storage_, and svgfig::window().
Referenced by prefetch(), read(), and readv().
|
virtual |
Reimplemented from Storage.
Definition at line 196 of file LocalCacheFile.cc.
References Storage::close(), File::close(), closedFile_, file_, and storage_.
Referenced by lumiQTWidget.ApplicationWindow::fileQuit(), esMonitoring.AsyncLineReaderMixin::handle_close(), esMonitoring.FDJsonServer::handle_close(), Vispa.Gui.BoxContentDialog.BoxContentDialog::keyPressEvent(), and Vispa.Gui.FindDialog.FindDialog::keyPressEvent().
|
virtual |
Implements Storage.
Definition at line 184 of file LocalCacheFile.cc.
References file_, and File::position().
|
virtual |
Reimplemented from Storage.
Definition at line 206 of file LocalCacheFile.cc.
References cache(), end, file_, i, gen::n, IOPosBuffer::offset(), File::prefetch(), IOPosBuffer::size(), and dqm_diff::start.
Read into into at most n number of bytes.
If this is a blocking stream, the call will block until some data can be read, end of input is reached, or an exception is thrown. For a non-blocking stream the available input is returned. If none is available, an exception is thrown.
In | case of error, a #IOError exception is thrown. This includes the situation where the input stream is in non-blocking mode and no input is currently available (FIXME: make this simpler; clarify which exception). |
Implements IOInput.
Definition at line 127 of file LocalCacheFile.cc.
References cache(), file_, File::position(), and File::read().
Reimplemented from Storage.
Definition at line 136 of file LocalCacheFile.cc.
References cache(), file_, and File::read().
Read from the input stream into multiple scattered buffers. There are buffers to fill in an array starting at into; the memory those buffers occupy does not need to be contiguous. The buffers are filled in the order given, eac buffer is filled fully before the subsequent buffers.
If this is a blocking stream, the call will block until some data can be read, end of input is reached, or an exception is thrown. For a non-blocking stream the available input is returned. If none is available, an exception is thrown.
The base class implementation uses read(void *, IOSize) method, but derived classes may implement a more efficient alternative.
In | case of error, a #IOError exception is thrown. However if some data has already been read, the error is swallowed and the method returns the data read so far. It is assumed that persistent errors will occur anyway on the next read and sporadic errors like stream becoming unvailable can be ignored. Use xread() if a different policy is desirable. |
Reimplemented from IOInput.
Definition at line 143 of file LocalCacheFile.cc.
References cache(), end, file_, i, gen::n, File::position(), File::readv(), Storage::size(), and dqm_diff::start.
|
virtual |
Reimplemented from Storage.
Definition at line 155 of file LocalCacheFile.cc.
References cache(), end, i, gen::n, IOPosBuffer::offset(), Storage::readv(), IOPosBuffer::size(), dqm_diff::start, and storage_.
|
virtual |
Implements Storage.
Definition at line 188 of file LocalCacheFile.cc.
References nowrite().
Referenced by Vispa.Gui.TextDialog.TextDialog::__init__(), Vispa.Plugins.ConfigEditor.ToolDialog.ToolDialog::__init__(), Vispa.Main.MainWindow.MainWindow::_loadIni(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().
Write n bytes of data starting at address from.
In | case of error, an exception is thrown. However if the stream is in non-blocking mode and cannot accept output, it will not throw an exception – the return value will be less than requested. |
Implements IOOutput.
Definition at line 168 of file LocalCacheFile.cc.
References nowrite().
Write to the output stream from multiple buffers. There are buffers to fill in an array starting at from. The buffers are filled in the order given, each buffer fully before the subsequent buffers. The method uses write(const void *, IOSize), but may be implemented more efficiently in derived classes.
Note that derived classes should not normally call this method, as it simply routes the call back to derived class through the other virtual functions. Use this method only at the "outside edge" when transferring calls from one object to another, not in up/down calls in the inheritance tree.
In | case of error, an exception is thrown. However if the stream is in non-blocking mode and cannot accept output, it will not throw an exception – the return value will be less than requested. |
Reimplemented from IOOutput.
Definition at line 176 of file LocalCacheFile.cc.
References nowrite().
|
virtual |
|
private |
Definition at line 42 of file LocalCacheFile.h.
Referenced by cache().
|
private |
Definition at line 43 of file LocalCacheFile.h.
Referenced by cache(), and LocalCacheFile().
|
private |
Definition at line 41 of file LocalCacheFile.h.
|
private |
Definition at line 39 of file LocalCacheFile.h.
Referenced by cache(), close(), LocalCacheFile(), position(), prefetch(), read(), readv(), and ~LocalCacheFile().
|
private |
Definition at line 37 of file LocalCacheFile.h.
Referenced by cache(), and LocalCacheFile().
|
private |
Definition at line 38 of file LocalCacheFile.h.
Referenced by cache(), and LocalCacheFile().
|
private |
Definition at line 40 of file LocalCacheFile.h.
Referenced by cache(), close(), readv(), and ~LocalCacheFile().