A Chicken Scheme wrapper for the C TOML library
Go to file
CK Tan b701a09579
Merge pull request #17 from obreitwi/feature/libtoml.so
Add rules for libtoml.so to Makefile
2019-06-24 09:31:04 -07:00
test add readme 2017-11-17 13:52:59 -08:00
unittest Fix #7: toml_utf8_to_ucs() returns incorrect results 2018-06-08 14:41:44 -07:00
.gitignore Initial commit 2017-03-18 14:15:49 -07:00
LICENSE Add github link to license text 2017-04-16 23:19:51 -07:00
Makefile Add rules for libtoml.so to Makefile 2019-06-24 16:53:21 +02:00
README.md string literal needs double quatation 2018-01-04 18:56:40 +09:00
toml.c Allow 0x/0o/0b integer prefixed in accordance with https://github.com/toml-lang/toml#integer 2019-05-10 17:17:29 +10:00
toml.h add toml_array_type() api 2019-02-27 11:31:49 -08:00
toml_cat.c Fix toml_cat abort on empty array 2018-07-04 14:30:45 +01:00
toml_json.c Fix #14 and #13 2019-02-16 17:37:59 -08:00

README.md

tomlc99

TOML in c99; v0.4.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"))) {
        perror("fopen");
	exit(1);
    }
    conf = toml_parse_file(fp, errbuf, sizeof(errbuf));
    fclose(fp);
    if (0 == conf) {
        fprintf(stderr, "ERROR: %s\n", errbuf);
	exit(1);
    }

    /* locate the [server] table */
    if (0 == (server = toml_table_in(conf, "server"))) {
        fprintf(stderr, "ERROR: missing [server]\n");
	toml_free(conf);
	exit(1);
    }

    /* extract host config value */
    if (0 == (raw = toml_raw_in(server, "host"))) {
        fprintf(stderr, "ERROR: missing 'host' in [server]\n");
	toml_free(conf);
	exit(1);
    }
    if (toml_rtos(raw, &host)) {
        fprintf(stderr, "ERROR: bad value in 'host'\n");
	toml_free(conf);
	exit(1);
    }

    /* extract port config value */
    if (0 == (raw = toml_raw_in(server, "port"))) {
        fprintf(stderr, "ERROR: missing 'port' in [server]\n");
	free(host);
	toml_free(conf);
	exit(1);
    }
    if (toml_rtoi(raw, &port)) {
        fprintf(stderr, "ERROR: bad value in 'port'\n");
        free(host);			
	toml_free(conf);
	exit(1);
    }

    /* 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 test
    % bash build.sh   # do this once
    % bash run.sh      # this will run the test suite