X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/cb205396ae920ef813764de92bf5b686bb9d80f1..ae96169ee008d8755894a25ed28fb4bc4f309593:/lib/base/filepush.cpp diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp index b85edbc1..5ae2f15d 100644 --- a/lib/base/filepush.cpp +++ b/lib/base/filepush.cpp @@ -1,6 +1,7 @@ #include #include #include +#include eFilePushThread::eFilePushThread() { @@ -14,6 +15,7 @@ static void signal_handler(int x) void eFilePushThread::thread() { + off_t dest_pos = 0; eDebug("FILEPUSH THREAD START"); // this is a race. FIXME. @@ -23,6 +25,7 @@ void eFilePushThread::thread() act.sa_flags = 0; sigaction(SIGUSR1, &act, 0); + dest_pos = lseek(m_fd_dest, 0, SEEK_CUR); /* m_stop must be evaluated after each syscall. */ while (!m_stop) { @@ -38,7 +41,11 @@ void eFilePushThread::thread() eDebug("eFilePushThread *write error* - not yet handled"); // ... we would stop the thread } - printf("FILEPUSH: wrote %d bytes\n", w); + + posix_fadvise(m_fd_dest, dest_pos, w, POSIX_FADV_DONTNEED); + + dest_pos += w; +// printf("FILEPUSH: wrote %d bytes\n", w); m_buf_start += w; continue; } @@ -53,7 +60,17 @@ void eFilePushThread::thread() continue; eDebug("eFilePushThread *read error* - not yet handled"); } - printf("FILEPUSH: read %d bytes\n", m_buf_end); + if (m_buf_end == 0) + { + eDebug("FILEPUSH: end-of-file! (currently unhandled)"); + if (!lseek(m_fd_source, 0, SEEK_SET)) + { + eDebug("(looping)"); + continue; + } + break; + } +// printf("FILEPUSH: read %d bytes\n", m_buf_end); } eDebug("FILEPUSH THREAD STOP");