1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2013 Ross Lagerwall
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 
21 #ifndef __G_VFS_JOB_TRUNCATE_H__
22 #define __G_VFS_JOB_TRUNCATE_H__
23 
24 #include <gvfsjob.h>
25 #include <gvfsbackend.h>
26 #include <gvfswritechannel.h>
27 
28 G_BEGIN_DECLS
29 
30 #define G_VFS_TYPE_JOB_TRUNCATE         (g_vfs_job_truncate_get_type ())
31 #define G_VFS_JOB_TRUNCATE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_VFS_TYPE_JOB_TRUNCATE, GVfsJobTruncate))
32 #define G_VFS_JOB_TRUNCATE_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_VFS_TYPE_JOB_TRUNCATE, GVfsJobTruncateClass))
33 #define G_VFS_IS_JOB_TRUNCATE(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_VFS_TYPE_JOB_TRUNCATE))
34 #define G_VFS_IS_JOB_TRUNCATE_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_VFS_TYPE_JOB_TRUNCATE))
35 #define G_VFS_JOB_TRUNCATE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_VFS_TYPE_JOB_TRUNCATE, GVfsJobTruncateClass))
36 
37 typedef struct _GVfsJobTruncateClass   GVfsJobTruncateClass;
38 
39 struct _GVfsJobTruncate
40 {
41   GVfsJob parent_instance;
42 
43   GVfsWriteChannel *channel;
44   GVfsBackend *backend;
45   GVfsBackendHandle handle;
46   goffset size;
47 };
48 
49 struct _GVfsJobTruncateClass
50 {
51   GVfsJobClass parent_class;
52 };
53 
54 GType g_vfs_job_truncate_get_type (void) G_GNUC_CONST;
55 
56 GVfsJob *g_vfs_job_truncate_new (GVfsWriteChannel  *channel,
57                                  GVfsBackendHandle  handle,
58                                  goffset            size,
59                                  GVfsBackend       *backend);
60 
61 G_END_DECLS
62 
63 #endif /* __G_VFS_JOB_TRUNCATE_H__ */
64