]> git.tdb.fi Git - libs/core.git/blob - source/memory.h
Add Memory class
[libs/core.git] / source / memory.h
1 /* $Id$
2
3 This file is part of libmspio
4 Copyright © 2009 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_IO_MEMORY_H_
9 #define MSP_IO_MEMORY_H_
10
11 #include "base.h"
12 #include "seek.h"
13
14 namespace Msp {
15 namespace IO {
16
17 class Memory: public Base
18 {
19 private:
20         char *begin;
21         char *end;
22         char *pos;
23
24 public:
25         Memory(char *, unsigned);
26         Memory(char *, char *);
27         Memory(const char *, unsigned);
28         Memory(const char *, const char *);
29 private:
30         void init(char *, char *, Mode);
31
32 public:
33         virtual unsigned put(char);
34         virtual bool getline(std::string &);
35         virtual int get();
36         unsigned seek(int, SeekType);
37         unsigned tell() const { return pos-begin; }
38         virtual Handle get_event_handle();
39 private:
40         virtual unsigned do_write(const char *, unsigned);
41         virtual unsigned do_read(char *, unsigned);
42         void check_mode(Mode) const;
43 };
44
45 } // namespace IO
46 } // namespace Msp
47
48 #endif