From f1f5c38793bfc6160e1e377d3061e8ba592e3057 Mon Sep 17 00:00:00 2001 From: snowdrop Date: Fri, 15 Oct 2004 13:42:07 +0000 Subject: development --- examples/nanohttp/postserver.c | 137 +++++++++++++++++++++++++++++++++-------- 1 file changed, 112 insertions(+), 25 deletions(-) (limited to 'examples/nanohttp/postserver.c') diff --git a/examples/nanohttp/postserver.c b/examples/nanohttp/postserver.c index a28dc20..4e6a3c5 100644 --- a/examples/nanohttp/postserver.c +++ b/examples/nanohttp/postserver.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: postserver.c,v 1.3 2004/09/19 07:05:03 snowdrop Exp $ +* $Id: postserver.c,v 1.4 2004/10/15 13:42:07 snowdrop Exp $ * * CSOAP Project: A http client/server library in C (example) * Copyright (C) 2003 Ferhat Ayaz @@ -19,12 +19,16 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * -* Email: ayaz@jprogrammer.net +* Email: ferhatayaz@yahoo.com ******************************************************************/ #include #include - +/* + Please ignore this file. This is just for me to test + some features and new functions. In the future this + file will also be good start to learn nanohttp +*/ static void _print_binary_ascii(int n) { @@ -60,47 +64,119 @@ void _print_binary_ascii2(unsigned char n) log_verbose2("%s", ascii); } + +void echomime_service(httpd_conn_t *conn, hrequest_t *req) +{ + part_t *part; + int status; + char *content_type , *transfer_encoding, + *content_id, *root_content_type; + + if (!req->attachments || !req->content_type) + { + httpd_send_header(conn, 200, "OK"); + http_output_stream_write_string(conn->out, "

"); + http_output_stream_write_string(conn->out, + "You do not posted a MIME message!

"); + return; + } + else + { + + root_content_type = hpairnode_get(req->content_type->params, "type"); + + status = + httpd_mime_send_header(conn, req->attachments->root_part->id, "", + root_content_type, 200, "OK"); + + if (status != H_OK) + return; + + part = req->attachments->parts; + while (part) + { + content_id = hpairnode_get(part->header, HEADER_CONTENT_ID); + content_type = hpairnode_get(part->header, HEADER_CONTENT_TYPE); + transfer_encoding = hpairnode_get(part->header, HEADER_TRANSFER_ENCODING); + status = httpd_mime_send_file(conn, content_id, + content_type, transfer_encoding, part->filename); + if (status != H_OK) + return; + part = part->next; + } + + httpd_mime_end(conn); + } + +} + /* SERVICE: http://host:port/postserver */ void post_service(httpd_conn_t *conn, hrequest_t *req) { unsigned char *postdata; - long received; + long received, total=0; unsigned int tmp; char buffer[15]; - + hpair_t *pair; +/* postdata = httpd_get_postdata(conn, req, &received, -1); - - if (postdata != NULL) { - - httpd_send_header(conn, 200, "OK", NULL); - hsocket_send(conn->sock, "\n"); - hsocket_send(conn->sock, "

You Posted:


\n"); - hsocket_nsend(conn->sock, postdata, received); - hsocket_send(conn->sock, "

Received size


\n"); - sprintf(buffer, "%d", received); - hsocket_send(conn->sock, buffer); - hsocket_send(conn->sock, ""); +*/ + if (req->method == HTTP_REQUEST_POST) { + + httpd_send_header(conn, 200, "OK"); + http_output_stream_write_string(conn->out, "\n"); + http_output_stream_write_string(conn->out, "

You Posted:


\n"); + while (http_input_stream_is_ready(req->in)) + { + received = http_input_stream_read(req->in, buffer, 10); + http_output_stream_write(conn->out, buffer, received); + total += received; + } + http_output_stream_write_string(conn->out, "

Received size


\n"); + sprintf(buffer, "%d", total); + http_output_stream_write_string(conn->out, buffer); _print_binary_ascii2(postdata[0]); _print_binary_ascii2(postdata[1]); _print_binary_ascii2(postdata[2]); _print_binary_ascii2(postdata[3]); - free(postdata); + /* free(postdata);*/ } else { - httpd_send_header(conn, 200, "OK", NULL); - hsocket_send(conn->sock, ""); - hsocket_send(conn->sock, "
"); - hsocket_send(conn->sock, "Enter Postdata: "); - hsocket_send(conn->sock, ""); - hsocket_send(conn->sock, ""); - + httpd_send_header(conn, 200, "OK"); + http_output_stream_write_string(conn->out, ""); + http_output_stream_write_string(conn->out, ""); + http_output_stream_write_string(conn->out, "Enter Postdata: "); + http_output_stream_write_string(conn->out, ""); + } + http_output_stream_write_string(conn->out, "

Content-Type:"); + if (req->content_type) + { + http_output_stream_write_string(conn->out, req->content_type->type); + http_output_stream_write_string(conn->out, "
"); + pair = req->content_type->params; + while (pair) + { + http_output_stream_write_string(conn->out, pair->key); + http_output_stream_write_string(conn->out, "="); + http_output_stream_write_string(conn->out, pair->value); + http_output_stream_write_string(conn->out, "
"); + pair = pair->next; + } + } + else + { + http_output_stream_write_string(conn->out, "Not available"); + } + + http_output_stream_write_string(conn->out, ""); + } int main(int argc, char *argv[]) @@ -112,7 +188,12 @@ int main(int argc, char *argv[]) return 1; } - if (!httpd_register("/", post_service)) { + if (!httpd_register("/postserver", post_service)) { + fprintf(stderr, "Can not register service"); + return 1; + } + + if (!httpd_register("/axis/services/urn:EchoAttachmentsService", echomime_service)) { fprintf(stderr, "Can not register service"); return 1; } @@ -122,5 +203,11 @@ int main(int argc, char *argv[]) return 1; } + httpd_destroy(); + +#ifdef MEM_DEBUG + _mem_report(); +#endif + return 0; } -- cgit v1.1-32-gdbae