Update CMake to 3.2.1 in .travis.yml
[supertux.git] / src / physfs / ofile_streambuf.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "physfs/ofile_streambuf.hpp"
18
19 #include <sstream>
20 #include <stdexcept>
21
22 OFileStreambuf::OFileStreambuf(const std::string& filename) :
23   file()
24 {
25   file = PHYSFS_openWrite(filename.c_str());
26   if(file == 0) {
27     std::stringstream msg;
28     msg << "Couldn't open file '" << filename << "': "
29         << PHYSFS_getLastError();
30     throw std::runtime_error(msg.str());
31   }
32
33   setp(buf, buf+sizeof(buf));
34 }
35
36 OFileStreambuf::~OFileStreambuf()
37 {
38   sync();
39   PHYSFS_close(file);
40 }
41
42 int
43 OFileStreambuf::overflow(int c)
44 {
45   char c2 = (char)c;
46
47   if(pbase() == pptr())
48     return 0;
49
50   size_t size = pptr() - pbase();
51   PHYSFS_sint64 res = PHYSFS_write(file, pbase(), 1, size);
52   if(res <= 0)
53     return traits_type::eof();
54
55   if(c != traits_type::eof()) {
56     PHYSFS_sint64 res_ = PHYSFS_write(file, &c2, 1, 1);
57     if(res_ <= 0)
58       return traits_type::eof();
59   }
60
61   setp(buf, buf + res);
62   return 0;
63 }
64
65 int
66 OFileStreambuf::sync()
67 {
68   return overflow(traits_type::eof());
69 }
70
71 /* EOF */