summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Denemark <jdenemar@redhat.com>2010-01-22 14:52:41 +0100
committerJiri Denemark <jdenemar@redhat.com>2010-02-12 14:21:58 +0100
commitbe6735de04f6f1e067553d0c96bdedf3bfe759bf (patch)
tree2e0f3bc78ea3c735ff0dae896f09402c94ed142d
parent2d35af171a2e7c5eb6ce7e7c2bd90cacb4ab0ce6 (diff)
downloadlibvirt-python-split-be6735de04f6f1e067553d0c96bdedf3bfe759bf.tar.gz
libvirt-python-split-be6735de04f6f1e067553d0c96bdedf3bfe759bf.tar.xz
libvirt-python-split-be6735de04f6f1e067553d0c96bdedf3bfe759bf.zip
virConnectBaselineCPU public API
-rwxr-xr-xgenerator.py1
-rw-r--r--libvirt-override-api.xml7
-rw-r--r--libvirt-override.c52
3 files changed, 60 insertions, 0 deletions
diff --git a/generator.py b/generator.py
index 4182219..37c0169 100755
--- a/generator.py
+++ b/generator.py
@@ -308,6 +308,7 @@ skip_impl = (
'virEventRegisterImpl',
'virNodeListDevices',
'virNodeDeviceListCaps',
+ 'virConnectBaselineCPU',
)
diff --git a/libvirt-override-api.xml b/libvirt-override-api.xml
index 3d8f46c..76a6fd5 100644
--- a/libvirt-override-api.xml
+++ b/libvirt-override-api.xml
@@ -231,5 +231,12 @@
<arg name='conn' type='virConnectPtr' info='pointer to the hypervisor connection'/>
<return type='str *' info='the list of Names of None in case of error'/>
</function>
+ <function name='virConnectBaselineCPU' file='python'>
+ <info>Computes the most feature-rich CPU which is compatible with all given host CPUs.</info>
+ <return type='char *' info='XML description of the computed CPU or NULL on error.'/>
+ <arg name='conn' type='virConnectPtr' info='virConnect connection'/>
+ <arg name='xmlCPUs' type='const char **' info='array of XML descriptions of host CPUs'/>
+ <arg name='flags' type='unsigned int' info='fine-tuning flags, currently unused, pass 0.'/>
+ </function>
</symbols>
</api>
diff --git a/libvirt-override.c b/libvirt-override.c
index d90a763..a71766a 100644
--- a/libvirt-override.c
+++ b/libvirt-override.c
@@ -2019,6 +2019,57 @@ libvirt_virConnectListDefinedInterfaces(PyObject *self ATTRIBUTE_UNUSED,
return(py_retval);
}
+
+static PyObject *
+libvirt_virConnectBaselineCPU(PyObject *self ATTRIBUTE_UNUSED,
+ PyObject *args) {
+ PyObject *pyobj_conn;
+ PyObject *list;
+ virConnectPtr conn;
+ unsigned int flags;
+ const char **xmlcpus = NULL;
+ int ncpus = 0;
+ char *base_cpu;
+ PyObject *pybase_cpu;
+
+ if (!PyArg_ParseTuple(args, (char *)"OOi:virConnectBaselineCPU",
+ &pyobj_conn, &list, &flags))
+ return(NULL);
+ conn = (virConnectPtr) PyvirConnect_Get(pyobj_conn);
+
+ if (PyList_Check(list)) {
+ int i;
+
+ ncpus = PyList_Size(list);
+ if ((xmlcpus = malloc(ncpus * sizeof(*xmlcpus))) == NULL)
+ return VIR_PY_INT_FAIL;
+
+ for (i = 0; i < ncpus; i++) {
+ xmlcpus[i] = PyString_AsString(PyList_GetItem(list, i));
+ if (xmlcpus[i] == NULL)
+ return VIR_PY_INT_FAIL;
+ }
+ }
+
+ LIBVIRT_BEGIN_ALLOW_THREADS;
+ base_cpu = virConnectBaselineCPU(conn, xmlcpus, ncpus, flags);
+ LIBVIRT_END_ALLOW_THREADS;
+
+ free(xmlcpus);
+
+ if (base_cpu == NULL)
+ return VIR_PY_INT_FAIL;
+
+ pybase_cpu = PyString_FromString(base_cpu);
+ free(base_cpu);
+
+ if (pybase_cpu == NULL)
+ return VIR_PY_INT_FAIL;
+
+ return pybase_cpu;
+}
+
+
/*******************************************
* Helper functions to avoid importing modules
* for every callback
@@ -2734,6 +2785,7 @@ static PyMethodDef libvirtMethods[] = {
{(char *) "virSecretSetValue", libvirt_virSecretSetValue, METH_VARARGS, NULL},
{(char *) "virConnectListInterfaces", libvirt_virConnectListInterfaces, METH_VARARGS, NULL},
{(char *) "virConnectListDefinedInterfaces", libvirt_virConnectListDefinedInterfaces, METH_VARARGS, NULL},
+ {(char *) "virConnectBaselineCPU", libvirt_virConnectBaselineCPU, METH_VARARGS, NULL},
{NULL, NULL, 0, NULL}
};