1 /* File operation contexts for the Midnight Commander
3 Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2007
4 Free Software Foundation, Inc.
6 Authors: Federico Mena <federico@nuclecu.unam.mx>
7 Miguel de Icaza <miguel@nuclecu.unam.mx>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * \brief Source: file operation contexts
27 * \author Federico Mena <federico@nuclecu.unam.mx>
28 * \author Miguel de Icaza <miguel@nuclecu.unam.mx>
35 #include "lib/global.h"
36 #include "fileopctx.h"
38 #include "lib/search.h"
39 #include "lib/vfs/mc-vfs/vfs.h"
42 * \fn FileOpContext * file_op_context_new (FileOperation op)
43 * \param op file operation struct
44 * \return The newly-created context, filled with the default file mask values.
46 * Creates a new file operation context with the default values. If you later want
47 * to have a user interface for this, call file_op_context_create_ui().
50 file_op_context_new (FileOperation op
)
54 ctx
= g_new0 (FileOpContext
, 1);
57 ctx
->progress_bytes
= 0.0;
58 ctx
->op_preserve
= TRUE
;
60 ctx
->stat_func
= mc_lstat
;
62 ctx
->preserve_uidgid
= (geteuid () == 0);
63 ctx
->umask_kill
= 0777777;
64 ctx
->erase_at_end
= TRUE
;
71 * \fn void file_op_context_destroy (FileOpContext *ctx)
72 * \param ctx The file operation context to destroy.
74 * Destroys the specified file operation context and its associated UI data, if
78 file_op_context_destroy (FileOpContext
* ctx
)
80 g_return_if_fail (ctx
!= NULL
);
83 file_op_context_destroy_ui (ctx
);
85 mc_search_free (ctx
->search_handle
);
87 /** \todo FIXME: do we need to free ctx->dest_mask? */
93 file_op_total_context_new (void)
95 FileOpTotalContext
*tctx
;
96 tctx
= g_new0 (FileOpTotalContext
, 1);
97 tctx
->ask_overwrite
= TRUE
;
98 tctx
->is_toplevel_file
= TRUE
;
103 file_op_total_context_destroy (FileOpTotalContext
* tctx
)
105 g_return_if_fail (tctx
!= NULL
);