Merge branch '2123_crash_while_copy'
[midnight-commander.git] / src / fileopctx.c
blob5356c77fe1b183a5309bfa643761f78f060cd784
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.
24 /** \file fileopctx.c
25 * \brief Source: file operation contexts
26 * \date 1998-2007
27 * \author Federico Mena <federico@nuclecu.unam.mx>
28 * \author Miguel de Icaza <miguel@nuclecu.unam.mx>
31 #include <config.h>
33 #include <unistd.h>
35 #include "lib/global.h"
36 #include "fileopctx.h"
37 #include "filegui.h"
38 #include "lib/search.h"
39 #include "lib/vfs/mc-vfs/vfs.h"
41 /**
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().
49 FileOpContext *
50 file_op_context_new (FileOperation op)
52 FileOpContext *ctx;
54 ctx = g_new0 (FileOpContext, 1);
55 ctx->operation = op;
56 ctx->eta_secs = 0.0;
57 ctx->progress_bytes = 0.0;
58 ctx->op_preserve = TRUE;
59 ctx->do_reget = 1;
60 ctx->stat_func = mc_lstat;
61 ctx->preserve = TRUE;
62 ctx->preserve_uidgid = (geteuid () == 0);
63 ctx->umask_kill = 0777777;
64 ctx->erase_at_end = TRUE;
66 return ctx;
70 /**
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
75 * it exists.
77 void
78 file_op_context_destroy (FileOpContext * ctx)
80 g_return_if_fail (ctx != NULL);
82 if (ctx->ui)
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? */
89 g_free (ctx);
92 FileOpTotalContext *
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;
99 return tctx;
102 void
103 file_op_total_context_destroy (FileOpTotalContext * tctx)
105 g_return_if_fail (tctx != NULL);
106 g_free (tctx);