]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/file.h
misc fixes
[xonotic/netradiant.git] / radiant / file.h
1 /*
2 Copyright (c) 2001, Loki software, inc.
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without modification, 
6 are permitted provided that the following conditions are met:
7
8 Redistributions of source code must retain the above copyright notice, this list 
9 of conditions and the following disclaimer.
10
11 Redistributions in binary form must reproduce the above copyright notice, this
12 list of conditions and the following disclaimer in the documentation and/or
13 other materials provided with the distribution.
14
15 Neither the name of Loki software nor the names of its contributors may be used 
16 to endorse or promote products derived from this software without specific prior 
17 written permission. 
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' 
20 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
21 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
22 DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY 
23 DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
24 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
25 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 
26 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
29 */
30
31 //
32 //      file.h
33 ////////////////////////////////////////////////////
34
35 #ifndef _FILE_H_
36 #define _FILE_H_
37
38 //#include <stdio.h>
39
40 class MemStream : public IDataStream
41 {
42 public:
43         MemStream();
44         MemStream(unsigned long nLen);
45         virtual ~MemStream();
46
47         int refCount;
48         void IncRef() { refCount++; }
49         void DecRef() { refCount--; if (refCount <= 0) delete this; }
50
51 protected:
52         // MemFile specific:
53         unsigned long m_nGrowBytes;
54         unsigned long m_nPosition;
55         unsigned long m_nBufferSize;
56         unsigned long m_nFileSize;
57         unsigned char* m_pBuffer;
58         bool m_bAutoDelete;
59         void GrowFile(unsigned long nNewLen);
60
61 public:
62         unsigned long GetPosition() const;
63         unsigned long Seek(long lOff, int nFrom);
64         void SetLength(unsigned long nNewLen);
65         unsigned long GetLength() const;
66
67         unsigned char* GetBuffer () const
68           { return m_pBuffer; }
69
70         char* ReadString(char* pBuf, unsigned long nMax);
71         unsigned long Read(void* pBuf, unsigned long nCount);
72         unsigned long Write(const void* pBuf, unsigned long nCount);
73         int GetChar();
74         int PutChar(int c);
75   
76   void printf(const char*, ...); ///< \todo implement on MemStream
77
78         void Abort();
79         void Flush();
80         void Close();
81         bool Open(const char *filename, const char *mode);
82 };
83
84 class FileStream : public IDataStream
85 {
86 public:
87         FileStream();
88         virtual ~FileStream();
89
90         int refCount;
91         void IncRef() { refCount++; }
92         void DecRef() { refCount--; if (refCount <= 0) delete this; }
93
94 protected:
95         // DiscFile specific:
96         FILE* m_hFile;
97         bool m_bCloseOnDelete;
98
99 public:
100         unsigned long GetPosition() const;
101         unsigned long Seek(long lOff, int nFrom);
102         void SetLength(unsigned long nNewLen);
103         unsigned long GetLength() const;
104
105         char* ReadString(char* pBuf, unsigned long nMax);
106         unsigned long Read(void* pBuf, unsigned long nCount);
107         unsigned long Write(const void* pBuf, unsigned long nCount);
108         int GetChar();
109         int PutChar(int c);
110
111   void printf(const char*, ...); ///< completely matches the usual printf behaviour
112
113         void Abort();
114         void Flush();
115         void Close();
116         bool Open(const char *filename, const char *mode);
117 };
118
119 #endif // _FILE_H_