MCPcopy Create free account
hub / github.com/KDE/labplot / uncompressedFileWriteThread

Method uncompressedFileWriteThread

src/3rdparty/vector_blf/src/Vector/BLF/File.cpp:851–867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

849}
850
851void File::uncompressedFileWriteThread(File * file) {
852 try {
853 while (file->m_uncompressedFileThreadRunning) {
854 /* process */
855 file->readWriteQueue2UncompressedFile();
856
857 /* check for eof */
858 if (!file->m_readWriteQueue.good())
859 file->m_uncompressedFileThreadRunning = false;
860 }
861
862 /* set end of file */
863 file->m_uncompressedFile.setFileSize(file->m_uncompressedFile.tellp());
864 } catch (...) {
865 file->m_uncompressedFileThreadException = std::current_exception();
866 }
867}
868
869void File::compressedFileReadThread(File * file) {
870 try {

Callers

nothing calls this directly

Calls 4

goodMethod · 0.45
setFileSizeMethod · 0.45
tellpMethod · 0.45

Tested by

no test coverage detected