Merge pull request #2748 from bobo1on1/32bitmul
[vuplus_xbmc] / xbmc / filesystem / HDFile.h
1 /*
2  * XBMC Media Center
3  * Copyright (c) 2002 Frodo
4  * Portions Copyright (c) by the authors of ffmpeg and xvid
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 // FileHD.h: interface for the CHDFile class.
22 //
23 //////////////////////////////////////////////////////////////////////
24
25 #if !defined(AFX_FILEHD_H__DD2B0A9E_4971_4A29_B525_78CEFCDAF4A1__INCLUDED_)
26 #define AFX_FILEHD_H__DD2B0A9E_4971_4A29_B525_78CEFCDAF4A1__INCLUDED_
27
28 #if _MSC_VER > 1000
29 #pragma once
30 #endif // _MSC_VER > 1000
31
32 #include "IFile.h"
33 #include "utils/AutoPtrHandle.h"
34
35 namespace XFILE
36 {
37 class CHDFile : public IFile
38 {
39 public:
40   CHDFile();
41   virtual ~CHDFile();
42   virtual int64_t GetPosition();
43   virtual int64_t GetLength();
44   virtual bool Open(const CURL& url);
45   virtual bool Exists(const CURL& url);
46   virtual int Stat(const CURL& url, struct __stat64* buffer);
47   virtual int Stat(struct __stat64* buffer);
48   virtual unsigned int Read(void* lpBuf, int64_t uiBufSize);
49   virtual int Write(const void* lpBuf, int64_t uiBufSize);
50   virtual int64_t Seek(int64_t iFilePosition, int iWhence = SEEK_SET);
51   virtual int Truncate(int64_t size);
52   virtual void Close();
53   virtual void Flush();
54
55   virtual bool OpenForWrite(const CURL& url, bool bOverWrite = false);
56
57   virtual bool Delete(const CURL& url);
58   virtual bool Rename(const CURL& url, const CURL& urlnew);
59   virtual bool SetHidden(const CURL& url, bool hidden);
60
61   virtual int IoControl(EIoControl request, void* param);
62 protected:
63   CStdString GetLocal(const CURL &url); /* crate a properly format path from an url */
64   AUTOPTR::CAutoPtrHandle m_hFile;
65   int64_t m_i64FilePos;
66   int64_t m_i64FileLen;
67 };
68
69 }
70 #endif // !defined(AFX_FILEHD_H__DD2B0A9E_4971_4A29_B525_78CEFCDAF4A1__INCLUDED_)