X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=input.h;h=d609fdfa5cdfea9f0ea2427eeed349e5f8e4236a;hp=5b3bbd2744d144a3bc9b71fdc6bbc37aeadbb6c9;hb=26fe3ab755034ea3be8321ec0af548670f8c3bd8;hpb=bfc1a54cf84bb1784c14bd4f5acbb500460e35b5 diff --git a/input.h b/input.h index 5b3bbd2..d609fdf 100644 --- a/input.h +++ b/input.h @@ -10,14 +10,6 @@ class Input; class InputProto; -// Extremely rudimentary URL parsing. -bool parse_url(const std::string &url, std::string *protocol, std::string *host, std::string *port, std::string *path); - -// Figure out the right type of input based on the URL, and create a new Input of the right type. -// Will return NULL if unknown. -Input *create_input(const std::string &url); -Input *create_input(const InputProto &serialized); - // Digested statistics for writing to logs etc. struct InputStats { std::string url; @@ -29,20 +21,29 @@ struct InputStats { // The number of data bytes we have received so far (or more precisely, // number of data bytes we have sent on to the stream). This excludes Metacube - // headers and corrupted data we've skipped. + // headers, metadata and corrupted data we've skipped. // // Not reset across connections. size_t data_bytes_received; + // Same, except counts only Metacube metadata. + size_t metadata_bytes_received; + // When the current connection was initiated. -1 if we are not currently connected. time_t connect_time; + // Last latency measurement, HUGE_VAL if no measurement yet. + double latency_sec; + // TODO: Number of loss events might both be useful, // similar to for clients. Also, per-connection byte counters. }; class Input : public Thread { public: + // Must be in sync with StreamConfig::Encoding. + enum Encoding { INPUT_ENCODING_RAW = 0, INPUT_ENCODING_METACUBE }; + virtual ~Input(); virtual InputProto serialize() const = 0; virtual std::string get_url() const = 0; @@ -53,4 +54,12 @@ public: virtual InputStats get_stats() const = 0; }; +// Extremely rudimentary URL parsing. +bool parse_url(const std::string &url, std::string *protocol, std::string *user, std::string *host, std::string *port, std::string *path); + +// Figure out the right type of input based on the URL, and create a new Input of the right type. +// Will return NULL if unknown. +Input *create_input(const std::string &url, Input::Encoding encoding); +Input *create_input(const InputProto &serialized); + #endif // !defined(_INPUT_H)