summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/fsblk.cpp
blob: 8dfedcc4941bf41b0d7122a9dfc83460027d277d (plain) (blame)
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert

// Filesystem operations on mounted image blocks

#include "fsblk.h"

#include "multibyte.h"
#include "strformat.h"

#include <cstring>
#include <stdexcept>

namespace fs {

void refcounted_inner::ref()
{
	m_ref ++;
}

void refcounted_inner::ref_weak()
{
	m_weak_ref ++;
}

bool refcounted_inner::unref()
{
	m_ref --;
	if(m_ref == 0) {
		if(m_weak_ref)
			drop_weak_references();
		else
			delete this;
		return true;
	}
	return false;
}

bool refcounted_inner::unref_weak()
{
	m_weak_ref --;
	if(m_weak_ref == 0 && m_ref == 0) {
		delete this;
		return true;
	}
	return false;
}



void fsblk_t::set_block_size(u32 block_size)
{
	m_block_size = block_size;
}

u8 *fsblk_t::iblock_t::offset(const char *function, u32 off, u32 size)
{
	if(off + size > m_size)
		throw std::out_of_range(util::string_format("block_t::%s out-of-block access, offset=%d, size=%d, block size=%d", function, off, size, m_size));
	return data() + off;
}

const u8 *fsblk_t::iblock_t::rooffset(const char *function, u32 off, u32 size)
{
	if(off + size > m_size)
		throw std::out_of_range(util::string_format("block_t::%s out-of-block read access, offset=%d, size=%d, block size=%d", function, off, size, m_size));
	return rodata() + off;
}

void fsblk_t::block_t::copy(u32 offset, const u8 *src, u32 size)
{
	memcpy(m_object->offset("copy", offset, size), src, size);
}

void fsblk_t::block_t::fill(u32 offset, u8 data, u32 size)
{
	memset(m_object->offset("fill", offset, size), data, size);
}

void fsblk_t::block_t::fill(u8 data)
{
	memset(m_object->data(), data, m_object->size());
}

void fsblk_t::block_t::wstr(u32 offset, std::string_view str)
{
	memcpy(m_object->offset("wstr", offset, str.size()), str.data(), str.size());
}

void fsblk_t::block_t::w8(u32 offset, u8 data)
{
	m_object->offset("w8", offset, 1)[0] = data;
}

void fsblk_t::block_t::w16b(u32 offset, u16 data)
{
	put_u16be(m_object->offset("w16b", offset, 2), data);
}

void fsblk_t::block_t::w24b(u32 offset, u32 data)
{
	put_u24be(m_object->offset("w24b", offset, 3), data);
}

void fsblk_t::block_t::w32b(u32 offset, u32 data)
{
	put_u32be(m_object->offset("w32b", offset, 4), data);
}

void fsblk_t::block_t::w16l(u32 offset, u16 data)
{
	put_u16le(m_object->offset("w16l", offset, 2), data);
}

void fsblk_t::block_t::w24l(u32 offset, u32 data)
{
	put_u24le(m_object->offset("w24l", offset, 3), data);
}

void fsblk_t::block_t::w32l(u32 offset, u32 data)
{
	put_u32le(m_object->offset("w32l", offset, 4), data);
}

std::string_view fsblk_t::block_t::rstr(u32 offset, u32 size) const
{
	const u8 *d = m_object->rooffset("rstr", offset, size);
	return std::string_view(reinterpret_cast<const char *>(d), size);
}

u8 fsblk_t::block_t::r8(u32 offset) const
{
	return m_object->offset("r8", offset, 1)[0];
}

u16 fsblk_t::block_t::r16b(u32 offset) const
{
	return get_u16be(m_object->offset("r16b", offset, 2));
}

u32 fsblk_t::block_t::r24b(u32 offset) const
{
	return get_u24be(m_object->offset("r24b", offset, 3));
}

u32 fsblk_t::block_t::r32b(u32 offset) const
{
	return get_u32be(m_object->offset("r32b", offset, 4));
}

u16 fsblk_t::block_t::r16l(u32 offset) const
{
	return get_u16le(m_object->offset("r16l", offset, 2));
}

u32 fsblk_t::block_t::r24l(u32 offset) const
{
	return get_u24le(m_object->offset("r24l", offset, 3));
}

u32 fsblk_t::block_t::r32l(u32 offset) const
{
	return get_u32le(m_object->offset("r32l", offset, 4));
}



void filesystem_t::wstr(u8 *p, std::string_view str)
{
	memcpy(p, str.data(), str.size());
}

std::string_view filesystem_t::rstr(const u8 *p, u32 size)
{
	return std::string_view(reinterpret_cast<const char *>(p), size);
}

std::string_view filesystem_t::trim_end_spaces(std::string_view str)
{
	const auto i = str.find_last_not_of(' ');
	return str.substr(0, (std::string::npos != i) ? (i + 1) : 0);
}

meta_data filesystem_t::volume_metadata()
{
	return meta_data();
}

std::error_condition filesystem_t::volume_metadata_change(const meta_data &meta)
{
	return error::unsupported;
}

std::pair<std::error_condition, meta_data> filesystem_t::metadata(const std::vector<std::string> &path)
{
	return std::make_pair(error::unsupported, meta_data());
}

std::error_condition filesystem_t::metadata_change(const std::vector<std::string> &path, const meta_data &meta)
{
	return error::unsupported;
}

std::pair<std::error_condition, std::vector<dir_entry>> filesystem_t::directory_contents(const std::vector<std::string> &path)
{
	return std::make_pair(error::unsupported, std::vector<dir_entry>());
}

std::error_condition filesystem_t::rename(const std::vector<std::string> &opath, const std::vector<std::string> &npath)
{
	return error::unsupported;
}

std::error_condition filesystem_t::remove(const std::vector<std::string> &path)
{
	return error::unsupported;
}

std::error_condition filesystem_t::dir_create(const std::vector<std::string> &path, const meta_data &meta)
{
	return error::unsupported;
}

std::error_condition filesystem_t::file_create(const std::vector<std::string> &path, const meta_data &meta)
{
	return error::unsupported;
}

std::pair<std::error_condition, std::vector<u8>> filesystem_t::file_read(const std::vector<std::string> &path)
{
	return std::make_pair(error::unsupported, std::vector<u8>());
}

std::error_condition filesystem_t::file_write(const std::vector<std::string> &path, const std::vector<u8> &data)
{
	return error::unsupported;
}

std::pair<std::error_condition, std::vector<u8>> filesystem_t::file_rsrc_read(const std::vector<std::string> &path)
{
	return std::make_pair(error::unsupported, std::vector<u8>());
}

std::error_condition filesystem_t::file_rsrc_write(const std::vector<std::string> &path, const std::vector<u8> &data)
{
	return error::unsupported;
}

std::error_condition filesystem_t::format(const meta_data &meta)
{
	return error::unsupported;
}

std::error_category const &fs_category() noexcept
{
	class fs_category_impl : public std::error_category
	{
	public:
		virtual char const *name() const noexcept override { return "fs"; }

		virtual std::string message(int condition) const override
		{
			using namespace std::literals;
			static std::string_view const s_messages[] = {
					"No error"sv,
					"Unsupported operation"sv,
					"File or directory not found"sv,
					"No space on volume"sv,
					"Invalid block number"sv,
					"Invalid filename or path"sv,
					"Incorrect file size"sv,
					"File already exists"sv,
			};
			if ((0 <= condition) && (std::size(s_messages) > condition))
				return std::string(s_messages[condition]);
			else
				return "Unknown error"s;
		}
	};
	static fs_category_impl const s_fs_category_instance;
	return s_fs_category_instance;
}

} // namespace fs