/* * aegis - project change supervisor * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1997, 1999 Peter Miller; * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * * MANIFEST: functions to walk directory trees */ #include #include #include #include #include #include #include #include #include void dir_walk(path, callback, arg) string_ty *path; dir_walk_callback_ty callback; void *arg; { string_list_ty wl; struct stat st; int j; string_ty *s; char *cp; char *data; long data_len; trace(("dir_walk(path = %08lX, callback = %08lX, \ arg = %08lX)\n{\n"/*}*/, path, callback, arg)); trace_string(path->str_text); #if defined(S_IFLNK) || defined(S_ISLNK) if (glue_lstat(path->str_text, &st)) { sub_context_ty *scp; scp = sub_context_new(); sub_errno_set(scp); sub_var_set_string(scp, "File_Name", path); fatal_intl(scp, i18n("lstat $filename: $errno")); /* NOTREACHED */ } #else if (glue_stat(path->str_text, &st)) { sub_context_ty *scp; scp = sub_context_new(); sub_errno_set(scp); sub_var_set_string(scp, "File_Name", path); fatal_intl(scp, i18n("stat $filename: $errno")); /* NOTREACHED */ } #endif switch (st.st_mode & S_IFMT) { case S_IFDIR: callback(arg, dir_walk_dir_before, path, &st); string_list_constructor(&wl); if (glue_read_whole_dir(path->str_text, &data, &data_len)) { sub_context_ty *scp; scp = sub_context_new(); sub_errno_set(scp); sub_var_set_string(scp, "File_Name", path); fatal_intl(scp, i18n("read $filename: $errno")); /* NOTREACHED */ } cp = data; while (cp < data + data_len) { s = str_from_c(cp); cp += s->str_length + 1; string_list_append(&wl, s); str_free(s); } for (j = 0; j < wl.nstrings; ++j) { s = str_format("%S/%S", path, wl.string[j]); dir_walk(s, callback, arg); str_free(s); } string_list_destructor(&wl); callback(arg, dir_walk_dir_after, path, &st); break; case S_IFREG: callback(arg, dir_walk_file, path, &st); break; #if defined(S_IFLNK) || defined(S_ISLNK) case S_IFLNK: callback(arg, dir_walk_symlink, path, &st); break; #endif default: callback(arg, dir_walk_special, path, &st); break; } trace((/*{*/"}\n")); }