Mercurial > urweb
view src/c/static.c @ 2269:f7bc7c11a656
Make SQL caches use more of the pure caching machinery, but it's brittle.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Thu, 15 Oct 2015 00:52:04 -0400 |
parents | c39c48696393 |
children |
line wrap: on
line source
#include "config.h" #include <stdio.h> #include <stdarg.h> #include "urweb.h" extern uw_app uw_application; static void log_(void *data, const char *fmt, ...) { va_list ap; va_start(ap, fmt); vprintf(fmt, ap); } static uw_loggers loggers = {NULL, log_, log_}; static char *get_header(void *data, const char *h) { return NULL; } int main(int argc, char *argv[]) { uw_context ctx; failure_kind fk; if (argc != 2) { fprintf(stderr, "Pass exactly one argument: the URI to run\n"); return 1; } ctx = uw_init(0, &loggers); uw_set_app(ctx, &uw_application); uw_set_headers(ctx, get_header, NULL); uw_initialize(ctx); while (1) { fk = uw_begin(ctx, argv[1]); if (fk == SUCCESS || fk == RETURN_INDIRECTLY) { uw_print(ctx, 1); puts(""); return 0; } else if (fk != UNLIMITED_RETRY) { fprintf(stderr, "Error: %s\n", uw_error_message(ctx)); return 1; } uw_reset(ctx); } } void *uw_init_client_data() { return NULL; } void uw_free_client_data(void *data) { } void uw_copy_client_data(void *dst, void *src) { } void uw_do_expunge(uw_context ctx, uw_Basis_client cli, void *data) { } void uw_post_expunge(uw_context ctx, void *data) { } int uw_supports_direct_status = 0;