Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
GLib
Software library

GLib is a bundle of three (formerly five) low-level system libraries written in C and developed mainly by GNOME. GLib's code was separated from GTK, so it can be used by software other than GNOME and has been developed in parallel ever since.

The name "GLib" originates from the project's start as a GTK C utility library.

Related Image Collections Add Image
We don't have any YouTube videos related to GLib yet.
We don't have any PDF documents related to GLib yet.
We don't have any Books related to GLib yet.
We don't have any archived web articles related to GLib yet.

Features

GLib provides advanced data structures, such as memory chunks, doubly and singly linked lists, hash tables, dynamic strings and string utilities, such as a lexical scanner, string chunks (groups of strings), dynamic arrays, balanced binary trees, N-ary trees, quarks (a two-way association of a string and a unique integer identifier), keyed data lists, relations, and tuples. Caches provide memory management.

GLib implements functions that provide threads, thread programming and related facilities such as primitive variable access, mutexes, asynchronous queues, secure memory pools, message passing and logging, hook functions (callback registering) and timers. GLib also includes message passing facilities such as byte order conversion and I/O channels.

Some other features of GLib include:

  • standard macros
  • warnings and assertions
  • dynamic loading of modules

Components

The GLib package consisted of five libraries, but they were all merged into one library, since then named simply GLib, and are no longer sustained as standalone libraries. The original libraries were:

  • GObject, an object system including the type system GType
  • GLib
  • GModule
  • GThread
  • GIO

Of these, three continue to reside in distinct subdirectories of the source tree, and so can be thought of as discrete components: GLib, GObject, and GIO. These can be thought of as a software stack: GObject relies on GLib, and GIO provides higher-level functionality that uses both.

Programs for the GLib library

Command-line utilities associated with GLib, are usually packaged separately into libglib2.0-bin:

* gapplication – for starting applications via D-Bus activation * gdbus – for working with D-Bus objects and monitoring the bus * gio – a file management utility that can work with GIO virtual filesystems * gresource – for extracting files from binary format (*.gresource)-files and executables * gsettings – for inspecting and editing application configuration * gio-query-modules – for updating caches used internally by GLib * glib-compile-schemas – for updating caches used internally by GLib

History

GLib began as part of the GTK+ project, now named GTK. However, before releasing GTK+ version 2, the project's developers decided to separate code from GTK+ that was not for graphical user interfaces (GUIs), thus creating GLib as a separate software bundle. GLib was released as a separate library so other developers, those not using the GUI-related parts of GTK+, could use the non-GUI parts of the library without the overhead of depending on the full GUI library.

Since GLib is a cross-platform library, applications using it to interface with the operating system are usually portable across different operating systems without major changes.1

Releases

Glib is undergoing active development. For a current overview see https://gitlab.gnome.org/GNOME/glib/-/blob/main/NEWS. The table below documents major patch notes from 1998 to 2022.

Release seriesInitialrelease dateMajor enhancements
GLib 1.x
1.11998-09-12
1.21999-02-27
1.32001-09-25
GLib 2.x
2.02002-03-08
2.242010-03-26GVariant, GConverted
2.262010-09-27GSettings, GDbus, GObject property bindings (GAtomic for refcounting)
2.302011-09-26Non-unique GApplications, use eventfd() for mainloop wakeup, GHashTable set optimization, GObject data scalability
2.322012-03-24Plans for GLib 2.32
2.342012-09-23What's New for Developers in GLib 2.34
2.362013-03-25
2.382013-09-23applications launched using D-Bus activation2 GSubprocess, Unicode 6.3 (released September 2013)
2.402014-03-24GNotification, System notification API3
2.422014-09-22
2.432014-10-27
2.442015-03-23
2.452015-04-30
2.462015-09-21
2.472015-10-26
2.482016-03-22
2.502016-09-19
2.522017-03-19
2.532017-04-25
2.542018-01-08
2.552018-02-06
2.562018-03-12
2.572018-05-05
2.582018-08-30
2.592018-12-23
2.602019-03-04
2.612019-04-15
2.622019-09-05
2.632019-10-04
2.642020-02-27
2.652020-06-18
2.662020-09-10
2.672020-10-23
2.682021-03-18
2.692021-07-06
2.702021-09-17
2.712021-12-16
2.722022-03-17

Similar projects

Other libraries provide low-level functions and implementations of data structures, including:

  • Free and open-source software portal

References

  1. Krause, Andrew (2007). Foundations of GTK+ Development. Expert's Voice in Open Source. Apress. p. 5. ISBN 978-1-59059-793-4. Retrieved 3 April 2013. [GLib] provides a cross-platform interface that allows your code to be run on any of its supported operating systems with little to no rewriting of code! 978-1-59059-793-4

  2. "Setting up an application for D-Bus Launching". https://wiki.gnome.org/HowDoI/DBusApplicationLaunching

  3. "GNotification". https://wiki.gnome.org/HowDoI/GNotification