Initial original import from: fuse-2.4.2-2.fc4
[captive.git] / src / libcaptive / client / vfs-parent.h
1 /* $Id$
2  * Include vfs for captive 'vfs' private interface to reactos of sandbox parent
3  * Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #ifndef _CAPTIVE_CLIENT_PRIV_VFS_PARENT_H
21 #define _CAPTIVE_CLIENT_PRIV_VFS_PARENT_H 1
22
23
24 #include <glib/gmacros.h>
25 #include <glib/gtypes.h>
26 #include <glib-object.h>
27 #include "captive/client-vfs.h" /* for CaptiveVfsObject */
28 #include "vfs.h"        /* for CaptiveVfsObject priv */
29 #include "../sandbox/sandbox.h"
30 #include <libxml/tree.h>
31
32
33 G_BEGIN_DECLS
34
35 #define CAPTIVE_VFS_PARENT_TYPE_OBJECT            (captive_vfs_parent_object_get_type())
36 #define CAPTIVE_VFS_PARENT_OBJECT(object)         (G_TYPE_CHECK_INSTANCE_CAST((object),CAPTIVE_VFS_PARENT_TYPE_OBJECT,CaptiveVfsParentObject))
37 #define CAPTIVE_VFS_PARENT_OBJECT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),CAPTIVE_VFS_PARENT_TYPE_OBJECT,CaptiveVfsParentObjectClass))
38 #define CAPTIVE_VFS_PARENT_IS_OBJECT(object)      (G_TYPE_CHECK_INSTANCE_TYPE((object),CAPTIVE_VFS_PARENT_TYPE_OBJECT))
39 #define CAPTIVE_VFS_PARENT_IS_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),CAPTIVE_VFS_PARENT_TYPE_OBJECT))
40 #define CAPTIVE_VFS_PARENT_OBJECT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),CAPTIVE_VFS_PARENT_TYPE_OBJECT,CaptiveVfsParentObjectClass))
41 typedef struct _CaptiveVfsParentObject      CaptiveVfsParentObject;
42 typedef struct _CaptiveVfsParentObjectClass CaptiveVfsParentObjectClass;
43
44
45 GType captive_vfs_parent_object_get_type(void);
46
47 struct _CaptiveVfsParentObject {
48         CaptiveVfsObject parent_instance;
49
50         Captive_Vfs corba_Vfs_object;
51         Captive_GLogFunc corba_GLogFunc_object;
52         Captive_CaptiveIOChannel corba_CaptiveIOChannel_object;
53         /* It may corba_parent_giochanel_blind_source==options.image_iochannel !
54          * 1st stage           : corba_parent_giochanel_blind
55          * 2nd stage (optional): corba_parent_giochanel_blind_source
56          * 3rd stage (optional): captive_storage_relastblock(options.image_iochannel)
57          * 4rd stage           : options.image_iochannel
58          */
59         GIOChannel *corba_parent_giochanel_blind;
60         GIOChannel *corba_parent_giochanel_blind_source;
61         int corba_parentheart_fds_1;
62         gchar *corba_chrooted_orbit_dir;
63         gchar *corba_socketname;
64         pid_t corba_child_pid;
65         xmlDoc *corba_bug_doc;
66         xmlNode *corba_bug;
67         xmlNode *corba_bug_action;
68         xmlNode *corba_bug_log;
69         };
70 struct _CaptiveVfsParentObjectClass {
71         CaptiveVfsObjectClass parent_class;
72
73         /* signals */
74         void (*detach)(CaptiveVfsParentObject *captive_vfs_parent_object);
75         void (*cease)(CaptiveVfsParentObject *captive_vfs_parent_object);
76         void (*abort)(CaptiveVfsParentObject *captive_vfs_parent_object);
77         };
78
79 GnomeVFSResult captive_vfs_parent_object_connect(CaptiveVfsParentObject *captive_vfs_parent_object);
80 GnomeVFSResult captive_vfs_parent_object_disconnect(CaptiveVfsParentObject *captive_vfs_parent_object);
81 GnomeVFSResult captive_vfs_parent_object_aborted(CaptiveVfsParentObject *captive_vfs_parent_object);
82
83 G_END_DECLS
84
85
86 #endif /* _CAPTIVE_CLIENT_PRIV_VFS_PARENT_H */