X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=input.h;h=1cea2f541f31aabe027f4b4ce41f5ef20cf64c14;hp=508eb59ae68cac1ba029c88caae5f67bbff73000;hb=70c47a998c5aa2eb536c3c8f71f3178cd217a14d;hpb=6d062eab70fd6528219545846e6c19c1cad35a3d diff --git a/input.h b/input.h index 508eb59..1cea2f5 100644 --- a/input.h +++ b/input.h @@ -1,52 +1,56 @@ #ifndef _INPUT_H #define _INPUT_H 1 -#include +#include +#include #include -class Input { -public: - Input(const std::string &stream_id, const std::string &url); - - // Connect to the given URL and start streaming. - void run(); - - // Stop streaming. NOTE: Does not currently work! - void stop(); - -private: - // Recovers the this pointer and calls do_work(). - static void *do_work_thunk(void *arg); +#include "thread.h" - // Actually does the download. - void do_work(); +class Input; +class InputProto; - // Recovers the this pointer and calls curl_callback(). - static size_t curl_callback_thunk(char *ptr, size_t size, size_t nmemb, void *userdata); +// 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); - // Stores the given data, looks for Metacube blocks (skipping data if needed), - // and calls process_block() for each one. - void curl_callback(char *ptr, size_t bytes); - void process_block(const char *data, uint32_t size, uint32_t flags); +// 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); - // Drops bytes from the head of , - // and outputs a warning. - void drop_pending_data(size_t num_bytes); - - std::string stream_id; +// Digested statistics for writing to logs etc. +struct InputStats { std::string url; - // Data we have received but not fully processed yet. - std::vector pending_data; + // The number of bytes we have received so far, including any Metacube headers. + // + // Not reset across connections. + size_t bytes_received; + + // 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. + // + // Not reset across connections. + size_t data_bytes_received; - // If starts with a Metacube header, - // this is true. - bool has_metacube_header; + // When the current connection was initiated. -1 if we are not currently connected. + time_t connect_time; - pthread_t worker_thread; + // TODO: Number of loss events might both be useful, + // similar to for clients. Also, per-connection byte counters. +}; - // Whether we should stop or not. - volatile bool should_stop; +class Input : public Thread { +public: + virtual ~Input(); + virtual InputProto serialize() const = 0; + virtual std::string get_url() const = 0; + virtual void close_socket() = 0; + virtual void add_destination(int stream_index) = 0; + + // Note: May be called from a different thread, so must be thread-safe. + virtual InputStats get_stats() const = 0; }; #endif // !defined(_INPUT_H)