summaryrefslogtreecommitdiff
path: root/src/c
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-11 12:40:40 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-11 12:40:40 -0400
commitfe9025e471578cbdef8ee21e0f9dc51f0f2107ce (patch)
tree69868d711618839352bda0d8d00aa7505c27892a /src/c
parent549b3c11b75bb08eb6b686d2d1a04bc0ec7647a9 (diff)
Region memory allocation for query parameters
Diffstat (limited to 'src/c')
-rw-r--r--src/c/urweb.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c
index d8d1ab18..7c7b057f 100644
--- a/src/c/urweb.c
+++ b/src/c/urweb.c
@@ -11,6 +11,10 @@ uw_unit uw_unit_v = {};
#define ERROR_BUF_LEN 1024
+typedef struct regions {
+ struct regions *next;
+} regions;
+
struct uw_context {
char *page, *page_front, *page_back;
char *heap, *heap_front, *heap_back;
@@ -20,6 +24,8 @@ struct uw_context {
jmp_buf jmp_buf;
+ regions *regions;
+
char error_message[ERROR_BUF_LEN];
};
@@ -38,6 +44,8 @@ uw_context uw_init(size_t page_len, size_t heap_len) {
ctx->db = NULL;
+ ctx->regions = NULL;
+
ctx->error_message[0] = 0;
return ctx;
@@ -61,6 +69,7 @@ void uw_free(uw_context ctx) {
void uw_reset_keep_request(uw_context ctx) {
ctx->page_front = ctx->page;
ctx->heap_front = ctx->heap;
+ ctx->regions = NULL;
ctx->error_message[0] = 0;
}
@@ -68,6 +77,7 @@ void uw_reset_keep_request(uw_context ctx) {
void uw_reset_keep_error_message(uw_context ctx) {
ctx->page_front = ctx->page;
ctx->heap_front = ctx->heap;
+ ctx->regions = NULL;
}
void uw_reset(uw_context ctx) {
@@ -176,6 +186,27 @@ void *uw_malloc(uw_context ctx, size_t len) {
return result;
}
+void uw_begin_region(uw_context ctx) {
+ regions *r = (regions *) ctx->heap_front;
+
+ uw_check_heap(ctx, sizeof(regions));
+
+ ctx->heap_front += sizeof(regions);
+
+ r->next = ctx->regions;
+ ctx->regions = r;
+}
+
+void uw_end_region(uw_context ctx) {
+ regions *r = ctx->regions;
+
+ if (r == NULL)
+ uw_error(ctx, FATAL, "Region stack underflow");
+
+ ctx->heap_front = (char *) r;
+ ctx->regions = r->next;
+}
+
int uw_really_send(int sock, const void *buf, ssize_t len) {
while (len > 0) {
ssize_t n = send(sock, buf, len, 0);