A Chicken Scheme wrapper for the C TOML library
Go to file
Theak 7efd69ca83 Fix for #29: STRNDUP memory leak fix 2019-12-29 14:09:02 +00:00
test1 v0.5 compliant 2019-10-08 16:58:18 -07:00
test2 prettier prints 2019-10-10 17:34:45 -07:00
unittest Fix #7: toml_utf8_to_ucs() returns incorrect results 2018-06-08 14:41:44 -07:00
.gitignore v0.5 compliant 2019-10-08 16:58:18 -07:00
LICENSE Add github link to license text 2017-04-16 23:19:51 -07:00
Makefile use the default CC per makefile var 2019-09-12 21:56:11 -07:00
README.md simplify example in README.md 2019-10-09 16:44:07 -07:00
toml.c Fix for #29: STRNDUP memory leak fix 2019-12-29 14:09:02 +00:00
toml.h fix issue #22: add toml_set_memutil 2019-09-26 22:29:25 -07:00
toml_cat.c Fix toml_cat abort on empty array 2018-07-04 14:30:45 +01:00
toml_json.c Handle more test cases 2019-08-16 04:35:14 -07:00

README.md

tomlc99

TOML in c99; v0.5.0 compliant.

Usage

Please see the toml.h file for details. What follows is a simple example that parses this config file:

[server]
    host = "www.example.com"
    port = 80

For each config param, the code first extracts a raw value and then convert it to a string or integer depending on context.


    FILE* fp;
    toml_table_t* conf;
    toml_table_t* server;
    const char* raw;
    char* host;
    int64_t port;
    char errbuf[200];

    /* open file and parse */
    if (0 == (fp = fopen(FNAME, "r"))) {
	return handle_error();
    }
    conf = toml_parse_file(fp, errbuf, sizeof(errbuf));
    fclose(fp);
    if (0 == conf) {
	return handle_error();
    }

    /* locate the [server] table */
    if (0 == (server = toml_table_in(conf, "server"))) {
	return handle_error();
    }

    /* extract host config value */
    if (0 == (raw = toml_raw_in(server, "host"))) {
	return handle_error();
    }
    if (toml_rtos(raw, &host)) {
	return handle_error();
    }

    /* extract port config value */
    if (0 == (raw = toml_raw_in(server, "port"))) {
	return handle_error();
    }
    if (toml_rtoi(raw, &port)) {
	return handle_error();
    }

    /* done with conf */
    toml_free(conf);

    /* use host and port */
    do_work(host, port);

    /* clean up */
    free(host);

Building

A normal make suffices. Alternately, you can also simply include the toml.c and toml.h files in your project.

Testing

To test against the standard test set provided by BurntSushi/toml-test:

   % make
   % cd test1
   % bash build.sh   # do this once
   % bash run.sh     # this will run the test suite

To test against the standard test set provided by iarna/toml:

   % make
   % cd test2
   % bash build.sh   # do this once
   % bash run.sh     # this will run the test suite