Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_descriptor.cpp « Internal « Source - github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 411c9f460503520c87dbad447529a5ebb72a7992 (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
//-----------------------------------------------------------------------------
//           Name: file_descriptor.cpp
//      Developer: Wolfire Games LLC
//    Description:
//        License: Read below
//-----------------------------------------------------------------------------
//
//   Copyright 2022 Wolfire Games LLC
//
//   Licensed under the Apache License, Version 2.0 (the "License");
//   you may not use this file except in compliance with the License.
//   You may obtain a copy of the License at
//
//       http://www.apache.org/licenses/LICENSE-2.0
//
//   Unless required by applicable law or agreed to in writing, software
//   distributed under the License is distributed on an "AS IS" BASIS,
//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//   See the License for the specific language governing permissions and
//   limitations under the License.
//
//-----------------------------------------------------------------------------
#include "file_descriptor.h"

#include <Compat/fileio.h>
#include <Logging/logdata.h>

#include <cstring>

bool DiskFileDescriptor::ReadBytes(void* dst, int num_bytes) {
    int elements_read = fread(dst, num_bytes, 1, file_);
    if (ferror(file_)) {
        perror("File error:");
    }
    if (feof(file_)) {
        LOGE << "End of file" << std::endl;
    }
    return (elements_read == 1);
}

bool DiskFileDescriptor::WriteBytes(const void* src, int num_bytes) {
    return (fwrite(src, num_bytes, 1, file_) == 1);
}

bool DiskFileDescriptor::Open(const std::string& abs_path, const std::string& mode) {
    file_ = my_fopen(abs_path.c_str(), mode.c_str());
    return (file_ != NULL);
}

bool DiskFileDescriptor::Close() {
    int ret = fclose(file_);
    file_ = 0;
    return ret == 0;
}

int DiskFileDescriptor::GetSize() {
    int index = ftell(file_);
    fseek(file_, 0, SEEK_END);
    int file_size = ftell(file_);
    fseek(file_, index, SEEK_SET);
    return file_size;
}

DiskFileDescriptor::~DiskFileDescriptor() {
    if (file_) {
        fclose(file_);
    }
}

int DiskFileDescriptor::ReadBytesPartial(void* dst, int num_bytes) {
    return fread(dst, 1, num_bytes, file_);
}

bool MemReadFileDescriptor::ReadBytes(void* dst, int num_bytes) {
    if (!ptr_) {
        return false;
    }
    if (num_bytes == 0) {
        return true;
    }
    memcpy(dst, (char*)ptr_ + index_, num_bytes);
    index_ += num_bytes;
    return true;  // memcpy performs no error checking
}

bool MemWriteFileDescriptor::WriteBytes(const void* src, int num_bytes) {
    if (num_bytes == 0) {
        return true;
    }
    vec_.resize(vec_.size() + num_bytes);
    uint8_t* dst = &vec_[vec_.size() - num_bytes];
    memcpy(dst, src, num_bytes);
    return true;  // memcpy performs no error checking
}