X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Ffilesystem%2Fheavy_file_ops.cpp;h=b9de0f9ab6c166d4628db7165ebe27e9857dd258;hb=d60e7a2467ab8be80a06ba670ccba1819ca7c0e4;hp=6c4765e9243fb83c88773f1e8cdd8c50ee8ba6dd;hpb=51d71c226be424b6a698c7474d237e8c69661af5;p=feisty_meow.git diff --git a/nucleus/library/filesystem/heavy_file_ops.cpp b/nucleus/library/filesystem/heavy_file_ops.cpp index 6c4765e9..b9de0f9a 100644 --- a/nucleus/library/filesystem/heavy_file_ops.cpp +++ b/nucleus/library/filesystem/heavy_file_ops.cpp @@ -27,16 +27,12 @@ using namespace structures; namespace filesystem { -#define DEBUG_HEAVY_FILE_OPS +//#define DEBUG_HEAVY_FILE_OPS // uncomment for noisier debugging. #undef LOG -#ifdef DEBUG_HEAVY_FILE_OPS - #include - #define LOG(to_print) printf("%s::%s: %s\n", static_class_name(), func, astring(to_print).s()) -#else - #define LOG(s) {if(!!s){}} -#endif +#include +#define LOG(to_print) printf("%s::%s: %s\n", static_class_name(), func, astring(to_print).s()) ////////////// @@ -176,8 +172,14 @@ outcome heavy_file_operations::write_file_chunk(const astring &target, if (byte_start < 0) return BAD_INPUT; filename targ_name(target); - if (!directory::recursive_create(targ_name.dirname().raw())) + astring targ_dir = targ_name.dirname().raw(); +#ifdef DEBUG_HEAVY_FILE_OPS + LOG(astring("creating target's directory: ") + targ_name.dirname().raw()); +#endif + if (!directory::recursive_create(targ_dir)) { + LOG(astring("failed to create directory: ") + targ_name.dirname().raw()); return TARGET_DIR_ERROR; + } if (!targ_name.exists()) { huge_file target_file(target, "w"); @@ -187,6 +189,7 @@ outcome heavy_file_operations::write_file_chunk(const astring &target, // open the file for updating (either read or write). if (!target_file.good()) return TARGET_ACCESS_ERROR; double curr_len = target_file.length(); + target_file.touch(); if (curr_len < byte_start) { byte_array new_chunk; @@ -246,6 +249,9 @@ outcome heavy_file_operations::buffer_files(const astring &source_root, outcome to_return = OKAY; + // this records if we're working on a new file. + bool fresh_file = false; + // start filling the array with bytes from the files. while (storage.length() < maximum_bytes) { double remaining_in_array = maximum_bytes - storage.length() @@ -264,11 +270,13 @@ outcome heavy_file_operations::buffer_files(const astring &source_root, last_action._time = currfile->_time; last_action._byte_start = 0; last_action._length = 0; + fresh_file = true; } const file_info *found = to_transfer.find(last_action._filename); if (!found) { // they have referenced a file that we don't have. that's bad news. + LOG(astring("unknown last file requested in transfer: ") + last_action._filename); return BAD_INPUT; } @@ -277,18 +285,27 @@ outcome heavy_file_operations::buffer_files(const astring &source_root, if (!current.good()) { // we need to skip this file. LOG(astring("skipping bad file: ") + full_file); + fresh_file = true; to_return = advance(to_transfer, last_action); if (to_return != OKAY) break; continue; } +//LOG(astring("working on file: ") + current.name()); - if (last_action._byte_start + last_action._length >= current.length()) { + // we don't try to check done if we just started this file. + if (!fresh_file && (last_action._byte_start + last_action._length >= current.length())) { // this file is done now. go to the next one. +#ifdef DEBUG_HEAVY_FILE_OPS LOG(astring("finished stuffing file: ") + full_file); +#endif + fresh_file = true; to_return = advance(to_transfer, last_action); if (to_return != OKAY) break; continue; } + // now that we tested if the file was fresh in our 'finished' check above, we + // consider the file not to be fresh until told otherwise. + fresh_file = false; // calculate the largest piece remaining of that file that will fit in the // allotted space. @@ -305,6 +322,7 @@ outcome heavy_file_operations::buffer_files(const astring &source_root, if (bytes_read != new_len) { if (!bytes_read) { // some kind of problem reading the file. + fresh_file = true; to_return = advance(to_transfer, last_action); if (to_return != OKAY) break; continue; @@ -323,6 +341,7 @@ outcome heavy_file_operations::buffer_files(const astring &source_root, if (!current.length()) { // ensure we don't get stuck redoing zero length files, which we allowed // to go past their end above (since otherwise we'd never see them). + fresh_file = true; to_return = advance(to_transfer, last_action); if (to_return != OKAY) break; continue;