X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=input.h;h=3e8651057e95bf39cb23d4d4e654bb12730448fb;hb=239a9eab1a2468b401183745a24b2fbd590a6998;hp=508eb59ae68cac1ba029c88caae5f67bbff73000;hpb=6d062eab70fd6528219545846e6c19c1cad35a3d;p=cubemap diff --git a/input.h b/input.h index 508eb59..3e86510 100644 --- a/input.h +++ b/input.h @@ -1,52 +1,20 @@ #ifndef _INPUT_H #define _INPUT_H 1 -#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); - - // Actually does the download. - void do_work(); - - // Recovers the this pointer and calls curl_callback(). - static size_t curl_callback_thunk(char *ptr, size_t size, size_t nmemb, void *userdata); +#include "thread.h" - // 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); +class InputProto; - // Drops bytes from the head of , - // and outputs a warning. - void drop_pending_data(size_t num_bytes); +// Extremely rudimentary URL parsing. +bool parse_url(const std::string &url, std::string *protocol, std::string *host, std::string *port, std::string *path); - std::string stream_id; - std::string url; - - // Data we have received but not fully processed yet. - std::vector pending_data; - - // If starts with a Metacube header, - // this is true. - bool has_metacube_header; - - pthread_t worker_thread; - - // 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; }; #endif // !defined(_INPUT_H)