/* $Id$ * client cmdline interface command "rm" for libcaptive * Copyright (C) 2003 Jan Kratochvil * * 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; exactly version 2 of June 1991 is required * * 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-1307 USA */ #include "config.h" #include #include #include #include #include "cmd_rm.h" /* self */ #include "cmd_cd.h" /* for cmdline_path_from_cwd() */ #include "main.h" GQuark cmdline_cmd_rm_error_quark(void) { GQuark r=0; if (!r) r=g_quark_from_static_string("cmdline-cmd-rm"); return r; } const struct poptOption cmd_rm_table[]={ CMDLINE_POPT_AUTOHELP POPT_TABLEEND }; void cmd_rm(const char **cmd_argv,GError **errp) { CaptiveFileObject *captive_file_object; const gchar *targetfile; g_return_if_fail(!errp || !*errp); targetfile=cmdline_path_from_cwd(cmd_argv[0]); if (!errvfsresult_to_gerr(errp,captive_file_new_open( &captive_file_object, /* captive_file_object_return */ cmdline_captive_vfs_object, /* captive_vfs_object */ targetfile, /* pathname */ GNOME_VFS_OPEN_NONE))) { /* mode */ err_cleanup(errp); g_set_error(errp,CMDLINE_CMD_RM_ERROR,CMDLINE_CMD_RM_ERROR_CANNOT_CREATE_REMOVAL_FILE, _("Cannot open file for removal: %s"),targetfile); return; } if (!errvfsresult_to_gerr(errp,captive_file_remove( captive_file_object))) { /* captive_file_object */ err_cleanup(errp); g_set_error(errp,CMDLINE_CMD_RM_ERROR,CMDLINE_CMD_RM_ERROR_CANNOT_SET_FILE_REMOVAL, _("Cannot set file removal state: %s"),targetfile); goto err_unref; } err_unref: g_object_unref(captive_file_object); }