0f4f9fde9786e217128e6b7fb7b5a9a0234cc833
[libguestfs.git] / src / guestfs.h
1 /* libguestfs
2  * Copyright (C) 2009-2010 Red Hat Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library 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 GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 /* IMPORTANT NOTE:
20  *
21  * All API documentation is in the manpage, 'guestfs(3)'.
22  * To read it, type:
23  *   man 3 guestfs
24  * Or read it online here:
25  *   http://libguestfs.org/guestfs.3.html
26  *
27  * Go and read it now, I'll wait for you to come back.
28  */
29
30 #ifndef GUESTFS_H_
31 #define GUESTFS_H_
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 #include <stdint.h>
38 #include <stdarg.h>
39
40 typedef struct guestfs_h guestfs_h;
41
42 /*--- Connection management ---*/
43 extern guestfs_h *guestfs_create (void);
44 extern void guestfs_close (guestfs_h *g);
45
46 /*--- Error handling ---*/
47 extern const char *guestfs_last_error (guestfs_h *g);
48 #define LIBGUESTFS_HAVE_LAST_ERRNO 1
49 extern int guestfs_last_errno (guestfs_h *g);
50
51 typedef void (*guestfs_error_handler_cb) (guestfs_h *g, void *opaque, const char *msg);
52 typedef void (*guestfs_abort_cb) (void) __attribute__((__noreturn__));
53
54 extern void guestfs_set_error_handler (guestfs_h *g, guestfs_error_handler_cb cb, void *opaque);
55 extern guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g, void **opaque_rtn);
56
57 extern void guestfs_set_out_of_memory_handler (guestfs_h *g, guestfs_abort_cb);
58 extern guestfs_abort_cb guestfs_get_out_of_memory_handler (guestfs_h *g);
59
60 /*--- Events ---*/
61 typedef void (*guestfs_log_message_cb) (guestfs_h *g, void *opaque, char *buf, int len);
62 typedef void (*guestfs_subprocess_quit_cb) (guestfs_h *g, void *opaque);
63 typedef void (*guestfs_launch_done_cb) (guestfs_h *g, void *opaque);
64 typedef void (*guestfs_close_cb) (guestfs_h *g, void *opaque);
65 typedef void (*guestfs_progress_cb) (guestfs_h *g, void *opaque, int proc_nr, int serial, uint64_t position, uint64_t total);
66
67 extern void guestfs_set_log_message_callback (guestfs_h *g, guestfs_log_message_cb cb, void *opaque);
68 extern void guestfs_set_subprocess_quit_callback (guestfs_h *g, guestfs_subprocess_quit_cb cb, void *opaque);
69 extern void guestfs_set_launch_done_callback (guestfs_h *g, guestfs_launch_done_cb cb, void *opaque);
70 #define LIBGUESTFS_HAVE_SET_CLOSE_CALLBACK 1
71 extern void guestfs_set_close_callback (guestfs_h *g, guestfs_close_cb cb, void *opaque);
72 #define LIBGUESTFS_HAVE_SET_PROGRESS_CALLBACK 1
73 extern void guestfs_set_progress_callback (guestfs_h *g, guestfs_progress_cb cb, void *opaque);
74
75 /*--- Private data area ---*/
76 #define LIBGUESTFS_HAVE_SET_PRIVATE 1
77 extern void guestfs_set_private (guestfs_h *g, const char *key, void *data);
78 #define LIBGUESTFS_HAVE_GET_PRIVATE 1
79 extern void *guestfs_get_private (guestfs_h *g, const char *key);
80
81 /*--- Structures and actions ---*/
82 #include <rpc/types.h>
83 #include <rpc/xdr.h>
84 #include <guestfs-structs.h>
85 #include <guestfs-actions.h>
86
87 /*--- Private ---
88  *
89  * These are NOT part of the public, stable API, and can change at any
90  * time!  We export them because they are used by some of the language
91  * bindings.
92  */
93 extern void *guestfs_safe_malloc (guestfs_h *g, size_t nbytes);
94 extern void *guestfs_safe_calloc (guestfs_h *g, size_t n, size_t s);
95 extern const char *guestfs_tmpdir (void);
96 /* End of private functions. */
97
98 #ifdef __cplusplus
99 }
100 #endif
101
102 #endif /* GUESTFS_H_ */