]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virConnectBaselineCPU public API
authorJiri Denemark <jdenemar@redhat.com>
Fri, 22 Jan 2010 13:52:41 +0000 (14:52 +0100)
committerJiri Denemark <jdenemar@redhat.com>
Fri, 12 Feb 2010 13:21:58 +0000 (14:21 +0100)
include/libvirt/libvirt.h.in
python/generator.py
python/libvirt-override-api.xml
python/libvirt-override.c
src/libvirt_public.syms

index 99a5c45fdf9b064ac09ddb21e2ff970805087667..260505ef47b0a128d55ed523dff34b2bcdff0e88 100644 (file)
@@ -1769,6 +1769,24 @@ int virConnectCompareCPU(virConnectPtr conn,
                          unsigned int flags);
 
 
+/**
+ * virConnectBaselineCPU:
+ *
+ * @conn: virConnect connection
+ * @ncpus: number of CPUs in xmlCPUs
+ * @xmlCPUs: array of XML descriptions of host CPUs
+ * @flags: fine-tuning flags
+ *
+ * Computes the most feature-rich CPU which is compatible with all given
+ * host CPUs.
+ *
+ * Returns XML description of the computed CPU or NULL on error.
+ */
+char *virConnectBaselineCPU(virConnectPtr conn,
+                            const char **xmlCPUs,
+                            unsigned int ncpus,
+                            unsigned int flags);
+
 #ifdef __cplusplus
 }
 #endif
index 41822197817bddacfdff171bef22c83e3778b32e..37c0169ec42f818b1ce533040d8101373d38b72c 100755 (executable)
@@ -308,6 +308,7 @@ skip_impl = (
     'virEventRegisterImpl',
     'virNodeListDevices',
     'virNodeDeviceListCaps',
+    'virConnectBaselineCPU',
 )
 
 
index 3d8f46cf30300e4697deb229e0478be126852560..76a6fd5fcead1e20b8501d520df940b26df65a88 100644 (file)
       <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>
index d90a763e6cd5808ebc56f4b38348408b9ea1afa1..a71766a59321330cc0faebb531cdc25f61c407f1 100644 (file)
@@ -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}
 };
 
index aa062e4532687fc613dc56471e711f3569edd277..152aae4ce57994f3ea92e846f3e07cd92ec14e94 100644 (file)
@@ -353,6 +353,7 @@ LIBVIRT_0.7.7 {
     global:
         virDomainAttachDeviceFlags;
         virDomainDetachDeviceFlags;
+        virConnectBaselineCPU;
 } LIBVIRT_0.7.5;
 
 # .... define new API here using predicted next version number ....