Sha256: d3e24795307b45df0c0db3fe997f1d22b2b350a0ce898634e2b03fa69983672a

Contents?: true

Size: 1.94 KB

Versions: 6

Compression:

Stored size: 1.94 KB

Contents

#include "modp_json.h"

#include <time.h>
#ifndef CLOCKS_PER_SEC
#ifdef CLK_TCK
#define CLOCKS_PER_SEC (CLK_TCK)
#endif
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

size_t test_json_encode(char* dest)
{
    modp_json_ctx ctx;
    modp_json_init(&ctx, dest);
    modp_json_map_open(&ctx);

    modp_json_add_cstring(&ctx, "start_ms");
    modp_json_add_uint32(&ctx, 123456789);

    modp_json_add_cstring(&ctx, "remote_ip");
    modp_json_add_cstring(&ctx, "123.123.123.13");

    modp_json_add_cstring(&ctx, "request");
    modp_json_add_cstring(&ctx, "GET /foobar HTTP/1.1");

    modp_json_add_cstring(&ctx, "headers_in");
    modp_json_ary_open(&ctx);

    modp_json_ary_open(&ctx);
    modp_json_add_cstring(&ctx, "Accept");
    modp_json_add_cstring(&ctx, "*/*");
    modp_json_ary_close(&ctx);

    modp_json_ary_open(&ctx);
    modp_json_add_cstring(&ctx, "Content-type");
    modp_json_add_cstring(&ctx, "text/plain");
    modp_json_ary_close(&ctx);

    modp_json_ary_open(&ctx);
    modp_json_add_cstring(&ctx, "Connection");
    modp_json_add_cstring(&ctx, "close");
    modp_json_ary_close(&ctx);

    modp_json_ary_open(&ctx);
    modp_json_add_cstring(&ctx, "User-agent");
    modp_json_add_cstring(&ctx, "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405");
    modp_json_ary_close(&ctx);

    modp_json_ary_close(&ctx);
    modp_json_map_close(&ctx);
    return modp_json_end(&ctx);
}

int main(void)
{

    const int imax = 1000000;
    clock_t t0, t1;
    int i;
    double s1;
    size_t len;
    char buf2[512];

    printf("ALG\tEncodes/Sec\tBYTES\n");
    fflush(stdout);
    t0 = clock();
    for (i = 0; i < imax; ++i) {
        len = test_json_encode(NULL);
        len = test_json_encode(buf2);
    }
    t1 = clock();
    s1 = (double)(t1 - t0) * (1.0 / (double)CLOCKS_PER_SEC);
    printf("%s\t%8.0f\t%u\n", "JSON", imax / s1, (unsigned)len);
    fflush(stdout);
    return 0;
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ffi-hydrogen-0.1.5 vendor/stringencoders/test/speedtest_msg.c
ffi-hydrogen-0.1.4 vendor/stringencoders/test/speedtest_msg.c
ffi-hydrogen-0.1.3 vendor/stringencoders/test/speedtest_msg.c
ffi-hydrogen-0.1.2 vendor/stringencoders/test/speedtest_msg.c
ffi-hydrogen-0.1.1 vendor/stringencoders/test/speedtest_msg.c
ffi-hydrogen-0.1.0 vendor/stringencoders/test/speedtest_msg.c