Merge pull request #5095 from koying/fixdroidappcrash
[vuplus_xbmc] / xbmc / filesystem / FileCache.h
1 #pragma once
2 /*
3  *      Copyright (C) 2005-2013 Team XBMC
4  *      http://xbmc.org
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, or (at your option)
9  *  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 XBMC; see the file COPYING.  If not, see
18  *  <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 #include "IFile.h"
23 #include "CacheStrategy.h"
24 #include "threads/CriticalSection.h"
25 #include "File.h"
26 #include "threads/Thread.h"
27
28 namespace XFILE
29 {
30
31   class CFileCache : public IFile, public CThread
32   {
33   public:
34     CFileCache(bool useDoubleCache=false);
35     CFileCache(CCacheStrategy *pCache, bool bDeleteCache=true);
36     virtual ~CFileCache();
37
38     void SetCacheStrategy(CCacheStrategy *pCache, bool bDeleteCache=true);
39
40     // CThread methods
41     virtual void Process();
42     virtual void OnExit();
43     virtual void StopThread(bool bWait = true);
44
45     // IFIle methods
46     virtual bool          Open(const CURL& url);
47     virtual void          Close();
48     virtual bool          Exists(const CURL& url);
49     virtual int           Stat(const CURL& url, struct __stat64* buffer);
50
51     virtual unsigned int  Read(void* lpBuf, int64_t uiBufSize);
52
53     virtual int64_t       Seek(int64_t iFilePosition, int iWhence);
54     virtual int64_t       GetPosition();
55     virtual int64_t       GetLength();
56
57     virtual int           IoControl(EIoControl request, void* param);
58
59     IFile *GetFileImp();
60
61     virtual CStdString GetContent();
62     virtual std::string GetContentCharset(void);
63
64   private:
65     CCacheStrategy *m_pCache;
66     bool      m_bDeleteCache;
67     int        m_seekPossible;
68     CFile      m_source;
69     CStdString    m_sourcePath;
70     CEvent      m_seekEvent;
71     CEvent      m_seekEnded;
72     int64_t      m_nSeekResult;
73     int64_t      m_seekPos;
74     int64_t      m_readPos;
75     int64_t      m_writePos;
76     unsigned     m_chunkSize;
77     unsigned     m_writeRate;
78     unsigned     m_writeRateActual;
79     bool         m_cacheFull;
80     CCriticalSection m_sync;
81   };
82
83 }