// // aegis - project change supervisor // Copyright (C) 2005, 2006, 2008 Peter Miller // // 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 3 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, see // . // #include #include #include #include #include #include #include dir_functor_rmdir_bg::~dir_functor_rmdir_bg() { } dir_functor_rmdir_bg::dir_functor_rmdir_bg() { } void dir_functor_rmdir_bg::operator()(msg_t msg, const nstring &path, const struct stat &st) { switch (msg) { case msg_dir_before: if (!(st.st_mode & 0200)) chmod(path.c_str(), ((st.st_mode & 07777) | 0200)); break; case msg_dir_after: if (rmdir(path.c_str())) { int errno_old = errno; if (errno_old == ENOENT) break; sub_context_ty sc; sc.errno_setx(errno_old); sc.var_set_string("File_Name", path); sc.error_intl(i18n("warning: rmdir $filename: $errno")); } break; case msg_file: case msg_special: case msg_symlink: if (unlink(path.c_str())) { int errno_old = errno; if (errno_old == ENOENT) break; sub_context_ty sc; sc.errno_setx(errno_old); sc.var_set_string("File_Name", path); sc.error_intl(i18n("warning: unlink $filename: $errno")); } break; } }