#endif
*/
+//#define DEBUG_DIRECTORY
+ // uncomment for noisier runs.
+
#undef LOG
#define LOG(s) CLASS_EMERGENCY_LOG(program_wide_logger::get(), s)
if (!strcmp(filename_transcoded.s(), par_dir.s())) continue;
#ifdef UNICODE
-/*temp
- to_unicode_persist(fudgemart, filename_transcoded);
- if (memcmp((wchar_t*)fudgemart, wfd.cFileName, wcslen(wfd.cFileName)*2))
+ #ifdef DEBUG_DIRECTORY
+ to_unicode_persist(kludgemart, filename_transcoded);
+ if (memcmp((wchar_t*)kludgemart, wfd.cFileName, wcslen(wfd.cFileName)*2))
printf("failed to compare the string before and after transcoding\n");
-*/
+ #endif
#endif
//wprintf(to_unicode_temp("file is %ls\n"), (wchar_t*)to_unicode_temp(filename_transcoded));
filename temp_name(*_path, filename_transcoded.s());
- if (!temp_name.is_normal()) {
- LOG(astring("skipping abnormal file: ") + temp_name);
- continue; // cannot be adding goofy named pipes etc; cannot manage those.
- }
// add this to the appropriate list.
if (temp_name.is_directory()) {
_files->concatenate(filename_transcoded);
#ifdef UNICODE
-/*temp
- to_unicode_persist(fudgemart2, temp_name.raw());
- FILE *fpjunk = _wfopen(fudgemart2, to_unicode_temp("rb"));
+ #ifdef DEBUG_DIRECTORY
+ to_unicode_persist(kludgemart2, temp_name.raw());
+ FILE *fpjunk = _wfopen(kludgemart2, to_unicode_temp("rb"));
if (!fpjunk)
LOG(astring("failed to open the file for testing: ") + temp_name.raw() + "\n");
if (fpjunk) fclose(fpjunk);
-*/
+ #endif
#endif
}
// make sure that the filename matches the pattern also.
if (add_it && !fnmatch(_pattern->s(), file, 0)) {
filename temp_name(*_path, file);
+ if (!temp_name.is_normal()) {
+#ifdef DEBUG_DIRECTORY
+ LOG(astring("skipping abnormal file: ") + temp_name);
+#endif
+ entry = readdir(dir);
+ continue; // cannot be adding goofy named pipes etc; cannot manage those.
+ }
// add this to the appropriate list.
if (temp_name.is_directory())
_folders->concatenate(file);
#include <basis/functions.h>
#include <basis/contracts.h>
+#include <loggers/program_wide_logger.h>
#include <structures/object_packers.h>
#include <structures/string_array.h>
#include <textual/parser_bits.h>
#include <stdio.h>
using namespace basis;
-using namespace structures;
+using namespace loggers;
using namespace nodes;
+using namespace structures;
using namespace textual;
-#define DEBUG_DIRECTORY_TREE
+//#define DEBUG_DIRECTORY_TREE
// uncomment for noisier version.
#undef LOG
-#define LOG(to_print) printf("%s::%s: %s\n", static_class_name(), func, astring(to_print).s())
-//CLASS_EMERGENCY_LOG(program_wide_logger::get(), s)
+#define LOG(to_print) CLASS_EMERGENCY_LOG(program_wide_logger::get(), to_print)
+//printf("%s::%s: %s\n", static_class_name(), func, astring(to_print).s())
//////////////
for (posn = 0; posn < examining.length(); posn++) {
check = examining[posn];
filename current(check->_dirname);
+ if (!current.is_normal()) {
+//#ifdef DEBUG_DIRECTORY_TREE
+ LOG(astring("skipping abnormal dir: ") + current);
+//#endif
+ continue;
+ }
#ifdef DEBUG_DIRECTORY_TREE
LOG(astring("looking at ") + current.raw());
#endif
int file_subtract = 0; // if it's a file, then we remove last component.
if (!adding.is_directory()) file_subtract = 1;
#ifdef DEBUG_DIRECTORY_TREE
- if (file_subtract) LOG(astring("adding a file ") + new_item);
- else LOG(astring("adding a directory ") + new_item);
+ if (file_subtract) { LOG(astring("adding a file ") + new_item); }
+ else { LOG(astring("adding a directory ") + new_item); }
#endif
// find the common root, break up the path into pieces, and tell us where