#include <LocalCacheFile.h>
Public Member Functions | |
virtual void | close (void) |
virtual void | flush (void) |
LocalCacheFile (std::unique_ptr< 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_ |
edm::propagate_const < std::unique_ptr< File > > | file_ |
IOOffset | image_ |
std::vector< char > | present_ |
edm::propagate_const < std::unique_ptr< 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 12 of file LocalCacheFile.h.
LocalCacheFile::LocalCacheFile | ( | std::unique_ptr< Storage > | base, |
const std::string & | tmpdir = "" |
||
) |
Definition at line 24 of file LocalCacheFile.cc.
References cms::Exception::addContext(), cacheTotal_, ztee::fd, file_, edm::errors::FileOpenError, image_, AlCaHLTBitMon_ParallelJobs::p, listBenchmarks::pattern, present_, AlCaHLTBitMon_QueryRunRegistry::string, and groupFilesInBlocks::temp.
LocalCacheFile::~LocalCacheFile | ( | void | ) |
Definition at line 57 of file LocalCacheFile.cc.
Definition at line 62 of file LocalCacheFile.cc.
References cms::Exception::addContext(), cacheCount_, cacheTotal_, CHUNK_SIZE, closedFile_, alignCSCRings::e, file_, edm::errors::FileReadError, image_, cmsHarvester::index, min(), present_, dqm_diff::start, storage_, and svgfig::window().
Referenced by prefetch(), read(), and readv().
|
virtual |
Reimplemented from Storage.
Definition at line 194 of file LocalCacheFile.cc.
References 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 182 of file LocalCacheFile.cc.
References file_.
|
virtual |
Reimplemented from Storage.
Definition at line 204 of file LocalCacheFile.cc.
References cache(), end, file_, i, gen::n, IOPosBuffer::offset(), 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 125 of file LocalCacheFile.cc.
References cache(), and file_.
Reimplemented from Storage.
Definition at line 134 of file LocalCacheFile.cc.
References cache(), and file_.
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 141 of file LocalCacheFile.cc.
References cache(), end, file_, i, gen::n, Storage::size(), and dqm_diff::start.
|
virtual |
Reimplemented from Storage.
Definition at line 153 of file LocalCacheFile.cc.
References cache(), end, i, gen::n, IOPosBuffer::offset(), IOPosBuffer::size(), dqm_diff::start, and storage_.
|
virtual |
Implements Storage.
Definition at line 186 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 166 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 174 of file LocalCacheFile.cc.
References nowrite().
|
virtual |
|
private |
Definition at line 44 of file LocalCacheFile.h.
Referenced by cache().
|
private |
Definition at line 45 of file LocalCacheFile.h.
Referenced by cache(), and LocalCacheFile().
|
private |
Definition at line 43 of file LocalCacheFile.h.
|
private |
Definition at line 41 of file LocalCacheFile.h.
Referenced by cache(), close(), LocalCacheFile(), position(), prefetch(), read(), and readv().
|
private |
Definition at line 39 of file LocalCacheFile.h.
Referenced by cache(), and LocalCacheFile().
|
private |
Definition at line 40 of file LocalCacheFile.h.
Referenced by cache(), and LocalCacheFile().
|
private |
Definition at line 42 of file LocalCacheFile.h.