]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/stream/textfilestream.h
my own uncrustify run
[xonotic/netradiant.git] / libs / stream / textfilestream.h
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #if !defined( INCLUDED_STREAM_TEXTFILESTREAM_H )
23 #define INCLUDED_STREAM_TEXTFILESTREAM_H
24
25 #include "itextstream.h"
26 #include <stdio.h>
27
28 /// \brief A wrapper around a file input stream opened for reading in text mode. Similar to std::ifstream.
29 class TextFileInputStream : public TextInputStream
30 {
31 FILE* m_file;
32 public:
33 TextFileInputStream( const char* name ){
34         m_file = name[0] == '\0' ? 0 : fopen( name, "rt" );
35 }
36 ~TextFileInputStream(){
37         if ( !failed() ) {
38                 fclose( m_file );
39         }
40 }
41
42 bool failed() const {
43         return m_file == 0;
44 }
45
46 std::size_t read( char* buffer, std::size_t length ){
47         return fread( buffer, 1, length, m_file );
48 }
49 };
50
51 /// \brief A wrapper around a file input stream opened for writing in text mode. Similar to std::ofstream.
52 class TextFileOutputStream : public TextOutputStream
53 {
54 FILE* m_file;
55 public:
56 TextFileOutputStream( const char* name ){
57         m_file = name[0] == '\0' ? 0 : fopen( name, "wt" );
58 }
59 ~TextFileOutputStream(){
60         if ( !failed() ) {
61                 fclose( m_file );
62         }
63 }
64
65 bool failed() const {
66         return m_file == 0;
67 }
68
69 std::size_t write( const char* buffer, std::size_t length ){
70         return fwrite( buffer, 1, length, m_file );
71 }
72 };
73
74 template<typename T>
75 inline TextFileOutputStream& operator<<( TextFileOutputStream& ostream, const T& t ){
76         return ostream_write( ostream, t );
77 }
78
79
80 #endif