2012-01-29 16:34:10 +01:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-01-29 16:34:10 +01:00
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-07-22 15:12:54 +02:00
|
|
|
#ifndef APP_HELPER_H
|
|
|
|
#define APP_HELPER_H
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include "nghttp2_config.h"
|
2012-07-27 15:11:13 +02:00
|
|
|
|
2012-01-29 16:34:10 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <cstdlib>
|
2012-01-31 14:04:51 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <poll.h>
|
2013-09-16 10:36:24 +02:00
|
|
|
|
2012-08-20 21:03:55 +02:00
|
|
|
#include <map>
|
2013-09-16 10:36:24 +02:00
|
|
|
#include <chrono>
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include <nghttp2/nghttp2.h>
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
namespace nghttp2 {
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
int verbose_on_header_callback(nghttp2_session *session,
|
|
|
|
const nghttp2_frame *frame,
|
|
|
|
const uint8_t *name, size_t namelen,
|
|
|
|
const uint8_t *value, size_t valuelen,
|
2014-04-01 19:10:35 +02:00
|
|
|
uint8_t flags,
|
2014-01-16 15:41:13 +01:00
|
|
|
void *user_data);
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-12-20 15:48:56 +01:00
|
|
|
int verbose_on_frame_recv_callback
|
2013-09-03 14:24:14 +02:00
|
|
|
(nghttp2_session *session, const nghttp2_frame *frame, void *user_data);
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-12-20 15:48:56 +01:00
|
|
|
int verbose_on_invalid_frame_recv_callback
|
2013-09-03 14:24:14 +02:00
|
|
|
(nghttp2_session *session, const nghttp2_frame *frame,
|
2014-08-23 10:34:56 +02:00
|
|
|
uint32_t error_code, void *user_data);
|
2012-05-09 16:27:44 +02:00
|
|
|
|
2013-12-20 15:48:56 +01:00
|
|
|
int verbose_on_frame_send_callback
|
2013-09-03 14:24:14 +02:00
|
|
|
(nghttp2_session *session, const nghttp2_frame *frame, void *user_data);
|
2012-02-07 17:50:58 +01:00
|
|
|
|
2014-08-10 10:15:35 +02:00
|
|
|
int verbose_on_data_chunk_recv_callback
|
|
|
|
(nghttp2_session *session, uint8_t flags, int32_t stream_id,
|
|
|
|
const uint8_t *data, size_t len, void *user_data);
|
|
|
|
|
2012-10-14 16:39:41 +02:00
|
|
|
// Returns difference between |a| and |b| in milliseconds, assuming
|
|
|
|
// |a| is more recent than |b|.
|
2013-09-16 10:36:24 +02:00
|
|
|
template<typename TimePoint>
|
|
|
|
std::chrono::milliseconds time_delta(const TimePoint& a, const TimePoint& b)
|
|
|
|
{
|
|
|
|
return std::chrono::duration_cast<std::chrono::milliseconds>(a - b);
|
|
|
|
}
|
2012-10-14 16:39:41 +02:00
|
|
|
|
2013-09-16 10:36:24 +02:00
|
|
|
// Resets timer
|
2012-01-30 16:46:46 +01:00
|
|
|
void reset_timer();
|
|
|
|
|
2013-09-16 10:36:24 +02:00
|
|
|
// Returns the duration since timer reset.
|
|
|
|
std::chrono::milliseconds get_timer();
|
2012-01-30 16:46:46 +01:00
|
|
|
|
2013-09-16 10:36:24 +02:00
|
|
|
// Returns current time point.
|
|
|
|
std::chrono::steady_clock::time_point get_time();
|
2013-01-27 09:16:13 +01:00
|
|
|
|
2012-02-07 17:50:58 +01:00
|
|
|
void print_timer();
|
|
|
|
|
2013-01-27 08:27:17 +01:00
|
|
|
// Setting true will print characters with ANSI color escape codes
|
2013-11-04 10:22:29 +01:00
|
|
|
// when printing HTTP2 frames. This function changes a static
|
|
|
|
// variable.
|
2013-01-27 08:27:17 +01:00
|
|
|
void set_color_output(bool f);
|
|
|
|
|
2014-02-09 10:47:26 +01:00
|
|
|
// Set output file when printing HTTP2 frames. By default, stdout is
|
|
|
|
// used.
|
|
|
|
void set_output(FILE *file);
|
|
|
|
|
2014-05-02 16:34:57 +02:00
|
|
|
ssize_t deflate_data(uint8_t *out, size_t outlen,
|
|
|
|
const uint8_t *in, size_t inlen);
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
} // namespace nghttp2
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-22 15:12:54 +02:00
|
|
|
#endif // APP_HELPER_H
|