mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-19 03:59:45 +08:00
5d5badfcee
PUBLISHED_FROM=e6ccbd73b27985fbf9949adc3e07c90a75f75603
101 lines
2.7 KiB
C
101 lines
2.7 KiB
C
// Copyright (c) 2015 Cesanta Software Limited
|
|
// All rights reserved
|
|
//
|
|
// This example demonstrates how to handle very large requests without keeping
|
|
// them in memory.
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include "mongoose.h"
|
|
|
|
static const char *s_http_port = "8000";
|
|
static struct mg_serve_http_opts s_http_server_opts;
|
|
|
|
struct file_writer_data {
|
|
FILE *fp;
|
|
size_t bytes_written;
|
|
};
|
|
|
|
static void handle_upload(struct mg_connection *nc, int ev, void *p) {
|
|
struct file_writer_data *data = (struct file_writer_data *) nc->user_data;
|
|
struct mg_http_multipart_part *mp = (struct mg_http_multipart_part *) p;
|
|
|
|
switch (ev) {
|
|
case MG_EV_HTTP_PART_BEGIN: {
|
|
if (data == NULL) {
|
|
data = calloc(1, sizeof(struct file_writer_data));
|
|
data->fp = tmpfile();
|
|
data->bytes_written = 0;
|
|
|
|
if (data->fp == NULL) {
|
|
mg_printf(nc, "%s",
|
|
"HTTP/1.1 500 Failed to open a file\r\n"
|
|
"Content-Length: 0\r\n\r\n");
|
|
nc->flags |= MG_F_SEND_AND_CLOSE;
|
|
free(data);
|
|
return;
|
|
}
|
|
nc->user_data = (void *) data;
|
|
}
|
|
break;
|
|
}
|
|
case MG_EV_HTTP_PART_DATA: {
|
|
if (fwrite(mp->data.p, 1, mp->data.len, data->fp) != mp->data.len) {
|
|
mg_printf(nc, "%s",
|
|
"HTTP/1.1 500 Failed to write to a file\r\n"
|
|
"Content-Length: 0\r\n\r\n");
|
|
nc->flags |= MG_F_SEND_AND_CLOSE;
|
|
return;
|
|
}
|
|
data->bytes_written += mp->data.len;
|
|
break;
|
|
}
|
|
case MG_EV_HTTP_PART_END: {
|
|
mg_printf(nc,
|
|
"HTTP/1.1 200 OK\r\n"
|
|
"Content-Type: text/plain\r\n"
|
|
"Connection: close\r\n\r\n"
|
|
"Written %ld of POST data to a temp file\n\n",
|
|
(long) ftell(data->fp));
|
|
nc->flags |= MG_F_SEND_AND_CLOSE;
|
|
fclose(data->fp);
|
|
free(data);
|
|
nc->user_data = NULL;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void ev_handler(struct mg_connection *nc, int ev, void *ev_data) {
|
|
if (ev == MG_EV_HTTP_REQUEST) {
|
|
mg_serve_http(nc, ev_data, s_http_server_opts);
|
|
}
|
|
}
|
|
|
|
int main(void) {
|
|
struct mg_mgr mgr;
|
|
struct mg_connection *c;
|
|
|
|
mg_mgr_init(&mgr, NULL);
|
|
c = mg_bind(&mgr, s_http_port, ev_handler);
|
|
if (c == NULL) {
|
|
fprintf(stderr, "Cannot start server on port %s\n", s_http_port);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
s_http_server_opts.document_root = "."; // Serve current directory
|
|
mg_register_http_endpoint(c, "/upload", handle_upload MG_UD_ARG(NULL));
|
|
|
|
// Set up HTTP server parameters
|
|
mg_set_protocol_http_websocket(c);
|
|
|
|
printf("Starting web server on port %s\n", s_http_port);
|
|
for (;;) {
|
|
mg_mgr_poll(&mgr, 1000);
|
|
}
|
|
mg_mgr_free(&mgr);
|
|
|
|
return 0;
|
|
}
|