I/O priority support with cfq scheduler (needs new kernel patch)
[enigma2.git] / lib / base / filepush.h
index e471b296bf6b13a1534845fba83e4421a74f73d8..0749cd43d4b3f0c68b19c44e5afd37e7a06b088d 100644 (file)
@@ -2,9 +2,11 @@
 #define __lib_base_filepush_h
 
 #include <lib/base/thread.h>
+#include <lib/base/ioprio.h>
 #include <libsig_comp.h>
 #include <lib/base/message.h>
 #include <sys/types.h>
+#include <lib/base/rawfile.h>
 
 class iFilePushScatterGather
 {
@@ -15,11 +17,13 @@ public:
 
 class eFilePushThread: public eThread, public Object
 {
+       int prio_class, prio;
 public:
-       eFilePushThread();
+       eFilePushThread(int prio_class=IOPRIO_CLASS_BE, int prio_level=0);
        void thread();
        void stop();
        void start(int sourcefd, int destfd);
+       int start(const char *filename, int destfd);
        
        void pause();
        void seek(int whence, off_t where);
@@ -33,19 +37,24 @@ public:
        
        enum { evtEOF, evtReadError, evtWriteError, evtUser };
        Signal1<void,int> m_event;
-       
+
+       void installSigUSR1Handler();
+       void before_set_thread_alive();
+
                /* you can send private events if you want */
        void sendEvent(int evt);
 protected:
-       virtual void filterRecordData(const char *data, int len);
+       virtual void filterRecordData(const unsigned char *data, int len);
 private:
        iFilePushScatterGather *m_sg;
        int m_stop;
        unsigned char m_buffer[65536];
        int m_buf_start, m_buf_end;
-       int m_fd_source, m_fd_dest;
+       int m_fd_dest;
        int m_send_pvr_commit;
        
+       eRawFile m_raw_source;
+       
        eFixedMessagePump<int> m_messagepump;
        
        void recvEvent(const int &evt);