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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
#include "index.h"
#include "array.h"
#include "internal.h"
extern void store_destroy(Store *store);
extern InStream *is_new();
extern Store *store_new();
/****************************************************************************
*
* CompoundStore
*
****************************************************************************/
typedef struct FileEntry {
off_t offset;
off_t length;
} FileEntry;
static void cmpd_touch(Store *store, const char *file_name)
{
store->dir.cmpd->store->touch(store->dir.cmpd->store, file_name);
}
static int cmpd_exists(Store *store, const char *file_name)
{
if (h_get(store->dir.cmpd->entries, file_name) != NULL) {
return true;
}
else {
return false;
}
}
/**
* @throws UNSUPPORTED_ERROR
*/
static int cmpd_remove(Store *store, const char *file_name)
{
(void)store;
(void)file_name;
RAISE(UNSUPPORTED_ERROR, "%s", UNSUPPORTED_ERROR_MSG);
return 0;
}
/**
* @throws UNSUPPORTED_ERROR
*/
static void cmpd_rename(Store *store, const char *from, const char *to)
{
(void)store;
(void)from;
(void)to;
RAISE(UNSUPPORTED_ERROR, "%s", UNSUPPORTED_ERROR_MSG);
}
static int cmpd_count(Store *store)
{
return store->dir.cmpd->entries->size;
}
static void cmpd_each(Store *store,
void (*func)(const char *fname, void *arg), void *arg)
{
Hash *ht = store->dir.cmpd->entries;
int i;
for (i = 0; i <= ht->mask; i++) {
char *fn = (char *)ht->table[i].key;
if (fn) {
func(fn, arg);
}
}
}
/**
* @throws UNSUPPORTED_ERROR
*/
static void cmpd_clear(Store *store)
{
(void)store;
RAISE(UNSUPPORTED_ERROR, "%s", UNSUPPORTED_ERROR_MSG);
}
static void cmpd_close_i(Store *store)
{
CompoundStore *cmpd = store->dir.cmpd;
if (cmpd->stream == NULL) {
RAISE(IO_ERROR, "Tried to close already closed compound store");
}
h_destroy(cmpd->entries);
is_close(cmpd->stream);
cmpd->stream = NULL;
free(store->dir.cmpd);
store_destroy(store);
}
static off_t cmpd_length(Store *store, const char *file_name)
{
FileEntry *fe = (FileEntry *)h_get(store->dir.cmpd->entries, file_name);
if (fe != NULL) {
return fe->length;
}
else {
return 0;
}
}
static void cmpdi_seek_i(InStream *is, off_t pos)
{
(void)is;
(void)pos;
}
static void cmpdi_close_i(InStream *is)
{
free(is->d.cis);
}
static off_t cmpdi_length_i(InStream *is)
{
return (is->d.cis->length);
}
/*
* raises: EOF_ERROR
*/
static void cmpdi_read_i(InStream *is, uchar *b, int len)
{
CompoundInStream *cis = is->d.cis;
off_t start = is_pos(is);
if ((start + len) > cis->length) {
RAISE(EOF_ERROR, "Tried to read past end of file. File length is "
"<%"OFF_T_PFX"d> and tried to read to <%"OFF_T_PFX"d>",
cis->length, start + len);
}
is_seek(cis->sub, cis->offset + start);
is_read_bytes(cis->sub, b, len);
}
static const struct InStreamMethods CMPD_IN_STREAM_METHODS = {
cmpdi_read_i,
cmpdi_seek_i,
cmpdi_length_i,
cmpdi_close_i
};
static InStream *cmpd_create_input(InStream *sub_is, off_t offset, off_t length)
{
InStream *is = is_new();
CompoundInStream *cis = ALLOC(CompoundInStream);
cis->sub = sub_is;
cis->offset = offset;
cis->length = length;
is->d.cis = cis;
is->m = &CMPD_IN_STREAM_METHODS;
return is;
}
static InStream *cmpd_open_input(Store *store, const char *file_name)
{
FileEntry *entry;
CompoundStore *cmpd = store->dir.cmpd;
InStream *is;
mutex_lock(&store->mutex);
if (cmpd->stream == NULL) {
mutex_unlock(&store->mutex);
RAISE(IO_ERROR, "Can't open compound file input stream. Parent "
"stream is closed.");
}
entry = (FileEntry *)h_get(cmpd->entries, file_name);
if (entry == NULL) {
mutex_unlock(&store->mutex);
RAISE(IO_ERROR, "File %s does not exist: ", file_name);
}
is = cmpd_create_input(cmpd->stream, entry->offset, entry->length);
mutex_unlock(&store->mutex);
return is;
}
static OutStream *cmpd_new_output(Store *store, const char *file_name)
{
(void)store;
(void)file_name;
RAISE(UNSUPPORTED_ERROR, "%s", UNSUPPORTED_ERROR_MSG);
return NULL;
}
static Lock *cmpd_open_lock_i(Store *store, const char *lock_name)
{
(void)store;
(void)lock_name;
RAISE(UNSUPPORTED_ERROR, "%s", UNSUPPORTED_ERROR_MSG);
return NULL;
}
static void cmpd_close_lock_i(Lock *lock)
{
(void)lock;
RAISE(UNSUPPORTED_ERROR, "%s", UNSUPPORTED_ERROR_MSG);
}
Store *open_cmpd_store(Store *store, const char *name)
{
int count, i;
off_t offset;
char *fname;
FileEntry *entry = NULL;
Store *new_store = NULL;
CompoundStore *volatile cmpd = NULL;
InStream *volatile is = NULL;
TRY
cmpd = ALLOC_AND_ZERO(CompoundStore);
cmpd->store = store;
cmpd->name = name;
cmpd->entries = h_new_str(&free, &free);
is = cmpd->stream = store->open_input(store, cmpd->name);
/* read the directory and init files */
count = is_read_vint(is);
entry = NULL;
for (i = 0; i < count; i++) {
offset = (off_t)is_read_i64(is);
fname = is_read_string(is);
if (entry != NULL) {
/* set length of the previous entry */
entry->length = offset - entry->offset;
}
entry = ALLOC(FileEntry);
entry->offset = offset;
h_set(cmpd->entries, fname, entry);
}
XCATCHALL
if (is) is_close(is);
if (cmpd->entries) h_destroy(cmpd->entries);
free(cmpd);
XENDTRY
/* set the length of the final entry */
if (entry != NULL) {
entry->length = is_length(is) - entry->offset;
}
new_store = store_new();
new_store->dir.cmpd = cmpd;
new_store->touch = &cmpd_touch;
new_store->exists = &cmpd_exists;
new_store->remove = &cmpd_remove;
new_store->rename = &cmpd_rename;
new_store->count = &cmpd_count;
new_store->clear = &cmpd_clear;
new_store->length = &cmpd_length;
new_store->each = &cmpd_each;
new_store->close_i = &cmpd_close_i;
new_store->new_output = &cmpd_new_output;
new_store->open_input = &cmpd_open_input;
new_store->open_lock_i = &cmpd_open_lock_i;
new_store->close_lock_i = &cmpd_close_lock_i;
return new_store;
}
/****************************************************************************
*
* CompoundWriter
*
****************************************************************************/
CompoundWriter *open_cw(Store *store, char *name)
{
CompoundWriter *cw = ALLOC(CompoundWriter);
cw->store = store;
cw->name = name;
cw->ids = hs_new_str(&free);
cw->file_entries = ary_new_type_capa(CWFileEntry, CW_INIT_CAPA);
return cw;
}
void cw_add_file(CompoundWriter *cw, char *id)
{
id = estrdup(id);
if (hs_add(cw->ids, id) != HASH_KEY_DOES_NOT_EXIST) {
RAISE(IO_ERROR, "Tried to add file \"%s\" which has already been "
"added to the compound store", id);
}
ary_grow(cw->file_entries);
ary_last(cw->file_entries).name = id;
}
static void cw_copy_file(CompoundWriter *cw, CWFileEntry *src, OutStream *os)
{
off_t start_ptr = os_pos(os);
off_t end_ptr;
off_t remainder, length, len;
uchar buffer[BUFFER_SIZE];
InStream *is = cw->store->open_input(cw->store, src->name);
remainder = length = is_length(is);
while (remainder > 0) {
len = MIN(remainder, BUFFER_SIZE);
is_read_bytes(is, buffer, len);
os_write_bytes(os, buffer, len);
remainder -= len;
}
/* Verify that remainder is 0 */
if (remainder != 0) {
RAISE(IO_ERROR, "There seems to be an error in the compound file "
"should have read to the end but there are <%"OFF_T_PFX"d> "
"bytes left", remainder);
}
/* Verify that the output length diff is equal to original file */
end_ptr = os_pos(os);
len = end_ptr - start_ptr;
if (len != length) {
RAISE(IO_ERROR, "Difference in compound file output file offsets "
"<%"OFF_T_PFX"d> does not match the original file length "
"<%"OFF_T_PFX"d>", len, length);
}
is_close(is);
}
void cw_close(CompoundWriter *cw)
{
OutStream *os = NULL;
int i;
if (cw->ids->size <= 0) {
RAISE(STATE_ERROR, "Tried to merge compound file with no entries");
}
os = cw->store->new_output(cw->store, cw->name);
os_write_vint(os, ary_size(cw->file_entries));
/* Write the directory with all offsets at 0.
* Remember the positions of directory entries so that we can adjust the
* offsets later */
for (i = 0; i < ary_size(cw->file_entries); i++) {
cw->file_entries[i].dir_offset = os_pos(os);
os_write_u64(os, 0); /* for now */
os_write_string(os, cw->file_entries[i].name);
}
/* Open the files and copy their data into the stream. Remember the
* locations of each file's data section. */
for (i = 0; i < ary_size(cw->file_entries); i++) {
cw->file_entries[i].data_offset = os_pos(os);
cw_copy_file(cw, &cw->file_entries[i], os);
}
/* Write the data offsets into the directory of the compound stream */
for (i = 0; i < ary_size(cw->file_entries); i++) {
os_seek(os, cw->file_entries[i].dir_offset);
os_write_u64(os, cw->file_entries[i].data_offset);
}
if (os) {
os_close(os);
}
hs_destroy(cw->ids);
ary_free(cw->file_entries);
free(cw);
}
|