GCC Code Coverage Report
Directory: src/ Exec Total Coverage
File: src/fs/virtfs/rwops.cpp Lines: 15 22 68.2 %
Date: 2021-03-17 Branches: 4 18 22.2 %

Line Branch Exec Source
1
/*
2
 *  The ManaPlus Client
3
 *  Copyright (C) 2013-2019  The ManaPlus Developers
4
 *  Copyright (C) 2009-2021  Andrei Karas
5
 *
6
 *  This file is part of The ManaPlus Client.
7
 *
8
 *  This program is free software; you can redistribute it and/or modify
9
 *  it under the terms of the GNU General Public License as published by
10
 *  the Free Software Foundation; either version 2 of the License, or
11
 *  any later version.
12
 *
13
 *  This program is distributed in the hope that it will be useful,
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 *  GNU General Public License for more details.
17
 *
18
 *  You should have received a copy of the GNU General Public License
19
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 */
21
22
/*
23
 * This code provides a glue layer between PhysicsFS and Simple Directmedia
24
 *  Layer's (SDL) RWops i/o abstraction.
25
 *
26
 * License: this code is public domain. I make no warranty that it is useful,
27
 *  correct, harmless, or environmentally safe.
28
 *
29
 * This particular file may be used however you like, including copying it
30
 *  verbatim into a closed-source project, exploiting it commercially, and
31
 *  removing any trace of my name from the source (although I hope you won't
32
 *  do that). I welcome enhancements and corrections to this file, but I do
33
 *  not require you to send me patches if you make changes. This code has
34
 *  NO WARRANTY.
35
 *
36
 * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
37
 *  Please see LICENSE.txt in the root of the source tree.
38
 *
39
 * SDL falls under the LGPL license. You can get SDL at http://www.libsdl.org/
40
 *
41
 *  This file was written by Ryan C. Gordon. ([email protected]).
42
 *
43
 *  Copyright (C) 2012-2019  The ManaPlus Developers
44
 *  Copyright (C) 2009-2021  Andrei Karas
45
 */
46
47
#include "fs/virtfs/rwops.h"
48
49
#include "fs/virtfs/file.h"
50
#include "fs/virtfs/fs.h"
51
#include "fs/virtfs/fsfuncs.h"
52
53
#include "utils/checkutils.h"
54
#include "utils/fuzzer.h"
55
56
PRAGMA48(GCC diagnostic push)
57
PRAGMA48(GCC diagnostic ignored "-Wshadow")
58
#include <SDL_rwops.h>
59
PRAGMA48(GCC diagnostic pop)
60
61
#include "debug.h"
62
63
namespace VirtFs
64
{
65
66
2334
SDL_RWops *create_rwops(File *const file,
67
                        const std::string &restrict fname)
68
{
69
2334
    SDL_RWops *retval = nullptr;
70
71
2334
    if (file == nullptr)
72
    {
73
        reportAlways("VirtFs::rwops_seek: create rwops error: %s",
74
            fname.c_str())
75
    }
76
    else
77
    {
78
2334
        retval = SDL_AllocRW();
79
2334
        if (retval != nullptr)
80
        {
81
#ifdef USE_SDL2
82
2334
            retval->size  = file->funcs->rwops_size;
83
#endif  // USE_SDL2
84
85
2334
            retval->seek  = file->funcs->rwops_seek;
86
2334
            retval->read  = file->funcs->rwops_read;
87
2334
            retval->write = file->funcs->rwops_write;
88
2334
            retval->close = file->funcs->rwops_close;
89
2334
            retval->hidden.unknown.data1 = file;
90
        } /* if */
91
    } /* else */
92
93
2334
    return retval;
94
} /* VirtFs::create_rwops */
95
96
#ifdef __APPLE__
97
static bool checkFilePath(const std::string &restrict fname)
98
{
99
    if (fname.empty())
100
        return false;
101
    if (!exists(fname) || isDirectory(fname))
102
        return false;
103
    return true;
104
}
105
#endif  // __APPLE__
106
107
2334
SDL_RWops *rwopsOpenRead(const std::string &restrict fname)
108
{
109
    BLOCK_START("RWopsopenRead")
110
#ifdef __APPLE__
111
    if (!checkFilePath(fname))
112
        return nullptr;
113
#endif  // __APPLE__
114
#ifdef USE_FUZZER
115
    if (Fuzzer::conditionTerminate(fname))
116
        return nullptr;
117
#endif  // USE_FUZZER
118
#ifdef USE_PROFILER
119
120
    SDL_RWops *const ret = create_rwops(openRead(fname),
121
        fname);
122
123
    BLOCK_END("RWopsopenRead")
124
    return ret;
125
#else  // USE_PROFILER
126
127
4668
    return create_rwops(openRead(fname),
128
4668
        fname);
129
#endif  // USE_PROFILER
130
} /* RWopsopenRead */
131
132
SDL_RWops *rwopsOpenWrite(const std::string &restrict fname)
133
{
134
#ifdef __APPLE__
135
    if (!checkFilePath(fname))
136
        return nullptr;
137
#endif  // __APPLE__
138
139
    return create_rwops(openWrite(fname),
140
        fname);
141
} /* RWopsopenWrite */
142
143
SDL_RWops *rwopsOpenAppend(const std::string &restrict fname)
144
{
145
#ifdef __APPLE__
146
    if (!checkFilePath(fname))
147
        return nullptr;
148
#endif  // __APPLE__
149
150
    return create_rwops(openAppend(fname),
151
        fname);
152
} /* RWopsopenAppend */
153
154
}  // namespace VirtFs
155
156
/* end of virtfsrwops.c ... */