Miscellaneous Macros

Miscellaneous Macros — specialized macros which are not used often

Synopsis

#include <glib.h>

#define             G_INLINE_FUNC

#define             G_STMT_START
#define             G_STMT_END

#define             G_BEGIN_DECLS
#define             G_END_DECLS

#define             G_N_ELEMENTS                        (arr)

#define             G_VA_COPY                           (ap1,
                                                         ap2)

#define             G_STRINGIFY                         (macro_or_string)
#define             G_PASTE                             (identifier1,
                                                         identifier2)
#define             G_PASTE_ARGS                        (identifier1,
                                                         identifier2)
#define             G_STATIC_ASSERT                     (expr)

#define             G_GNUC_EXTENSION
#define             G_GNUC_CONST
#define             G_GNUC_PURE
#define             G_GNUC_MALLOC
#define             G_GNUC_ALLOC_SIZE                   (x)
#define             G_GNUC_ALLOC_SIZE2                  (x,
                                                         y)
#define             G_GNUC_DEPRECATED
#define             G_GNUC_NORETURN
#define             G_GNUC_UNUSED
#define             G_GNUC_PRINTF                       (format_idx,
                                                         arg_idx)
#define             G_GNUC_SCANF                        (format_idx,
                                                         arg_idx)
#define             G_GNUC_FORMAT                       (arg_idx)
#define             G_GNUC_NULL_TERMINATED
#define             G_GNUC_WARN_UNUSED_RESULT
#define             G_GNUC_FUNCTION
#define             G_GNUC_PRETTY_FUNCTION
#define             G_GNUC_NO_INSTRUMENT
#define             G_HAVE_GNUC_VISIBILITY
#define             G_GNUC_INTERNAL
#define             G_GNUC_MAY_ALIAS

#define             G_LIKELY                            (expr)
#define             G_UNLIKELY                          (expr)

#define             G_STRLOC
#define             G_STRFUNC

#define             G_GINT16_MODIFIER
#define             G_GINT16_FORMAT
#define             G_GUINT16_FORMAT
#define             G_GINT32_MODIFIER
#define             G_GINT32_FORMAT
#define             G_GUINT32_FORMAT
#define             G_GINT64_MODIFIER
#define             G_GINT64_FORMAT
#define             G_GUINT64_FORMAT
#define             G_GSIZE_MODIFIER
#define             G_GSIZE_FORMAT
#define             G_GSSIZE_FORMAT
#define             G_GOFFSET_MODIFIER
#define             G_GOFFSET_FORMAT

Description

These macros provide more specialized features which are not needed so often by application programmers.

Details

G_INLINE_FUNC

#  define G_INLINE_FUNC

This macro is used to export function prototypes so they can be linked with an external version when no inlining is performed. The file which implements the functions should define G_IMPLEMENTS_INLINES before including the headers which contain G_INLINE_FUNC declarations. Since inlining is very compiler-dependent using these macros correctly is very difficult. Their use is strongly discouraged.

This macro is often mistaken for a replacement for the inline keyword; inline is already declared in a portable manner in the glib headers and can be used normally.


G_STMT_START

#  define G_STMT_START  do

Used within multi-statement macros so that they can be used in places where only one statement is expected by the compiler.


G_STMT_END

#  define G_STMT_END    while (0)

Used within multi-statement macros so that they can be used in places where only one statement is expected by the compiler.


G_BEGIN_DECLS

# define G_BEGIN_DECLS  extern "C" {

Used (along with G_END_DECLS) to bracket header files. If the compiler in use is a C++ compiler, adds extern "C" around the header.


G_END_DECLS

# define G_END_DECLS    }

Used (along with G_BEGIN_DECLS) to bracket header files. If the compiler in use is a C++ compiler, adds extern "C" around the header.


G_N_ELEMENTS()

#define G_N_ELEMENTS(arr)		(sizeof (arr) / sizeof ((arr)[0]))

Determines the number of elements in an array. The array must be declared so the compiler knows its size at compile-time; this macro will not work on an array allocated on the heap, only static arrays or arrays on the stack.

arr :

the array

G_VA_COPY()

#define             G_VA_COPY(ap1,ap2)

Portable way to copy va_list variables.

In order to use this function, you must include string.h yourself, because this macro may use memmove() and GLib does not include string.h for you.

ap1 :

the va_list variable to place a copy of ap2 in.

ap2 :

a va_list.

G_STRINGIFY()

#define G_STRINGIFY(macro_or_string) G_STRINGIFY_ARG (macro_or_string)

Accepts a macro or a string and converts it into a string after preprocessor argument expansion.

macro_or_string :

a macro or a string.

G_PASTE()

#define G_PASTE(identifier1,identifier2)      G_PASTE_ARGS (identifier1, identifier2)

Yields a new preprocessor pasted identifier 'identifier1identifier2' from its expanded arguments 'identifier1' and 'identifier2'.

identifier1 :

an identifier

identifier2 :

an identifier

Since 2.20


G_PASTE_ARGS()

#define G_PASTE_ARGS(identifier1,identifier2) identifier1 ## identifier2


G_STATIC_ASSERT()

#define G_STATIC_ASSERT(expr) typedef struct { char Compile_Time_Assertion[(expr) ? 1 : -1]; } G_PASTE (_GStaticAssert_, __LINE__)

The G_STATIC_ASSERT macro lets the programmer check a condition at compile time, the condition needs to be compile time computable. The macro can be used in any place where a typedef is valid. The macro should only be used once per source code line.

expr :

a constant expression.

Since 2.20


G_GNUC_EXTENSION

#  define G_GNUC_EXTENSION __extension__

Expands to __extension__ when gcc is used as the compiler. This simply tells gcc not to warn about the following non-standard code when compiling with the -pedantic option.


G_GNUC_CONST

#define             G_GNUC_CONST

Expands to the GNU C const function attribute if the compiler is gcc. Declaring a function as const enables better optimization of calls to the function. A const function doesn't examine any values except its parameters, and has no effects except its return value. See the GNU C documentation for details.

Note

A function that has pointer arguments and examines the data pointed to must not be declared const. Likewise, a function that calls a non-const function usually must not be const. It doesn't make sense for a const function to return void.


G_GNUC_PURE

#define             G_GNUC_PURE

Expands to the GNU C pure function attribute if the compiler is gcc. Declaring a function as pure enables better optimization of calls to the function. A pure function has no effects except its return value and the return value depends only on the parameters and/or global variables. See the GNU C documentation for details.


G_GNUC_MALLOC

#define             G_GNUC_MALLOC

Expands to the GNU C malloc function attribute if the compiler is gcc. Declaring a function as malloc enables better optimization of the function. A function can have the malloc attribute if it returns a pointer which is guaranteed to not alias with any other pointer when the function returns (in practice, this means newly allocated memory). See the GNU C documentation for details.

Since 2.6


G_GNUC_ALLOC_SIZE()

#define G_GNUC_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))

Expands to the GNU C alloc_size function attribute if the compiler is a new enough gcc. This attribute tells the compiler that the function returns a pointer to memory of a size that is specified by the xth function parameter. See the GNU C documentation for details.

x :

the index of the argument specifying the allocation size

Since 2.18


G_GNUC_ALLOC_SIZE2()

#define G_GNUC_ALLOC_SIZE2(x,y) __attribute__((__alloc_size__(x,y)))

Expands to the GNU C alloc_size function attribute if the compiler is a new enough gcc. This attribute tells the compiler that the function returns a pointer to memory of a size that is specified by the product of two function parameters. See the GNU C documentation for details.

x :

the index of the argument specifying one factor of the allocation size

y :

the index of the argument specifying the second factor of the allocation size

Since 2.18


G_GNUC_DEPRECATED

#define             G_GNUC_DEPRECATED

Expands to the GNU C deprecated attribute if the compiler is gcc. It can be used to mark typedefs, variables and functions as deprecated. When called with the -Wdeprecated option, the compiler will generate warnings when deprecated interfaces are used. See the GNU C documentation for details.

Since 2.2


G_GNUC_NORETURN

#define             G_GNUC_NORETURN

Expands to the GNU C noreturn function attribute if the compiler is gcc. It is used for declaring functions which never return. It enables optimization of the function, and avoids possible compiler warnings. See the GNU C documentation for details.


G_GNUC_UNUSED

#define             G_GNUC_UNUSED

Expands to the GNU C unused function attribute if the compiler is gcc. It is used for declaring functions which may never be used. It avoids possible compiler warnings. See the GNU C documentation for details.


G_GNUC_PRINTF()

#define             G_GNUC_PRINTF( format_idx, arg_idx )

Expands to the GNU C format function attribute if the compiler is gcc. This is used for declaring functions which take a variable number of arguments, with the same syntax as printf(). It allows the compiler to type-check the arguments passed to the function. See the GNU C documentation for details.

1
2
3
4
gint g_snprintf (gchar  *string,
                 gulong       n,
                 gchar const *format,
                 ...) G_GNUC_PRINTF (3, 4);

format_idx :

the index of the argument corresponding to the format string. (The arguments are numbered from 1).

arg_idx :

the index of the first of the format arguments.

G_GNUC_SCANF()

#define             G_GNUC_SCANF( format_idx, arg_idx )

Expands to the GNU C format function attribute if the compiler is gcc. This is used for declaring functions which take a variable number of arguments, with the same syntax as scanf(). It allows the compiler to type-check the arguments passed to the function. See the GNU C documentation for details.

format_idx :

the index of the argument corresponding to the format string. (The arguments are numbered from 1).

arg_idx :

the index of the first of the format arguments.

G_GNUC_FORMAT()

#define             G_GNUC_FORMAT( arg_idx )

Expands to the GNU C format_arg function attribute if the compiler is gcc. This function attribute specifies that a function takes a format string for a printf(), scanf(), strftime() or strfmon() style function and modifies it, so that the result can be passed to a printf(), scanf(), strftime() or strfmon() style function (with the remaining arguments to the format function the same as they would have been for the unmodified string). See the GNU C documentation for details.

1
gchar *g_dgettext (gchar *domain_name, gchar *msgid) G_GNUC_FORMAT (2);

arg_idx :

the index of the argument.

G_GNUC_NULL_TERMINATED

#define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))

Expands to the GNU C sentinel function attribute if the compiler is gcc, or "" if it isn't. This function attribute only applies to variadic functions and instructs the compiler to check that the argument list is terminated with an explicit NULL. See the GNU C documentation for details.

Since: 2.8

G_GNUC_WARN_UNUSED_RESULT

#define             G_GNUC_WARN_UNUSED_RESULT

Expands to the GNU C warn_unused_result function attribute if the compiler is gcc, or "" if it isn't. This function attribute makes the compiler emit a warning if the result of a function call is ignored. See the GNU C documentation for details.

Since 2.10


G_GNUC_FUNCTION

#define G_GNUC_FUNCTION         __FUNCTION__

Warning

G_GNUC_FUNCTION is deprecated and should not be used in newly-written code. 2.16

Expands to "" on all modern compilers, and to __FUNCTION__ on gcc version 2.x. Don't use it.


G_GNUC_PRETTY_FUNCTION

#define G_GNUC_PRETTY_FUNCTION  __PRETTY_FUNCTION__

Warning

G_GNUC_PRETTY_FUNCTION is deprecated and should not be used in newly-written code. 2.16

Expands to "" on all modern compilers, and to __PRETTY_FUNCTION__ on gcc version 2.x. Don't use it.


G_GNUC_NO_INSTRUMENT

#define             G_GNUC_NO_INSTRUMENT

Expands to the GNU C no_instrument_function function attribute if the compiler is gcc. Functions with this attribute will not be instrumented for profiling, when the compiler is called with the -finstrument-functions option. See the GNU C documentation for details.


G_HAVE_GNUC_VISIBILITY

#define G_HAVE_GNUC_VISIBILITY 1


G_GNUC_INTERNAL

#define G_GNUC_INTERNAL __attribute__((visibility("hidden")))

This attribute can be used for marking library functions as being used internally to the library only, which may allow the compiler to handle function calls more efficiently. Note that static functions do not need to be marked as internal in this way. See the GNU C documentation for details.

When using a compiler that supports the GNU C hidden visibility attribute, this macro expands to __attribute__((visibility("hidden"))). When using the Sun Studio compiler, it expands to __hidden.

Note that for portability, the attribute should be placed before the function declaration. While GCC allows the macro after the declaration, Sun Studio does not.

1
2
3
4
5
G_GNUC_INTERNAL
void _g_log_fallback_handler (const gchar    *log_domain,
                              GLogLevelFlags  log_level,
                              const gchar    *message,
                              gpointer        unused_data);
Since: 2.6

G_GNUC_MAY_ALIAS

#  define G_GNUC_MAY_ALIAS __attribute__((may_alias))

Expands to the GNU C may_alias type attribute if the compiler is gcc. Types with this attribute will not be subjected to type-based alias analysis, but are assumed to alias with any other type, just like char. See the GNU C documentation for details.

Since: 2.14

G_LIKELY()

#define G_LIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 1))

Hints the compiler that the expression is likely to evaluate to a true value. The compiler may use this information for optimizations.

1
2
if (G_LIKELY (random () != 1))
  g_print ("not one");

expr :

the expression

Returns :

the value of expr

Since 2.2


G_UNLIKELY()

#define G_UNLIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 0))

Hints the compiler that the expression is unlikely to evaluate to a true value. The compiler may use this information for optimizations.

1
2
if (G_UNLIKELY (random () == 1))
  g_print ("a random one");

expr :

the expression

Returns :

the value of expr

Since 2.2


G_STRLOC

#  define G_STRLOC __FILE__ ":" G_STRINGIFY (__LINE__) ":" __PRETTY_FUNCTION__ "()"

Expands to a string identifying the current code position.


G_STRFUNC

#  define G_STRFUNC     ((const char*) (__PRETTY_FUNCTION__))

Expands to a string identifying the current function.

Since 2.4


G_GINT16_MODIFIER

#define G_GINT16_MODIFIER "h"

The platform dependent length modifier for conversion specifiers for scanning and printing values of type gint16 or guint16. It is a string literal, but doesn't include the percent-sign, such that you can add precision and length modifiers between percent-sign and conversion specifier and append a conversion specifier.

The following example prints "0x7b";

1
2
gint16 value = 123;
g_print ("%#" G_GINT16_MODIFIER "x", value);

Since 2.4


G_GINT16_FORMAT

#define G_GINT16_FORMAT "hi"

This is the platform dependent conversion specifier for scanning and printing values of type gint16. It is a string literal, but doesn't include the percent-sign, such that you can add precision and length modifiers between percent-sign and conversion specifier.

1
2
3
4
5
gint16 in;
gint32 out;
sscanf ("42", "%" G_GINT16_FORMAT, &in)
out = in * 1000;
g_print ("%" G_GINT32_FORMAT, out);


G_GUINT16_FORMAT

#define G_GUINT16_FORMAT "hu"

This is the platform dependent conversion specifier for scanning and printing values of type guint16. See also G_GINT16_FORMAT.


G_GINT32_MODIFIER

#define G_GINT32_MODIFIER ""

The platform dependent length modifier for conversion specifiers for scanning and printing values of type gint32 or guint32. It is a string literal, See also G_GINT16_MODIFIER.

Since 2.4


G_GINT32_FORMAT

#define G_GINT32_FORMAT "i"

This is the platform dependent conversion specifier for scanning and printing values of type gint32. See also G_GINT16_FORMAT.


G_GUINT32_FORMAT

#define G_GUINT32_FORMAT "u"

This is the platform dependent conversion specifier for scanning and printing values of type guint32. See also G_GINT16_FORMAT.


G_GINT64_MODIFIER

#define G_GINT64_MODIFIER "l"

The platform dependent length modifier for conversion specifiers for scanning and printing values of type gint64 or guint64. It is a string literal.

Note

Some platforms do not support printing 64 bit integers, even though the types are supported. On such platforms G_GINT64_MODIFIER is not defined.

Since 2.4


G_GINT64_FORMAT

#define G_GINT64_FORMAT "li"

This is the platform dependent conversion specifier for scanning and printing values of type gint64. See also G_GINT16_FORMAT.

Note

Some platforms do not support scanning and printing 64 bit integers, even though the types are supported. On such platforms G_GINT64_FORMAT is not defined. Note that scanf() may not support 64 bit integers, even if G_GINT64_FORMAT is defined. Due to its weak error handling, scanf() is not recommended for parsing anyway; consider using g_strtoull() instead.


G_GUINT64_FORMAT

#define G_GUINT64_FORMAT "lu"

This is the platform dependent conversion specifier for scanning and printing values of type guint64. See also G_GINT16_FORMAT.

Note

Some platforms do not support scanning and printing 64 bit integers, even though the types are supported. On such platforms G_GUINT64_FORMAT is not defined. Note that scanf() may not support 64 bit integers, even if G_GINT64_FORMAT is defined. Due to its weak error handling, scanf() is not recommended for parsing anyway; consider using g_strtoull() instead.


G_GSIZE_MODIFIER

#define G_GSIZE_MODIFIER "l"

The platform dependent length modifier for conversion specifiers for scanning and printing values of type gsize or gssize. It is a string literal,

Since 2.6


G_GSIZE_FORMAT

#define G_GSIZE_FORMAT "lu"

This is the platform dependent conversion specifier for scanning and printing values of type gsize. See also G_GINT16_FORMAT.

Since 2.6


G_GSSIZE_FORMAT

#define G_GSSIZE_FORMAT "li"

This is the platform dependent conversion specifier for scanning and printing values of type gssize. See also G_GINT16_FORMAT.

Since 2.6


G_GOFFSET_MODIFIER

#define G_GOFFSET_MODIFIER      G_GINT64_MODIFIER

The platform dependent length modifier for conversion specifiers for scanning and printing values of type goffset. It is a string literal. See also G_GINT64_MODIFIER.

Since 2.20


G_GOFFSET_FORMAT

#define G_GOFFSET_FORMAT        G_GINT64_FORMAT

This is the platform dependent conversion specifier for scanning and printing values of type goffset. See also G_GINT64_FORMAT.

Since: 2.20