2020-09-24 07:11:17 +00:00
|
|
|
=====================
|
|
|
|
Adoption of GLib APIs
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Libvirt has adopted use of the `GLib
|
|
|
|
library <https://developer.gnome.org/glib/stable/>`__. Due to
|
|
|
|
libvirt's long history of development, there are many APIs in
|
|
|
|
libvirt, for which GLib provides an alternative solution. The
|
|
|
|
general rule to follow is that the standard GLib solution will be
|
|
|
|
preferred over historical libvirt APIs. Existing code will be
|
|
|
|
ported over to use GLib APIs over time, but new code should use
|
|
|
|
the GLib APIs straight away where possible.
|
|
|
|
|
|
|
|
The following is a list of libvirt APIs that should no longer be
|
|
|
|
used in new code, and their suggested GLib replacements:
|
|
|
|
|
2020-09-24 11:50:49 +00:00
|
|
|
Memory allocation
|
|
|
|
``VIR_ALLOC``, ``VIR_REALLOC``, ``VIR_RESIZE_N``,
|
|
|
|
``VIR_EXPAND_N``, ``VIR_SHRINK_N``, ``VIR_FREE``
|
|
|
|
|
2020-09-24 12:07:20 +00:00
|
|
|
https://developer.gnome.org/glib/stable/glib-Memory-Allocation.html
|
|
|
|
|
2020-09-24 07:11:17 +00:00
|
|
|
Prefer the GLib APIs ``g_new0``/``g_renew``/ ``g_free`` in most
|
|
|
|
cases. There should rarely be a need to use
|
2020-09-24 11:50:49 +00:00
|
|
|
``g_malloc``/``g_realloc``. **NEVER MIX** use of the classic
|
|
|
|
libvirt memory allocation APIs and GLib APIs within a single
|
|
|
|
method. Keep the style consistent, converting existing code to
|
|
|
|
GLib style in a separate, prior commit.
|
|
|
|
|
|
|
|
Array operations
|
|
|
|
``VIR_APPEND_ELEMENT``, ``VIR_INSERT_ELEMENT``, ``VIR_DELETE_ELEMENT``
|
|
|
|
|
2020-09-24 12:07:20 +00:00
|
|
|
https://developer.gnome.org/glib/stable/glib-Arrays.html
|
|
|
|
|
2020-09-24 11:50:49 +00:00
|
|
|
Instead of using plain C arrays, it is preferrable to use one of
|
|
|
|
the GLib types, ``GArray``, ``GPtrArray`` or ``GByteArray``.
|
|
|
|
These all use a struct to track the array memory and size
|
|
|
|
together and efficiently resize.
|
2020-09-24 12:15:52 +00:00
|
|
|
|
|
|
|
String arrays
|
|
|
|
``virStringList*``, ``virStringListCount*``
|
|
|
|
|
|
|
|
https://developer.gnome.org/glib/stable/glib-String-Utility-Functions.html
|
|
|
|
|
|
|
|
Prefer the NULL-terminated variant instead of storing the count
|
|
|
|
separately. Prefer ``g_str*v`` functions instead of their ``vir*``
|
|
|
|
counterparts. For use with ``g_auto`` GLib provides the ``GStrv`` type.
|
|
|
|
|
|
|
|
Objects
|
|
|
|
``virObject``
|
|
|
|
|
|
|
|
https://developer.gnome.org/gobject/stable/gobject-The-Base-Object-Type.html
|
|
|
|
|
|
|
|
Prefer ``GObject`` instead.
|