Files
Rocky5 921f9fe9f8 Clean Copy
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
2024-01-08 19:01:29 +00:00

120 lines
3.4 KiB
C++

#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 "lib/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 unsigned int Read(void* buffer, int64_t size);
virtual CStdString 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();
virtual bool PrevChannel();
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 CStdString &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);
CStdString 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;
cmyth_timestamp_t m_starttime;
CStdString m_filename;
CVideoInfoTag m_infotag;
CCriticalSection m_section;
std::queue<std::pair<int, std::string> > m_events;
bool m_recording;
unsigned int m_timestamp;
};
}