![]() |
xchange v1.0
Structured data exchange for C/C++
|
Structured data representation and JSON support for C/C++.
Author: Attila Kovacs
Updated for 1.0 and later releases.
The xchange library provides structured data representation and exchange in C/C++, and includes support for JSON parsing and generation. It is free to use, in any way you like, without licensing restrictions.
For JSON parsing end emitting, xchange provides a higher-level data model than cjson, with high-level functions for accessing and manipulating data both with less code and with cleaner code.
The xchange library was created, and is maintained, by Attila Kovács at the Center for Astrophysics | Harvard & Smithsonian, and it is available through the Smithsonian/xchange repository on GitHub.
The xchange library can be built either as a shared (libxchange.so[.1]
) and as a static (libxchange.a
) library, depending on what suits your needs best.
You can configure the build, either by editing config.mk
or else by defining the relevant environment variables prior to invoking make
. The following build variables can be configured:
CC
: The C compiler to use (default: gcc
).CPPFLAGS
: C preprocessor flags, such as externally defined compiler constants.CFLAGS
: Flags to pass onto the C compiler (default: -g -Os -Wall
). Note, -Iinclude
will be added automatically.CSTANDARD
: Optionally, specify the C standard to compile for, e.g. c99
to compile for the C99 standard. If defined then -std=$(CSTANDARD)
is added to CFLAGS
automatically.WEXTRA
: If set to 1, -Wextra
is added to CFLAGS
automatically.FORTIFY
: If set it will set the _FORTIFY_SOURCE
macro to the specified value (gcc
supports values 1 through 3). It affords varying levels of extra compile time / runtime checks.LDFLAGS
: Extra linker flags (default: not set). Note, -lm -lpthread
will be added automatically.CHECKEXTRA
: Extra options to pass to cppcheck
for the make check
targetDOXYGEN
: Specify the doxygen
executable to use for generating documentation. If not set (default), make
will use doxygen
in your PATH
(if any). You can also set it to none
to disable document generation and the checking for a usable doxygen
version entirely.After configuring, you can simply run make
, which will build the shared
(lib/libxchange.so[.1]
) and static
(lib/libxchange.a
) libraries, local HTML documentation (provided doxygen
is available), and performs static analysis via the check
target. Or, you may build just the components you are interested in, by specifying the desired make
target(s). (You can use make help
to get a summary of the available make
targets).
After building the library you can install the above components to the desired locations on your system. For a system-wide install you may simply run:
Or, to install in some other locations, you may set a prefix and/or DESTDIR
. For example, to install under /opt
instead, you can:
Or, to stage the installation (to /usr
) under a 'build root':
Provided you have installed the shared (libxchange.so
) or static (libxchange.a
) library in a location that is in your LD_LIBRARY_PATH
(e.g. in /usr/lib
or /usr/local/lib
) you can simply link your program using the -lxchange
flag. Your Makefile
may look like:
(Or, you might simply add -lxchange
to LDFLAGS
and use a more standard recipe.) And, in if you installed the xchange library elsewhere, you can simply add the location to LD_LIBRARY_PATH
prior to linking.
The xchange library defines the XStructure
type to represent structured data. It is defined in xchange.h
, but as a user you really do not need to know much about its layout, as you probably want to avoid low-level direct access to its elements. Rather, you should be using the functions of the xchange API to create, modify, or access data within.
Under the hood, the XStructure
contains a linked list of fields, each an XField
data type to represent a single element, or an array of elements, of the above mentioned types, including embedded Xstructure
s. In this way, an Xstructure
can easily represent a multi-level hierarchy of a composite data object. Each XField
has a name/ID, an associated data type, a dimensionality, a shape (for multidimensional arrays).
The xchange library supports most basic (primitive) data types used across programming languages. The table below shows the unique xchange types recognized by the library and the corresponding pointer/array type values:
XType | element type | Comment / example |
---|---|---|
X_BOOLEAN | boolean | TRUE (1 or non-zero) or FALSE (0) |
X_BYTE | char | '-128 ' to '127 ' |
X_INT16 | int16_t | '-32768 ' to '32767 ' |
X_INT32 | int32_t | '-2,147,483,648 ' to '2,147,483,647 ' |
X_INT64 | int64_t | '-9,223,372,036,854,775,808 ' to '9,223,372,036,854,775,807 ' |
X_FLOAT | float | 1 , 1.0 , -1.234567e-28 |
X_DOUBLE | double | 1 , 1.0 , -1.2345678901234567e-111 |
X_STRING | char * | Hello world! , line1\nline2\n (0-terminated) |
X_CHARS(n) | char[n] | Fixed-length character arrays (also w/o termination) |
X_FIELD | XField | For irregular and/or heterogeneous arrays |
X_STRUCT | XStructure | substructure |
The boolean
type is defined in xchange.h
. The XField.value
is a pointer / array of the given element type. So, an XField
of type X_DOUBLE
will have a value
field that should be cast a (double *)
, while for type X_STRING
the value field shall be cast as (char **)
.
Additionally, the xchange also defines derivative XType
values for native integer storage types, whose widths depend on the particular CPU architecture. Hence, these are aliased to matching unique types (above) by the C preprocessor during compilation:
XType | element type | width | alias of |
---|---|---|---|
X_SHORT | short | >= 16-bits | typically X_INT16 |
X_INT | int | >= 16-bits | often X_INT32 |
X_LONG | long | >= 32-bits | typically X_INT32 or X_INT64 |
X_LLONG | long long | >= 64-bits | typically X_INT64 |
Strings can be either fixed-width or else a 0-terminated sequence of ASCII characters. At its basic level the library does not impose any restriction of what ASCII characters may be used. However, we recommend that users stick to the JSON convention, and represent special characters in escaped form. E.g. carriage return (0xd
) as \
followed by n
, tabs as \
followed by t
, etc. As a result a single backslash should also be escaped as two consecutive \
characters. You might use xjsonEscapeString()
or xjsonUnescapeString()
to perform the conversion to/from standard JSON representation.
Fixed-width strings of up to n characters are represented internally as the XCHAR(n)
type. They may be 0-terminated as appropriate, or else represent exactly n ASCII characters without explicit termination. Alternatively, the X_STRING
type represents ASCII strings of arbitrary length, up to the 0-termination character.
You can create scalar fields easily, e.g.:
Under the hood, scalar values are a special case of arrays containing a single element. Scalars have dimension zero i.e., a shape defined by an empty integer array, e.g. int shape[0]
in a corresponding XField
element.
In this way scalars are distinguished from true arrays containing just a single elements, which have dimensionality <=1 and shapes e.g., int shape[1] = {1}
or int shape[2] = {1, 1}
. The difference, while subtle, becomes more obvious when serializing the array, e.g. to JSON. A scalar floating point value of 1.04, for example, will appear as 1.04
in JSON, whereas the 1D and 2D single-element arrays will be serialized as { 1.04 }
or {{ 1.04 }}
, respectively.
The xchange library supports array data types in one or more dimensions (up to 20 dimensions). For example, to create a field for 2×3×4 array of double
s, you may have something along:
Note, that there is no requirement that the native array has the same dimensionality as it's nominal format in the field. We could have declared data
as a 1D array double data[2 * 3 * 4] = ...
, or really any array (pointer) containing doubles with storage for at least 24 elements. It is the sizes
array, along with the dimensionality, which together define the number of elements used from it, and the shape of the array for xchange.
Arrays of irregular shape or mixed element types can be represented by fields containing an array of XField
entries:
Or, use xCreateMixedArrayField()
to create a multi-dimensional array of heterogeneous elements the same way.
Structures should always be created by calling xCreateStruct()
(or else by an appropriate de-serialization function such as xjsonParseAt()
, or as a copy via xCopyStruct()
). Once the structure is no longer used it should be explicitly destroyed (freed) by calling xDestroyStruct()
. Named substructures can be added to any structure with xSetSubstruct()
, and named fields via xSetField()
. That is the gist of it. So for example, the skeleton structure from the example above can be created programatically as:
and then eventually destroyed after use as:
Since the XStructure
data type can represent hierarchies of arbitrary depth, and named at every level of the hierarchy, we can uniquely identify any particular field, at any level, with an aggregate ID, which concatenates the field names each every level, top-down, with a separator. The convention of xchange is to use colon (':') as the separator. Consider an example structure (in JSON notation):
Then, the leaf "property" entry can be 'addressed' with the aggregate ID of system:subsystem:property
from the top level. The xGetAggregateID()
function is provided to construct such aggregate IDs by gluing together a leading and trailing component.
Once a structure is populated – either by having constructed it programatically, or e.g. by parsing a JSON definition of it from a string or file – you can access its content and/or modify it.
E.g., to retrieve the "property" field from the above example structure:
or to retrieve the "subsystem" structure from within:
Conversely you can set / update fields in a structure using xSetField()
/ xSetSubstruct()
, e.g.:
The above calls return the old values (if any) for the "foo" and "bar" field in the structure, e.g. so we may dispose of them if appropriate:
You can also remove existing fields from structures using xRemoveField()
, e.g.
The normal xGetField()
and xGetSubstruct()
functions have computational costs that scale linearly with the number of direct fields in the structure. It is not much of an issue for structures that contain dozens of, or even a couple hundred, fields (per layer). For much larger structures, which have a fixed layout, there is an option for a potentially much more efficient hash-based lookup also. E.g. instead of xGetField()
you may use xLookupField()
:
Note however, that preparing the lookup table has significant O(N) computational cost also. Therefore, a lookup table is practical only if you are going to use it repeatedly, many times over. As a rule of thumb, lookups may have the advantage if accessing fields in a structure by name hundreds of times, or more.
The same performance limitation also applies to building large structures, since the xSetField()
and xSetSubstruct()
functions iterate over the existing fields to check if a prior field by the same name was already present, and which should be removed before the new field is set (hence the time to build up a structure with N fields will scale as _O(N2)_ in general). The user may consider using xInsertField()
instead, which is much more scalable for building large structures, since it does not check for duplicates (hence scales as O(N) overall). However, xInsertField()
also makes the ordering of fields less intuitive, and it is left up to the caller to ensure that field names added this way are never duplicated. (Tip: if you used InsertField()
consistently, you may call xReverseFieldOrder()
at the end, so the fields will appear in the same order in which they were inserted.)
You can easily iterate over the elements also. This is one application where you may want to know the internal layout of XStructure
, namely that it contains a simple linked-list of XField
fields. One way to iterate over a structures elements is with a for
loop, e.g.:
You can easily sort fields by name using xSortFieldsByName()
, or with using a custom comparator function with xSortFields()
. You can also reverse the order with xReverseFieldOrder()
. For example to sort fields in a structure (and its substructures) in descending alphabetical order:
Once you have an XStructure
data object, you can easily convert it to JSON string representation, as:
The above produces a proper JSON document. Or, you can do the reverse and create an XStructure
from its JSON representation, either from a string (a 0-terminated char
array):
or parse it from a file, which contains a JSON definition of the structured data:
Alternatively, you can also create partial JSON fragments for individual fields, e.g.:
For example, for a numerical array field with 4 elements the above might generate something like:
You might just want to use JSON-style escaping for strings, and xjsonEscape()
/ xjsonUnescape()
can help with that too. Suppose you have a C string that you want to escape...
If you print string
to a file or the standard output, it will show up as 2 lines:
But if you now print escaped
instead, that will show up as:
And the reverse, suppose you read back the above line from an input, containing the escaped form, and want to reconstruct from it the original C string with the special characters in it:
The functions that can encounter an error will return either one of the error codes defined in xchange.h
, or NULL
pointers. String descriptions for the error codes can be produced by xErrorDescription(int)
. For example,
The JSON parser can also sink its error messages to a designated file or stream, which can be set by xjsonSetErrorStream(FILE *)
.
You can enable verbose output of the xchange library with xSetVerbose(boolean)
. When enabled, it will produce status messages to stderr
so you can follow what's going on. In addition (or alternatively), you can enable debug messages with xSetDebug(boolean)
. When enabled, all errors encountered by the library (such as invalid arguments passed) will be printed to stderr
, including call traces, so you can walk back to see where the error may have originated from. (You can also enable debug messages by default by defining the DEBUG
constant for the compiler, e.g. by adding -DDEBUG
to CFLAGS
prior to calling make
).
For helping to debug your application, the xchange library provides two macros: xvprintf()
and xdprintf()
, for printing verbose and debug messages to stderr
. Both work just like printf()
, but they are conditional on verbosity being enabled via xSetVerbose(boolean)
and xSetDebug(boolean)
, respectively. Applications using xchange may use these macros to produce their own verbose and/or debugging outputs conditional on the same global settings.
There are a number of ways this little library can evolve and grow in the not too distant future. Some of the obvious paths forward are:
X_FLOAT128
).If you have an idea for a must have feature, please let me (Attila) know. Pull requests, for new features or fixes to existing ones are especially welcome!
Copyright (C) 2025 Attila Kovács