1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#pragma once
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "IFile.h"
#include "ILiveTV.h"
#include "MythSession.h"
#include "XBDateTime.h"
#include "video/VideoInfoTag.h"
#include <queue>
extern "C" {
#include "cmyth/include/cmyth/cmyth.h"
}
class DllLibCMyth;
namespace XFILE
{
class CMythFile
: public IFile
, ILiveTVInterface
, IRecordable
, private CMythSession::IEventListener
{
public:
CMythFile();
virtual ~CMythFile();
virtual bool Open(const CURL& url);
virtual int64_t Seek(int64_t pos, int whence=SEEK_SET);
virtual int64_t GetPosition();
virtual int64_t GetLength();
virtual int Stat(const CURL& url, struct __stat64* buffer) { return -1; }
virtual void Close();
virtual ssize_t Read(void* buffer, size_t size);
virtual std::string GetContent() { return ""; }
virtual bool SkipNext();
virtual bool Delete(const CURL& url);
virtual bool Exists(const CURL& url);
virtual int GetChunkSize() {return 1;};
virtual ILiveTVInterface* GetLiveTV() {return (ILiveTVInterface*)this;}
virtual bool NextChannel(bool preview = false);
virtual bool PrevChannel(bool preview = false);
virtual bool SelectChannel(unsigned int channel);
virtual int GetTotalTime();
virtual int GetStartTime();
virtual bool UpdateItem(CFileItem& item);
virtual IRecordable* GetRecordable() {return (IRecordable*)this;}
virtual bool CanRecord();
virtual bool IsRecording();
virtual bool Record(bool bOnOff);
virtual bool GetCommBreakList(cmyth_commbreaklist_t& commbreaklist);
virtual bool GetCutList(cmyth_commbreaklist_t& commbreaklist);
virtual int IoControl(EIoControl request, void* param);
protected:
virtual void OnEvent(int event, const std::string& data);
bool HandleEvents();
bool ChangeChannel(int direction, const std::string &channel);
bool SetupConnection(const CURL& url, bool control, bool event, bool database);
bool SetupRecording(const CURL& url);
bool SetupLiveTV(const CURL& url);
bool SetupFile(const CURL& url);
std::string GetValue(char* str) { return m_session->GetValue(str); }
CDateTime GetValue(const cmyth_timestamp_t t) { return m_session->GetValue(t); }
CMythSession* m_session;
DllLibCMyth* m_dll;
cmyth_conn_t m_control;
cmyth_database_t m_database;
cmyth_recorder_t m_recorder;
cmyth_proginfo_t m_program;
cmyth_file_t m_file;
std::string m_filename;
CVideoInfoTag m_infotag;
CCriticalSection m_section;
std::queue<std::pair<int, std::string> > m_events;
bool m_recording;
unsigned int m_timestamp;
};
}
|