summaryrefslogtreecommitdiffstats
path: root/src/common/resources/resourcestreambuffer.cpp
blob: e7be51d6de93c07a7af5aa900823409cf57bb8f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// * This file is part of the COLOBOT source code
// * Copyright (C) 2014 Polish Portal of Colobot (PPC)
// *
// * This program is free software: you can redistribute it and/or modify
// * it under the terms of the GNU General Public License as published by
// * the Free Software Foundation, either version 3 of the License, or
// * (at your option) any later version.
// *
// * This program is distributed in the hope that it will be useful,
// * but WITHOUT ANY WARRANTY; without even the implied warranty of
// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// * GNU General Public License for more details.
// *
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see  http://www.gnu.org/licenses/.

#include "common/resources/resourcestreambuffer.h"

#include <stdexcept>
#include <sstream>

CResourceStreamBuffer::CResourceStreamBuffer(size_t buffer_size) : m_buffer_size(buffer_size)
{
    if (buffer_size <= 0)
    {
        throw std::runtime_error("File buffer must be larger then 0 bytes");
    }

    m_buffer = new char[buffer_size];
}


CResourceStreamBuffer::~CResourceStreamBuffer()
{
    close();
    delete m_buffer;
}


void CResourceStreamBuffer::open(const std::string &filename)
{
    if (PHYSFS_isInit())
    {
        m_file = PHYSFS_openRead(filename.c_str());
    }
}


void CResourceStreamBuffer::close()
{
    if (is_open())
    {
        PHYSFS_close(m_file);
    }
}


bool CResourceStreamBuffer::is_open()
{
    return m_file;
}


size_t CResourceStreamBuffer::size()
{
    return PHYSFS_fileLength(m_file);
}


std::streambuf::int_type CResourceStreamBuffer::underflow()
{
    if (PHYSFS_eof(m_file))
    {
        return traits_type::eof();
    }
    
    PHYSFS_sint64 read_count = PHYSFS_read(m_file, m_buffer, sizeof(char), m_buffer_size);
    if (read_count <= 0)
    {
        return traits_type::eof();
    }
    
    setg(m_buffer, m_buffer, m_buffer + read_count);

    return traits_type::to_int_type(*gptr());
}


std::streampos CResourceStreamBuffer::seekpos(std::streampos sp, std::ios_base::openmode which)
{
    return seekoff(off_type(sp), std::ios_base::beg, which);
}


std::streampos CResourceStreamBuffer::seekoff(std::streamoff off, std::ios_base::seekdir way, std::ios_base::openmode which)
{
    /* A bit of explanation:
       We are reading file by m_buffer_size parts so our 3 internal pointers will be
       * eback (not used here) - start of block
       * gptr - position of read cursor in block
       * egtpr - end of block
       off argument is relative to way */
    
    switch (way)
    {
        case std::ios_base::beg:
            return pos_type(off_type(off));

        case std::ios_base::cur:
            // tell will give cursor at begining of block so we have to add where in block we currently are
            return off + static_cast<off_type>(PHYSFS_tell(m_file)) - static_cast<off_type> (egptr() - gptr());

        case std::ios_base::end:
            return off + static_cast<off_type>(PHYSFS_fileLength(m_file));
            
        default:
            break;
    }

    return pos_type(off_type(-1));
}