TheGLib Object System,orGObject,is afreesoftware libraryproviding a portableobject systemand transparent cross-language interoperability. GObject is designed for use both directly inCprograms to provide object-oriented C-based APIs and throughbindingsto other languages to provide transparent cross-language interoperability, e.g.PyGObject.
Developer(s) | The GNOME Project |
---|---|
Initial release | 11 March 2002 |
Written in | C |
Operating system | Cross-platform |
Available in | Multilingual[which?] |
Type | Software library |
License | GNU LGPL |
Website | developer |
History
editDepending only onGLibandlibc,GObject is a cornerstone ofGNOMEand is used throughoutGTK,Pango,ATK,and most higher-levelGNOMElibraries likeGStreamerand applications. Prior to GTK+ 2.0, code similar to GObject was part of the GTK codebase. (The name “GObject” was not yet in use — the common baseclass was calledGtkObject
.)
At the release of GTK+ 2.0, the object system was extracted into a separate library due to its general utility. In the process, most non-GUI-specific parts of theGtkObject
class were moved up intoGObject
,the new common baseclass. Having existed as a separate library since March 11, 2002 (the release date of GTK+ 2.0), the GObject library is now used by many non-GUI programs such ascommand-lineandserverapplications.
Relation to GLib
editThough GObject has its own separate set of documentation[1]and is usually compiled into its ownshared libraryfile, the source code for GObject resides in theGLibsource tree and is distributed along with GLib. For this reason, GObject uses the GLib version numbers and is typically packaged together with GLib (for example,Debianputs GObject in itslibglib2.0
package family).
The type system
editAt the most basic level of the GObject framework lies a generic and dynamictype systemcalled GType. The GType system holds a runtime description of all objects allowingglue codeto facilitate multiple language bindings. The type system can handle anysingly inheritedclass structure, in addition tonon-classedtypes such asopaque pointers,strings,and variously sizedintegersandfloating point numbers.
The type system knows how to copy, assign, and destroy values belonging to any of the registered types. This is trivial for types like integers, but many complex objects arereference-counted,while some are complex but not reference-counted. When the type system “copies” a reference-counted object, it will typically just increase its reference count, whereas when copying a complex, non-reference-counted object (such as a string), it will typically create an actual copy byallocating memory.
This basic functionality is used for implementingGValue
,a type of generic container that can hold values of any type known by the type system. Such containers are particularly useful when interacting with dynamically typed language environments in which all native values reside in suchtype-taggedcontainers.
Fundamental types
editTypes that do not have any associatedclassesare callednon-classed.These types, together with all types that correspond to some form ofroot class,are known asfundamental types:the types from which all other types are derived. These make up a relatively closed set, but although the average user is not expected to create their own fundamental types, the possibility does exist and has been exploited to create customclass hierarchies— i.e., class hierarchies not based on theGObject
class.
As of GLib 2.9.2,[2]thenon-classedbuilt-in fundamental types are:
- an empty type, corresponding to C's
void
(G_TYPE_NONE
); - types corresponding to C's signed and unsigned
char
,int
,long
,and 64-bit integers (G_TYPE_CHAR
,G_TYPE_UCHAR
,G_TYPE_INT
,G_TYPE_UINT
,G_TYPE_LONG
,G_TYPE_ULONG
,G_TYPE_INT64
,andG_TYPE_UINT64
); - a Boolean type (
G_TYPE_BOOLEAN
); - an enumeration type and a “flags” type, both corresponding to C's
enum
type, but differing in that the latter is only used forbit fields(G_TYPE_ENUM
andG_TYPE_FLAGS
); - types for single- and double-precisionIEEE floats,corresponding to C's
float
anddouble
(G_TYPE_FLOAT
andG_TYPE_DOUBLE
); - a string type, corresponding to C's
char *
(G_TYPE_STRING
); - an opaque pointer type, corresponding to C's
void *
(G_TYPE_POINTER
).
Theclassedbuilt-in fundamental types are:
- a base class type for instances of
GObject
,the root of the standard class inheritance tree (G_TYPE_OBJECT
) - a base interface type, analogous to the base class type but representing the root of the standardinterfaceinheritance tree (
G_TYPE_INTERFACE
) - a type forboxedstructures, which are used to wrap simple value objects or foreign objects in reference-counted “boxes” (
G_TYPE_BOXED
) - a type for “parameter specification objects,” which are used in GObject to describemetadatafor object properties (
G_TYPE_PARAM
).
Types that can be instantiated automatically by the type system are calledinstantiable.An important characteristic of these types is that the first bytes of any instance always contain a pointer to theclass structure(a form ofvirtual table) associated to the type of the instance. For this reason, any instantiable type must be classed. Contrapositively, any non-classed type (such asintegerorstring) must be non-instantiable. On the other hand, most classed types are instantiable, but some, such as interface types, are not.
Derived types
editThe types that are derived from the built-in GObject fundamental types fall roughly into four categories:
- Enumerated types and “flags” types
- In general, every enumerated type and every integer-based bitfield type (i.e., every
enum
type) that one wishes to use in some way that is related to the object system — for example, as the type of an object property — should be registered with the type system. Typically, the initialization code that takes care of registering these types is generated by an automated tool calledglib-mkenums
[3]and stored in a separate file. - Boxed types
- Some data structures that are too simple to be made full-fledged class types (with all the overhead incurred) may still need to be registered with the type system. For example, we might have a class to which we want to add a
background-color
property, whose values should be instances of a structure that looks likestructcolor{intr,g,b;}
.To avoid having to subclassGObject
,we can create aboxed typeto represent this structure, and provide functions for copying and freeing. GObject ships with a handful of boxed types wrapping simple GLib data types. Another use for boxed types is as a way to wrap foreign objects in a tagged container that the type system can identify and will know how to copy and free. - Opaque pointer types
- Sometimes, for objects that need to be neither copied or reference-counted nor freed, even a boxed type would beoverkill.While such objects can be used in GObject by simply treating them as opaque pointers (
G_TYPE_POINTER
), it is often a good idea to create a derived pointer type, documenting the fact that the pointers should reference a particular kind of object, even though nothing else is said about it. - Class and interface types
- Most types in a GObject application will be classes — in the normal object-oriented sense of the word — derived directly or indirectly from the root class,
GObject
.There are also interfaces, which, unlike classicJava-styleinterfaces,can contain implemented methods. GObject interfaces can thus be described asmixins.
Messaging system
editThe GObject messaging system consists of two complementary parts:closuresandsignals.
- Closures
- A GObject closure is a generalized version of acallback.Support exists for closures written in C and C++, as well as arbitrary languages (when bindings are provided). This allows code written in (for example) Python and Java to be invoked via a GObject closure.
- Signals
- Signals are the primary mechanism by which closures are invoked. Objects register signal listeners with the type system, specifying a mapping between a given signal and a given closure. Upon emission of a registered signal, that signal's closure is invoked. In GTK, all native GUI events (such as mouse motion and keyboard actions) can generate GObject signals for listeners to potentially act upon.
Class implementation
editEach GObject class is implemented by at least two structures: theclass structureand theinstance structure.
- The class structure
- The class structure corresponds to thevtableof a C++ class. It must begin with the class structure of the superclass. Following that, it will hold a set of function pointers — one for eachvirtual methodof the class. Class-specific variables can be used to emulate class members.
- The instance structure
- The instance structure, which will exist in one copy per object instance, must begin with the instance structure of thesuperclass(this ensures that all instances begin with a pointer to the class structure, since all fundamental instantiable types share this property). After the data belonging to the superclass, the structure can hold any instance-specific variables, corresponding to C++ member variables.
Defining a class in the GObject framework is complex, requiring large amounts ofboilerplatecode, such as manual definitions of type casting macros and obscure type registration incantations. Also, since a C structure cannot have access modifiers like “public”, “protected”, or “private”, workarounds must be used to provideencapsulation.One approach is to include a pointer to the private data — conventionally called_priv
— in the instance structure. Theprivate structurecan be declared in the public header file, but defined only in the implementation file, with the effect that the private data is opaque to users, but transparent to the implementor. If the private structure is registered with GType, it will be automatically allocated by the object system. Indeed, it is not even necessary to include the_priv
pointer, if one is willing to use the incantationG_TYPE_INSTANCE_GET_PRIVATE
every time the private data is needed.
To address some of these complexities, several higher-level languages exist thatsource-to-source compilesto GObject in C. TheVala programming languageuses aC#-style syntax and is pre-processed intovanillaC code. The GObject Builder, orGOB2,offers a template syntax reminiscent ofJava.
GObject Introspection
edit- GObject introspection(abbreviated GIR[4]) is aforeign function interfacemiddleware layer between C libraries (using GObject) and language bindings, cf.List of language bindings for GTK.
Usage
editThe combination of C and GObject is used in many successfulfree softwareprojects, such as theGNOMEdesktop, theGTKtoolkit and theGIMPimage manipulation program.
Though many GObject applications are written entirely in C, the GObject system maps well into the native object systems of many other languages, likeC++,Java,Ruby,Python,Common Lisp,and.NET/Mono.As a result, it is usually relatively painless to createlanguage bindingsfor well-written libraries that use the GObject framework.
Writing GObject code in C in the first place, however, is relatively verbose. The library takes a good deal of time to learn, and programmers with experience inhigh-levelobject-oriented languages often find it somewhat tedious to work with GObject in C. For example, creating a subclass (even just a subclass ofGObject
) can require writing and/or copying large amounts ofboilerplate code.[5]However, usingVala,a language that is designed primarily to work with GObject and which converts to C, is likely to make working with GObject or writing GObject based libraries nicer.
Although they are not reallyfirst-class objects(there are no actual metatypes in GType),metaobjectslike classes and interfaces are created by GObject applications at runtime, and provide good support forintrospection.The introspective capabilities are used by language bindings and user interface design applications likeGladeto allow doing things like loading ashared librarythat provides a GObject class—usually some kind ofwidget,in the case of Glade—and then obtain a list of all properties of the class, complete with type information and documentation strings.
Comparisons to other object systems
editThis sectionpossibly containsoriginal research.(December 2011) |
Since GObject provides a mostly complete object system for C[citation needed],it can be seen as an alternative to C-derived languages such asC++andObjective-C.(Though both also offer many other features beyond just their respective object systems.) An easily observed difference between C++ and GObject is that GObject (like Java) does not supportmultiple inheritance.[6]
GObject's use ofGLib's g_malloc() memory allocation function will cause the program to exit unconditionally upon memory exhaustion, unlike the C library'smalloc(), C++'snew,and other common memory allocators which allow a program to cope with or even fully recover from out-of-memory situations without simply crashing.[7]This tends to work against including GObject in software where resilience in the face of limited memory is important, or where very many or very large objects are commonly handled. The g_try_new() can be used when a memory allocation is more likely to fail (for a large object for example), but this cannot grant that the allocation will not fail elsewhere in the code.[8]
Another important difference is that while C++ and Objective-C are separate languages, GObject is strictly a library and as such does not introduce any new syntax or compiler intelligence. For example, when writing GObject-based C code, it is frequently necessary to perform explicitupcasting.[citation needed]Hence, “C with GObject”, also called "glib-flavored C", considered as a language separate from plain C, is a strict superset of plain C — like Objective C, but unlike C++.
On platforms where there is no standardABIthat works across all C++ compilers (which is not usually the case, since either the Itanium ABI or the Microsoft ABI are usually followed), a library compiled with one C++ compiler is not always able to call a library compiled with a different one.[citation needed]If such compatibility is required, the C++ methods must be exported as plain C functions, partly defeating the purpose of the C++ object system.[citation needed]The problem occurs in part because different C++ compilers use different kinds ofname manglingto ensure the uniqueness of all exported symbols. (This is necessary because, for example, two different classes may have identically named member functions, one function name may beoverloadedmultiple times, or identically named functions may appear in differentnamespaces,but inobject codethese overlaps are not allowed.)[citation needed]In contrast, since C does not support any form of overloading or namespacing, authors of C libraries will typically use explicit prefixes to ensure the global uniqueness of their exported names.[citation needed]Hence, despite being object-oriented, a GObject-based library written in C will always use the same external symbol names regardless of which compiler is used.
Perhaps the most profound difference is GObject's emphasis onsignals(calledeventsin other languages).[citation needed]This emphasis derives from the fact that GObject was specifically designed to meet the needs of a GUI toolkit. Whilst there are signal libraries for most object-oriented languages out there, in the case of GObject it is built into the object system. Because of this, a typical GObject application will tend to use signals to a much larger extent than a non-GObject application would, making GObjectcomponentsmuch moreencapsulatedand reusable than the ones using plain C++ or Java.[citation needed][according to whom?]If usingglibmm/gtkmm,the official C++ wrappers to Glib/GTK respectively, the sibling projectlibsigc++allows easy use of underlying GObject signals using standard C++. Of course, other implementations of signals are available on almost all platforms, although sometimes an extra library is needed, such as Boost.Signals2 for C++.
See also
edit- Vala— a GObject-based programming language withC#-like syntax.Source to source compilertoC.
References
edit- ^"GObject Reference Manual".
- ^"GObject Reference Manual - Stable".
- ^"glib-mkenums, GObject Reference Manual".
- ^"Introspection, Summary".Gnome Developer, Programming Guidelines - Specific How-Tos.Retrieved9 August2020.
- ^"How to define and implement a new GObject".gnome.org.Retrieved27 July2013.
- ^"c++ - Why Was the GObject System Created?".Stack Overflow.Retrieved2019-11-16.
- ^"Memory Allocation: GLib Reference Manual".developer.gnome.org.Retrieved2019-11-16.
- ^"Memory Allocation: GLib Reference Manual".developer.gnome.org.Retrieved2019-11-17.