Merge pull request #4676 from jmarshallnz/dont_set_scraper_on_tvshow_on_nfo
[vuplus_xbmc] / xbmc / utils / RingBuffer.h
1 #pragma once
2 /*
3  *      Copyright (C) 2010-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 "threads/CriticalSection.h"
23
24 class CRingBuffer
25 {
26   CCriticalSection m_critSection;
27   char *m_buffer;
28   unsigned int m_size;
29   unsigned int m_readPtr;
30   unsigned int m_writePtr;
31   unsigned int m_fillCount;
32 public:
33   CRingBuffer();
34   ~CRingBuffer();
35   bool Create(unsigned int size);
36   void Destroy();
37   void Clear();
38   bool ReadData(char *buf, unsigned int size);
39   bool ReadData(CRingBuffer &rBuf, unsigned int size);
40   bool WriteData(const char *buf, unsigned int size);
41   bool WriteData(CRingBuffer &rBuf, unsigned int size);
42   bool SkipBytes(int skipSize);
43   bool Append(CRingBuffer &rBuf);
44   bool Copy(CRingBuffer &rBuf);
45   char *getBuffer();
46   unsigned int getSize();
47   unsigned int getReadPtr();
48   unsigned int getWritePtr();
49   unsigned int getMaxReadSize();
50   unsigned int getMaxWriteSize();
51 };