]> git.sesse.net Git - cubemap/blob - input.h
Install the systemd service without obeying PREFIX.
[cubemap] / input.h
1 #ifndef _INPUT_H
2 #define _INPUT_H 1
3
4 #include <stddef.h>
5 #include <time.h>
6 #include <string>
7
8 #include "thread.h"
9
10 class Input;
11 class InputProto;
12
13 // Extremely rudimentary URL parsing.
14 bool parse_url(const std::string &url, std::string *protocol, std::string *user, std::string *host, std::string *port, std::string *path);
15
16 // Figure out the right type of input based on the URL, and create a new Input of the right type.
17 // Will return NULL if unknown.
18 Input *create_input(const std::string &url);
19 Input *create_input(const InputProto &serialized);
20
21 // Digested statistics for writing to logs etc.
22 struct InputStats {
23         std::string url;
24
25         // The number of bytes we have received so far, including any Metacube headers.
26         //
27         // Not reset across connections.
28         size_t bytes_received;
29
30         // The number of data bytes we have received so far (or more precisely,
31         // number of data bytes we have sent on to the stream). This excludes Metacube
32         // headers and corrupted data we've skipped.
33         //
34         // Not reset across connections.
35         size_t data_bytes_received;
36
37         // When the current connection was initiated. -1 if we are not currently connected.
38         time_t connect_time;
39
40         // TODO: Number of loss events might both be useful,
41         // similar to for clients. Also, per-connection byte counters.
42 };
43
44 class Input : public Thread {
45 public:
46         virtual ~Input();
47         virtual InputProto serialize() const = 0;
48         virtual std::string get_url() const = 0;
49         virtual void close_socket() = 0;
50         virtual void add_destination(int stream_index) = 0;
51
52         // Note: May be called from a different thread, so must be thread-safe.
53         virtual InputStats get_stats() const = 0;
54 };
55
56 #endif  // !defined(_INPUT_H)