filepush.h/cpp: migrate to iDataSource
[vuplus_dvbapp] / lib / base / filepush.h
1 #ifndef __lib_base_filepush_h
2 #define __lib_base_filepush_h
3
4 #include <lib/base/thread.h>
5 #include <lib/base/ioprio.h>
6 #include <libsig_comp.h>
7 #include <lib/base/message.h>
8 #include <sys/types.h>
9 #include <lib/base/rawfile.h>
10
11 class iFilePushScatterGather
12 {
13 public:
14         virtual void getNextSourceSpan(off_t current_offset, size_t bytes_read, off_t &start, size_t &size)=0;
15         virtual ~iFilePushScatterGather() {}
16 };
17
18 class eFilePushThread: public eThread, public Object
19 {
20         int prio_class, prio;
21 public:
22         eFilePushThread(int prio_class=IOPRIO_CLASS_BE, int prio_level=0, int blocksize=188);
23         void thread();
24         void stop();
25         void start(int sourcefd, int destfd);
26         int start(const char *filename, int destfd);
27
28         void start(ePtr<iDataSource> source, int destfd);
29
30         void pause();
31         void seek(int whence, off_t where);
32         void resume();
33         
34                 /* flushes the internal readbuffer */ 
35         void flush();
36         void enablePVRCommit(int);
37         
38                 /* stream mode will wait on EOF until more data is available. */
39         void setStreamMode(int);
40         
41         void setScatterGather(iFilePushScatterGather *);
42         
43         enum { evtEOF, evtReadError, evtWriteError, evtUser };
44         Signal1<void,int> m_event;
45
46         void installSigUSR1Handler();
47         void before_set_thread_alive();
48
49                 /* you can send private events if you want */
50         void sendEvent(int evt);
51 protected:
52         virtual int filterRecordData(const unsigned char *data, int len, size_t &current_span_remaining);
53 private:
54         iFilePushScatterGather *m_sg;
55         int m_stop;
56         unsigned char m_buffer[65536];
57         int m_buf_start, m_buf_end, m_filter_end;
58         int m_fd_dest;
59         int m_send_pvr_commit;
60         int m_stream_mode;
61         int m_blocksize;
62
63         ePtr<iDataSource> m_raw_source;
64
65         eFixedMessagePump<int> m_messagepump;
66
67         void recvEvent(const int &evt);
68 };
69
70 #endif