Source code

Revision control

Copy as Markdown

Other Tools

#include <stdlib.h>
#include "fixture.h"
int llhttp__on_url(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("url", p, endp);
}
int llhttp__on_url_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "url complete");
#ifdef LLHTTP__TEST_PAUSE_ON_URL_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_url_schema(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("url.schema", p, endp);
}
int llhttp__on_url_host(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("url.host", p, endp);
}
int llhttp__on_url_path(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("url.path", p, endp);
}
int llhttp__on_url_query(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("url.query", p, endp);
}
int llhttp__on_url_fragment(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("url.fragment", p, endp);
}
#ifdef LLHTTP__TEST_HTTP
void llhttp__test_init_request(llparse_t* s) {
s->type = HTTP_REQUEST;
}
void llhttp__test_init_response(llparse_t* s) {
s->type = HTTP_RESPONSE;
}
void llhttp__test_init_request_lenient_headers(llparse_t* s) {
llhttp__test_init_request(s);
s->lenient_flags |= LENIENT_HEADERS;
}
void llhttp__test_init_request_lenient_chunked_length(llparse_t* s) {
llhttp__test_init_request(s);
s->lenient_flags |= LENIENT_CHUNKED_LENGTH;
}
void llhttp__test_init_request_lenient_keep_alive(llparse_t* s) {
llhttp__test_init_request(s);
s->lenient_flags |= LENIENT_KEEP_ALIVE;
}
void llhttp__test_init_request_lenient_transfer_encoding(llparse_t* s) {
llhttp__test_init_request(s);
s->lenient_flags |= LENIENT_TRANSFER_ENCODING;
}
void llhttp__test_init_request_lenient_version(llparse_t* s) {
llhttp__test_init_request(s);
s->lenient_flags |= LENIENT_VERSION;
}
void llhttp__test_init_response_lenient_keep_alive(llparse_t* s) {
llhttp__test_init_response(s);
s->lenient_flags |= LENIENT_KEEP_ALIVE;
}
void llhttp__test_init_response_lenient_version(llparse_t* s) {
llhttp__test_init_response(s);
s->lenient_flags |= LENIENT_VERSION;
}
void llhttp__test_init_response_lenient_headers(llparse_t* s) {
llhttp__test_init_response(s);
s->lenient_flags |= LENIENT_HEADERS;
}
void llhttp__test_finish(llparse_t* s) {
llparse__print(NULL, NULL, "finish=%d", s->finish);
}
int llhttp__on_message_begin(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "message begin");
#ifdef LLHTTP__TEST_PAUSE_ON_MESSAGE_BEGIN
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_message_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "message complete");
#ifdef LLHTTP__TEST_PAUSE_ON_MESSAGE_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_status(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("status", p, endp);
}
int llhttp__on_status_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "status complete");
#ifdef LLHTTP__TEST_PAUSE_ON_STATUS_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_method(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench || s->type != HTTP_REQUEST)
return 0;
return llparse__print_span("method", p, endp);
}
int llhttp__on_method_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "method complete");
#ifdef LLHTTP__TEST_PAUSE_ON_METHOD_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_version(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("version", p, endp);
}
int llhttp__on_version_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "version complete");
#ifdef LLHTTP__TEST_PAUSE_ON_VERSION_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_header_field(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("header_field", p, endp);
}
int llhttp__on_header_field_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "header_field complete");
#ifdef LLHTTP__TEST_PAUSE_ON_HEADER_FIELD_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_header_value(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("header_value", p, endp);
}
int llhttp__on_header_value_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "header_value complete");
#ifdef LLHTTP__TEST_PAUSE_ON_HEADER_VALUE_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_headers_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
if (s->type == HTTP_REQUEST) {
llparse__print(p, endp,
"headers complete method=%d v=%d/%d flags=%x content_length=%llu",
s->method, s->http_major, s->http_minor, s->flags, s->content_length);
} else if (s->type == HTTP_RESPONSE) {
llparse__print(p, endp,
"headers complete status=%d v=%d/%d flags=%x content_length=%llu",
s->status_code, s->http_major, s->http_minor, s->flags,
s->content_length);
} else {
llparse__print(p, endp, "invalid headers complete");
}
#ifdef LLHTTP__TEST_PAUSE_ON_HEADERS_COMPLETE
return LLPARSE__ERROR_PAUSE;
#elif defined(LLHTTP__TEST_SKIP_BODY)
llparse__print(p, endp, "skip body");
return 1;
#else
return 0;
#endif
}
int llhttp__on_body(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("body", p, endp);
}
int llhttp__on_chunk_header(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "chunk header len=%d", (int) s->content_length);
#ifdef LLHTTP__TEST_PAUSE_ON_CHUNK_HEADER
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_chunk_extension_name(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("chunk_extension_name", p, endp);
}
int llhttp__on_chunk_extension_name_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "chunk_extension_name complete");
#ifdef LLHTTP__TEST_PAUSE_ON_CHUNK_EXTENSION_NAME
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_chunk_extension_value(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
return llparse__print_span("chunk_extension_value", p, endp);
}
int llhttp__on_chunk_extension_value_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "chunk_extension_value complete");
#ifdef LLHTTP__TEST_PAUSE_ON_CHUNK_EXTENSION_VALUE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_chunk_complete(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "chunk complete");
#ifdef LLHTTP__TEST_PAUSE_ON_CHUNK_COMPLETE
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
int llhttp__on_reset(llparse_t* s, const char* p, const char* endp) {
if (llparse__in_bench)
return 0;
llparse__print(p, endp, "reset");
#ifdef LLHTTP__TEST_PAUSE_ON_RESET
return LLPARSE__ERROR_PAUSE;
#else
return 0;
#endif
}
#endif /* LLHTTP__TEST_HTTP */