summaryrefslogtreecommitdiff
path: root/Source/growbuf.h
blob: 6c6c905c13997d0bf22866cdc64b74c51ac300ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef __GROWBUF_H_
#define __GROWBUF_H_

class IGrowBuf
{
  public:
    virtual ~IGrowBuf() {}
    virtual int add(const void *data, int len)=0;
    virtual void resize(int newlen)=0;
    virtual int getlen() const=0;
    virtual void *get() const=0;
};

class GrowBuf : public IGrowBuf
{
  private: // don't copy instances
    GrowBuf(const GrowBuf&);
    void operator=(const GrowBuf&);

  public:
    GrowBuf();
    virtual ~GrowBuf();

    void set_zeroing(int zero);
    int add(const void *data, int len);
    void resize(int newlen);
    int getlen() const;
    void *get() const;

  private:
    void *m_s;
    int m_alloc;
    int m_used;
    int m_zero;

  protected:
    int m_bs;
};

class TinyGrowBuf : public GrowBuf {
  public:
    TinyGrowBuf() : GrowBuf() { m_bs=1024; }
};

#endif