Mercurial > urweb
view src/c/cgi.c @ 1739:c414850f206f
Add support for -boot flag, which allows in-tree execution of Ur/Web
The boot flag rewrites most hardcoded paths to point to the build
directory, and also forces static compilation. This is convenient
for developing Ur/Web, or if you cannot 'sudo make install' Ur/Web.
The following changes were made:
* Header files were moved to include/urweb instead of include;
this lets FFI users point their C_INCLUDE_PATH at this directory
at write <urweb/urweb.h>. For internal Ur/Web executables,
we simply pass -I$PATH/include/urweb as normal.
* Differentiate between LIB and SRCLIB; SRCLIB is Ur and JavaScript
source files, while LIB is compiled products from libtool. For
in-tree compilation these live in different places.
* No longer reference Config for paths; instead use Settings; these
settings can be changed dynamically by Compiler.enableBoot ()
(TODO: add a disableBoot function.)
* config.h is now generated directly in include/urweb/config.h,
for consistency's sake (especially since it gets installed
along with the rest of the headers!)
* All of the autotools build products got updated.
* The linkStatic field in protocols now only contains the name of the
build product, and not the absolute path.
Future users have to be careful not to reference the Settings files
to early, lest they get an old version (this was the source of two
bugs during development of this patch.)
author | Edward Z. Yang <ezyang@mit.edu> |
---|---|
date | Wed, 02 May 2012 17:17:57 -0400 |
parents | ea131de361d9 |
children | 3d922a28370b |
line wrap: on
line source
#include "config.h" #include <stdio.h> #include <ctype.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <stdarg.h> #include "urweb.h" #include "request.h" extern uw_app uw_application; static char *uppercased; static size_t uppercased_len; static char *get_header(void *data, const char *h) { size_t len = strlen(h); char *s, *r; const char *saved_h = h; if (len > uppercased_len) { uppercased_len = len; uppercased = realloc(uppercased, len + 6); } strcpy(uppercased, "HTTP_"); for (s = uppercased+5; *h; ++h) *s++ = *h == '-' ? '_' : toupper((int)*h); *s = 0; if ((r = getenv(uppercased))) return r; else if (!strcasecmp(saved_h, "Content-length") || !strcasecmp(saved_h, "Content-type")) return getenv(uppercased + 5); else return NULL; } static void on_success(uw_context ctx) { } static void on_failure(uw_context ctx) { uw_write_header(ctx, "Status: 500 Internal Server Error\r\n"); } static void log_error(void *data, const char *fmt, ...) { va_list ap; va_start(ap, fmt); vfprintf(stderr, fmt, ap); } static void log_debug(void *data, const char *fmt, ...) { } int main(int argc, char *argv[]) { uw_context ctx = uw_request_new_context(0, &uw_application, NULL, log_error, log_debug); uw_request_context rc = uw_new_request_context(); request_result rr; char *method = getenv("REQUEST_METHOD"), *path = getenv("SCRIPT_NAME"), *path_info = getenv("PATH_INFO"), *query_string = getenv("QUERY_STRING"); char *body = malloc(1); ssize_t body_len = 1, body_pos = 0, res; uppercased = malloc(6); if (!method) { log_error(NULL, "REQUEST_METHOD not set\n"); exit(1); } if (!path) { log_error(NULL, "SCRIPT_NAME not set\n"); exit(1); } if (path_info) { char *new_path = malloc(strlen(path) + strlen(path_info) + 1); sprintf(new_path, "%s%s", path, path_info); path = new_path; } if (!query_string) query_string = ""; while ((res = read(0, body + body_pos, body_len - body_pos)) > 0) { body_pos += res; if (body_pos == body_len) { body_len *= 2; body = realloc(body, body_len); } } if (res < 0) { log_error(NULL, "Error reading stdin\n"); exit(1); } uw_set_on_success(""); uw_set_headers(ctx, get_header, NULL); uw_request_init(&uw_application, NULL, log_error, log_debug); body[body_pos] = 0; rr = uw_request(rc, ctx, method, path, query_string, body, body_pos, on_success, on_failure, NULL, log_error, log_debug, -1, NULL, NULL); uw_print(ctx, 1); if (rr == SERVED) return 0; else return 1; } 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) { if (uw_get_app(ctx)->db_begin(ctx)) uw_error(ctx, FATAL, "Error running SQL BEGIN"); uw_get_app(ctx)->expunger(ctx, cli); uw_commit(ctx); } void uw_post_expunge(uw_context ctx, void *data) { } int uw_supports_direct_status = 1;