diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-04-22 19:58:29 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-04-22 21:50:15 +0100 |
commit | 16da7589e91b0030fb5564553447f80b97c0b18c (patch) | |
tree | 525ea8ac1d5e28fde2becc9e928dbc1750d01c03 /python/guestfs-py-byhand.c | |
parent | 3acf732c2f23d8508f692efb2b222169914bfcdc (diff) | |
download | libguestfs-16da7589e91b0030fb5564553447f80b97c0b18c.tar.gz libguestfs-16da7589e91b0030fb5564553447f80b97c0b18c.tar.xz libguestfs-16da7589e91b0030fb5564553447f80b97c0b18c.zip |
python: Rearrange C files for bindings.
Move the hand-written functions into two new files:
guestfs-py.h and guestfs-py-byhand.c
This is just code motion.
Diffstat (limited to 'python/guestfs-py-byhand.c')
-rw-r--r-- | python/guestfs-py-byhand.c | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/python/guestfs-py-byhand.c b/python/guestfs-py-byhand.c new file mode 100644 index 00000000..f454a7e6 --- /dev/null +++ b/python/guestfs-py-byhand.c @@ -0,0 +1,69 @@ +/* libguestfs python bindings + * Copyright (C) 2009-2011 Red Hat Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/* This file contains a small number of functions that are written by + * hand. The majority of the bindings are generated (see + * guestfs-py.c). + */ + +#include <config.h> + +#include <stdio.h> +#include <stdlib.h> +#include <assert.h> + +#include "guestfs-py.h" + +PyObject * +py_guestfs_create (PyObject *self, PyObject *args) +{ + guestfs_h *g; + + g = guestfs_create (); + if (g == NULL) { + PyErr_SetString (PyExc_RuntimeError, + "guestfs.create: failed to allocate handle"); + return NULL; + } + guestfs_set_error_handler (g, NULL, NULL); + /* This can return NULL, but in that case put_handle will have + * set the Python error string. + */ + return put_handle (g); +} + +PyObject * +py_guestfs_close (PyObject *self, PyObject *args) +{ + PyThreadState *py_save = NULL; + PyObject *py_g; + guestfs_h *g; + + if (!PyArg_ParseTuple (args, (char *) "O:guestfs_close", &py_g)) + return NULL; + g = get_handle (py_g); + + if (PyEval_ThreadsInitialized ()) + py_save = PyEval_SaveThread (); + guestfs_close (g); + if (PyEval_ThreadsInitialized ()) + PyEval_RestoreThread (py_save); + + Py_INCREF (Py_None); + return Py_None; +} |