[cosmetics] update date in GPL header
[vuplus_xbmc] / xbmc / cores / dvdplayer / DVDInputStreams / DVDInputStreamTV.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2013 Team XBMC
5  *      http://www.xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 #include "DVDInputStream.h"
24
25 namespace XFILE {
26 class IFile;
27 class ILiveTVInterface;
28 class IRecordable;
29 }
30
31 class CDVDInputStreamTV
32   : public CDVDInputStream
33   , public CDVDInputStream::IChannel
34   , public CDVDInputStream::IDisplayTime
35 {
36 public:
37   CDVDInputStreamTV();
38   virtual ~CDVDInputStreamTV();
39   virtual bool    Open(const char* strFile, const std::string &content);
40   virtual void    Close();
41   virtual int     Read(BYTE* buf, int buf_size);
42   virtual int64_t Seek(int64_t offset, int whence);
43   virtual bool Pause(double dTime) { return false; };
44   virtual bool    IsEOF();
45   virtual int64_t GetLength();
46
47   virtual ENextStream NextStream();
48   virtual int     GetBlockSize();
49
50   bool            NextChannel(bool preview = false);
51   bool            PrevChannel(bool preview = false);
52   bool            SelectChannelByNumber(unsigned int channel);
53
54   int             GetTotalTime();
55   int             GetTime();
56
57   bool            SeekTime(int iTimeInMsec);
58
59   bool            CanRecord();
60   bool            IsRecording();
61   bool            Record(bool bOnOff);
62
63   bool            CanPause() { return false; };
64   bool            CanSeek() { return false; };
65
66   bool            UpdateItem(CFileItem& item);
67
68 protected:
69   XFILE::IFile*            m_pFile;
70   XFILE::ILiveTVInterface* m_pLiveTV;
71   XFILE::IRecordable*      m_pRecordable;
72   bool m_eof;
73 };
74