mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
4.1 KiB
118 lines
4.1 KiB
16 years ago
|
/* This file is part of the libebb web server library
|
||
|
*
|
||
|
* Copyright (c) 2008 Ryan Dahl (ry@ndahl.us)
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This parser is based on code from Zed Shaw's Mongrel.
|
||
|
* Copyright (c) 2005 Zed A. Shaw
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||
|
* a copy of this software and associated documentation files (the
|
||
|
* "Software"), to deal in the Software without restriction, including
|
||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||
|
* the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be
|
||
|
* included in all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
*/
|
||
|
#ifndef ebb_request_parser_h
|
||
|
#define ebb_request_parser_h
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
typedef struct ebb_request ebb_request;
|
||
|
typedef struct ebb_request_parser ebb_request_parser;
|
||
|
typedef void (*ebb_header_cb)(ebb_request*, const char *at, size_t length, int header_index);
|
||
|
typedef void (*ebb_element_cb)(ebb_request*, const char *at, size_t length);
|
||
|
|
||
|
#define EBB_MAX_MULTIPART_BOUNDARY_LEN 20
|
||
|
|
||
|
/* HTTP Methods */
|
||
|
#define EBB_COPY 0x00000001
|
||
|
#define EBB_DELETE 0x00000002
|
||
|
#define EBB_GET 0x00000004
|
||
|
#define EBB_HEAD 0x00000008
|
||
|
#define EBB_LOCK 0x00000010
|
||
|
#define EBB_MKCOL 0x00000020
|
||
|
#define EBB_MOVE 0x00000040
|
||
|
#define EBB_OPTIONS 0x00000080
|
||
|
#define EBB_POST 0x00000100
|
||
|
#define EBB_PROPFIND 0x00000200
|
||
|
#define EBB_PROPPATCH 0x00000400
|
||
|
#define EBB_PUT 0x00000800
|
||
|
#define EBB_TRACE 0x00001000
|
||
|
#define EBB_UNLOCK 0x00002000
|
||
|
|
||
|
/* Transfer Encodings */
|
||
|
#define EBB_IDENTITY 0x00000001
|
||
|
#define EBB_CHUNKED 0x00000002
|
||
|
|
||
|
struct ebb_request {
|
||
|
int method;
|
||
|
int transfer_encoding; /* ro */
|
||
|
int expect_continue; /* ro */
|
||
|
unsigned int version_major; /* ro */
|
||
|
unsigned int version_minor; /* ro */
|
||
|
int number_of_headers; /* ro */
|
||
|
int keep_alive; /* private - use ebb_request_should_keep_alive */
|
||
|
size_t content_length; /* ro - 0 if unknown */
|
||
|
size_t body_read; /* ro */
|
||
|
|
||
|
/* Public - ordered list of callbacks */
|
||
|
ebb_element_cb on_path;
|
||
|
ebb_element_cb on_query_string;
|
||
|
ebb_element_cb on_uri;
|
||
|
ebb_element_cb on_fragment;
|
||
|
ebb_header_cb on_header_field;
|
||
|
ebb_header_cb on_header_value;
|
||
|
void (*on_headers_complete)(ebb_request *);
|
||
|
ebb_element_cb on_body;
|
||
|
void (*on_complete)(ebb_request *);
|
||
|
void *data;
|
||
|
};
|
||
|
|
||
|
struct ebb_request_parser {
|
||
|
int cs; /* private */
|
||
|
size_t chunk_size; /* private */
|
||
|
unsigned eating:1; /* private */
|
||
|
ebb_request *current_request; /* ro */
|
||
|
const char *header_field_mark;
|
||
|
const char *header_value_mark;
|
||
|
const char *query_string_mark;
|
||
|
const char *path_mark;
|
||
|
const char *uri_mark;
|
||
|
const char *fragment_mark;
|
||
|
|
||
|
/* Public */
|
||
|
ebb_request* (*new_request)(void*);
|
||
|
void *data;
|
||
|
};
|
||
|
|
||
|
void ebb_request_parser_init(ebb_request_parser *parser);
|
||
|
size_t ebb_request_parser_execute(ebb_request_parser *parser, const char *data, size_t len);
|
||
|
int ebb_request_parser_has_error(ebb_request_parser *parser);
|
||
|
int ebb_request_parser_is_finished(ebb_request_parser *parser);
|
||
|
void ebb_request_init(ebb_request *);
|
||
|
int ebb_request_should_keep_alive(ebb_request *request);
|
||
|
#define ebb_request_has_body(request) \
|
||
|
(request->transfer_encoding == EBB_CHUNKED || request->content_length > 0 )
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif
|