X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=httpinput.h;h=0e29453fb4bdab7aabcc6f7f092940bcf7d8b353;hb=0ad0786c4f99aaa7bbb13a79e9fd579b3727d665;hp=6b0c87512dffee116dea7c86c89404a5e0090e56;hpb=bfc1a54cf84bb1784c14bd4f5acbb500460e35b5;p=cubemap diff --git a/httpinput.h b/httpinput.h index 6b0c875..0e29453 100644 --- a/httpinput.h +++ b/httpinput.h @@ -7,12 +7,13 @@ #include #include "input.h" +#include "metacube2.h" class InputProto; class HTTPInput : public Input { public: - HTTPInput(const std::string &url); + HTTPInput(const std::string &url, Input::Encoding encoding); // Serialization/deserialization. HTTPInput(const InputProto &serialized); @@ -44,6 +45,8 @@ private: // and outputs a warning. void drop_pending_data(size_t num_bytes); + void process_metacube_metadata_block(const metacube2_block_header &hdr, const char *payload, uint32_t payload_size); + enum State { NOT_CONNECTED, SENDING_REQUEST, @@ -59,6 +62,9 @@ private: std::string url; std::string host, port, path; + // What the input stream is to be interpreted as (normally Metacube). + Input::Encoding encoding; + // The HTTP request, with headers and all. // Only relevant for SENDING_REQUEST. std::string request; @@ -91,6 +97,17 @@ private: // The current statistics for this connection. Protected by . InputStats stats; + + // Number of (started) connection attempts since last data byte was successfully read. + unsigned num_connection_attempts; + + // If set, don't log anything related to connections. + // (Only set if we've had enough unsuccessful connection attempts.) + bool suppress_logging; + + // Last time we made a connection with logging enabled. + // (Initially at some point before the epoch.) + timespec last_verbose_connection; }; #endif // !defined(_HTTPINPUT_H)