root/src/BinaryFstream.cpp

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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
////////////////////////////////////////////////////////////////////////
// Copyright (c) Nehmulos 2011-2014
// This file is part of N0 Strain Serialization Library.
//
// N0Strain-Serialization-Library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// N0Strain-Serialization-Library 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with N0Strain-Serialization-Library.  If not, see https://gnu.org/licenses/lgpl-3.0
////////////////////////////////////////////////////////////////////////




#include "BinaryFstream.h"

namespace nw {

BinaryFstream::BinaryFstream(const char * filename, const char * mode)
{
        file = fopen(filename,mode);
        this->filepath = filename;
}

BinaryFstream::~BinaryFstream() {
        if(file != NULL)
                fclose(file);
}

void BinaryFstream::close()
{
        if(file != NULL)
        {
                fclose(file);
                file = NULL;
        }
}
bool BinaryFstream::isOpen()
{
        return file != NULL;
}

const char* BinaryFstream::getFilepath()
{
        return this->filepath;
}

void BinaryFstream::operator<<(String& value)
{
        unsigned int size = value.size();
        fwrite(&size,sizeof(size),1,file);
        char *content = new char[size];
        content = (char*)value.c_str();
        fwrite(content,size,1,file);
//      fwrite(value.data(),size,1,file);
}
void BinaryFstream::operator<<(int& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(char& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(unsigned char& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(unsigned int& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(float& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(double& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(bool value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(signed char& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(short& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(unsigned short& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(long& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(unsigned long& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(long long& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::operator<<(long double& value)
{
        fwrite(&value,sizeof(value),1,file);
}
void BinaryFstream::write(void *binaryBlob, unsigned int size)
{
        fwrite(binaryBlob,size,1,file);
}

/* Reading */
void BinaryFstream::operator>>(String& value)
{
        unsigned int size = 0;
        fread(&size,sizeof(size),1,file);
        char *content = new char[size];
        fread(content,size,1,file);
        value.assign(content,size);
}
void BinaryFstream::operator>>(int& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(char& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(unsigned char& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(unsigned int& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(float& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(double& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(bool& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(signed char& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(short& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(unsigned short& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(long& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(unsigned long& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(long long& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::operator>>(long double& value)
{
        fread(&value,sizeof(value),1,file);
}
void BinaryFstream::read(void *binaryBlob, unsigned int size)
{
        fread(binaryBlob,size,1,file);
}

}  // namespace nw