~ubuntu-branches/ubuntu/trusty/pcmanfm/trusty-proposed

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
/*
 *      vfs-async-task.h
 *
 *      Copyright 2008 PCMan <pcman.tw@gmail.com>
 *
 *      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., 51 Franklin Street, Fifth Floor, Boston,
 *      MA 02110-1301, USA.
 */


#ifndef __VFS_ASYNC_TASK_H__
#define __VFS_ASYNC_TASK_H__

#include <glib.h>
#include <glib-object.h>

G_BEGIN_DECLS

#define VFS_ASYNC_TASK_TYPE             (vfs_async_task_get_type())
#define VFS_ASYNC_TASK(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),\
        VFS_ASYNC_TASK_TYPE, VFSAsyncTask))
#define VFS_ASYNC_TASK_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),\
        VFS_ASYNC_TASK_TYPE, VFSAsyncTaskClass))
#define VFS_IS_ASYNC_TASK(obj)              (G_TYPE_CHECK_INSTANCE_TYPE((obj),\
        VFS_ASYNC_TASK_TYPE))
#define VFS_IS_ASYNC_TASK_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE((klass),\
        VFS_ASYNC_TASK_TYPE))

typedef struct _VFSAsyncTask                VFSAsyncTask;
typedef struct _VFSAsyncTaskClass           VFSAsyncTaskClass;

typedef gpointer (*VFSAsyncFunc)( VFSAsyncTask*, gpointer );

struct _VFSAsyncTask
{
    GObject parent;
    VFSAsyncFunc func;
    gpointer user_data;
    gpointer ret_val;

    GThread* thread;
    GMutex* lock;

    guint idle_id;
    gboolean cancel : 1;
    gboolean cancelled : 1;
    gboolean finished : 1;
};

struct _VFSAsyncTaskClass
{
    GObjectClass parent_class;
    void (*finish)( VFSAsyncTask* task, gboolean is_cancelled );
};

GType       vfs_async_task_get_type (void);
VFSAsyncTask*    vfs_async_task_new          ( VFSAsyncFunc task_func, gpointer user_data );

gpointer vfs_async_task_get_data( VFSAsyncTask* task );
void vfs_async_task_set_data( VFSAsyncTask* task, gpointer user_data  );
gpointer vfs_async_task_get_return_value( VFSAsyncTask* task );

/* Execute the async task */
void vfs_async_task_execute( VFSAsyncTask* task );

gboolean vfs_async_task_is_finished( VFSAsyncTask* task );
gboolean vfs_async_task_is_cancelled( VFSAsyncTask* task );

/*
 * Cancel the async task running in another thread.
 * NOTE: Only can be called from main thread.
 */
void vfs_async_task_cancel( VFSAsyncTask* task );

void vfs_async_task_lock( VFSAsyncTask* task );
void vfs_async_task_unlock( VFSAsyncTask* task );

G_END_DECLS

#endif /* __VFS_ASYNC_TASK_H__ */