mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
104 lines
2.7 KiB
C++
104 lines
2.7 KiB
C++
/*
|
|
* DAAP Support for XBMC
|
|
* Copyright (c) 2004 Forza (Chris Barnett)
|
|
* Portions Copyright (c) by the authors of libOpenDAAP
|
|
*
|
|
* 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 of the License, 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
// DAAPFile.h: interface for the CDAAPFile class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_FILEDAAP_H___INCLUDED_)
|
|
#define AFX_FILEDAAP_H___INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "lib/libXDAAP/client.h"
|
|
#include "CurlFile.h"
|
|
#include "URL.h"
|
|
|
|
class CDaapClient : public CCriticalSection
|
|
{
|
|
public:
|
|
|
|
CDaapClient();
|
|
~CDaapClient();
|
|
|
|
DAAP_SClient *m_pClient;
|
|
DAAP_SClientHost* GetHost(const CStdString &srtHost);
|
|
std::map<CStdString, DAAP_SClientHost*> m_mapHosts;
|
|
typedef std::map<CStdString, DAAP_SClientHost*>::iterator ITHOST;
|
|
|
|
DAAP_Status m_Status;
|
|
|
|
//Buffers
|
|
int m_iDatabase;
|
|
void *m_pArtistsHead;
|
|
|
|
void Release();
|
|
|
|
protected:
|
|
static void StatusCallback(DAAP_SClient *pClient, DAAP_Status status, int value, void* pContext);
|
|
};
|
|
|
|
extern CDaapClient g_DaapClient;
|
|
|
|
#include "IFile.h"
|
|
|
|
namespace XFILE
|
|
{
|
|
class CDAAPFile : public IFile
|
|
{
|
|
public:
|
|
CDAAPFile();
|
|
virtual ~CDAAPFile();
|
|
virtual int64_t GetPosition();
|
|
virtual int64_t GetLength();
|
|
virtual bool Open(const CURL& url);
|
|
virtual bool Exists(const CURL& url);
|
|
virtual int Stat(const CURL& url, struct __stat64* buffer);
|
|
virtual unsigned int Read(void* lpBuf, int64_t uiBufSize);
|
|
virtual int64_t Seek(int64_t iFilePosition, int iWhence = SEEK_SET);
|
|
virtual void Close();
|
|
virtual int IoControl(EIoControl request, void* param);
|
|
|
|
protected:
|
|
|
|
bool StartStreaming();
|
|
bool StopStreaming();
|
|
|
|
int64_t m_fileSize; //holds full size
|
|
int64_t m_filePos; //holds current position in file
|
|
|
|
|
|
DAAP_SClient *m_thisClient;
|
|
DAAP_SClientHost *m_thisHost;
|
|
DAAP_ClientHost_Song m_song;
|
|
|
|
bool m_bOpened;
|
|
|
|
CStdString m_hashurl; // the url that should be used in hash calculation
|
|
CURL m_url; // the complete url we have connected too
|
|
CCurlFile m_curl;
|
|
};
|
|
}
|
|
|
|
#endif // !defined(AFX_FILEDAAP_H___INCLUDED_)
|
|
|
|
|