src/physfs/ofile_streambuf.cpp

Go to the documentation of this file.
00001 //  SuperTux
00002 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
00003 //
00004 //  This program is free software: you can redistribute it and/or modify
00005 //  it under the terms of the GNU General Public License as published by
00006 //  the Free Software Foundation, either version 3 of the License, or
00007 //  (at your option) any later version.
00008 //
00009 //  This program is distributed in the hope that it will be useful,
00010 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012 //  GNU General Public License for more details.
00013 //
00014 //  You should have received a copy of the GNU General Public License
00015 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
00016 
00017 #include "physfs/ofile_streambuf.hpp"
00018 
00019 #include <sstream>
00020 #include <stdexcept>
00021 
00022 OFileStreambuf::OFileStreambuf(const std::string& filename) :
00023   file()
00024 {
00025   file = PHYSFS_openWrite(filename.c_str());
00026   if(file == 0) {
00027     std::stringstream msg;
00028     msg << "Couldn't open file '" << filename << "': "
00029         << PHYSFS_getLastError();
00030     throw std::runtime_error(msg.str());
00031   }
00032 
00033   setp(buf, buf+sizeof(buf));
00034 }
00035 
00036 OFileStreambuf::~OFileStreambuf()
00037 {
00038   sync();
00039   PHYSFS_close(file);
00040 }
00041 
00042 int
00043 OFileStreambuf::overflow(int c)
00044 {
00045   char c2 = (char)c;
00046 
00047   if(pbase() == pptr())
00048     return 0;
00049 
00050   size_t size = pptr() - pbase();
00051   PHYSFS_sint64 res = PHYSFS_write(file, pbase(), 1, size);
00052   if(res <= 0)
00053     return traits_type::eof();
00054 
00055   if(c != traits_type::eof()) {
00056     PHYSFS_sint64 res = PHYSFS_write(file, &c2, 1, 1);
00057     if(res <= 0)
00058       return traits_type::eof();
00059   }
00060 
00061   setp(buf, buf + res);
00062   return 0;
00063 }
00064 
00065 int
00066 OFileStreambuf::sync()
00067 {
00068   return overflow(traits_type::eof());
00069 }
00070 
00071 /* EOF */

Generated on Mon Jun 9 03:38:20 2014 for SuperTux by  doxygen 1.5.1