1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Engrampa
*
* Copyright (C) 2008 Free Software Foundation, Inc.
*
* 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 Street #330, Boston, MA 02110-1301, USA.
*/
#ifndef _GIO_UTILS_H
#define _GIO_UTILS_H
#include <glib.h>
#include <gio/gio.h>
/* callback types */
typedef enum {
DIR_OP_CONTINUE,
DIR_OP_SKIP,
DIR_OP_STOP
} DirOp;
typedef DirOp (*StartDirCallback) (const char *uri,
GError **error,
gpointer user_data);
typedef void (*ForEachChildCallback) (const char *uri,
GFileInfo *info,
gpointer user_data);
typedef void (*ForEachDoneCallback) (GError *error,
gpointer data);
typedef void (*ListReadyCallback) (GList *files,
GList *dirs,
GError *error,
gpointer user_data);
typedef void (*CopyProgressCallback) (goffset current_file,
goffset total_files,
GFile *source,
GFile *destination,
goffset current_num_bytes,
goffset total_num_bytes,
gpointer user_data);
typedef void (*CopyDoneCallback) (GError *error,
gpointer user_data);
/* asynchronous recursive list functions */
void g_directory_foreach_child (GFile *directory,
gboolean recursive,
gboolean follow_links,
GCancellable *cancellable,
StartDirCallback start_dir_func,
ForEachChildCallback for_each_file_func,
ForEachDoneCallback done_func,
gpointer user_data);
void g_directory_list_async (const char *directory,
const char *base_dir,
gboolean recursive,
gboolean follow_links,
gboolean no_backup_files,
gboolean no_dot_files,
const char *include_files,
const char *exclude_files,
const char *exclude_folders,
gboolean ignorecase,
GCancellable *cancellable,
ListReadyCallback done_func,
gpointer done_data);
void g_list_items_async (GList *items,
const char *base_dir,
GCancellable *cancellable,
ListReadyCallback done_func,
gpointer done_data);
/* asynchronous copy functions */
void g_copy_files_async (GList *sources,
GList *destinations,
GFileCopyFlags flags,
int io_priority,
GCancellable *cancellable,
CopyProgressCallback progress_callback,
gpointer progress_callback_data,
CopyDoneCallback callback,
gpointer user_data);
void g_copy_uris_async (GList *sources,
GList *destinations,
GFileCopyFlags flags,
int io_priority,
GCancellable *cancellable,
CopyProgressCallback progress_callback,
gpointer progress_callback_data,
CopyDoneCallback callback,
gpointer user_data);
void g_copy_file_async (GFile *source,
GFile *destination,
GFileCopyFlags flags,
int io_priority,
GCancellable *cancellable,
CopyProgressCallback progress_callback,
gpointer progress_callback_data,
CopyDoneCallback callback,
gpointer user_data);
void g_copy_uri_async (const char *source,
const char *destination,
GFileCopyFlags flags,
int io_priority,
GCancellable *cancellable,
CopyProgressCallback progress_callback,
gpointer progress_callback_data,
CopyDoneCallback callback,
gpointer user_data);
void g_directory_copy_async (const char *source,
const char *destination,
GFileCopyFlags flags,
int io_priority,
GCancellable *cancellable,
CopyProgressCallback progress_callback,
gpointer progress_callback_data,
CopyDoneCallback callback,
gpointer user_data);
gboolean g_load_file_in_buffer (GFile *file,
void *buffer,
gsize size,
GError **error);
/* convenience macros */
/**
* g_directory_list_all_async:
* @directory:
* @base_dir:
* @recursive:
* @cancellable:
* @done_func:
* @done_data:
*
*/
#define g_directory_list_all_async(directory, base_dir, recursive, cancellable, done_func, done_data) \
g_directory_list_async ((directory), (base_dir), (recursive), TRUE, FALSE, FALSE, NULL, NULL, NULL, FALSE, (cancellable), (done_func), (done_data))
#endif /* _GIO_UTILS_H */
|