-
Notifications
You must be signed in to change notification settings - Fork 108
/
ocelot.h
107 lines (95 loc) · 2.12 KB
/
ocelot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#ifndef OCELOT_H
#define OCELOT_H
#include <string>
#include <map>
#include <vector>
#include <unordered_map>
#include <set>
#include <memory>
#include <atomic>
typedef uint32_t torid_t;
typedef uint32_t userid_t;
class user;
typedef std::shared_ptr<user> user_ptr;
typedef struct {
int64_t uploaded;
int64_t downloaded;
int64_t corrupt;
int64_t left;
time_t last_announced;
time_t first_announced;
uint32_t announces;
uint16_t port;
bool visible;
bool invalid_ip;
user_ptr user;
std::string ip_port;
std::string ip;
} peer;
typedef std::map<std::string, peer> peer_list;
enum freetype { NORMAL, FREE, NEUTRAL };
typedef struct {
torid_t id;
uint32_t completed;
int64_t balance;
freetype free_torrent;
time_t last_flushed;
peer_list seeders;
peer_list leechers;
std::string last_selected_seeder;
std::set<userid_t> tokened_users;
} torrent;
enum {
DUPE, // 0
TRUMP, // 1
BAD_FILE_NAMES, // 2
BAD_FOLDER_NAMES, // 3
BAD_TAGS, // 4
BAD_FORMAT, // 5
DISCS_MISSING, // 6
DISCOGRAPHY,// 7
EDITED_LOG,// 8
INACCURATE_BITRATE, // 9
LOW_BITRATE, // 10
MUTT_RIP,// 11
BAD_SOURCE,// 12
ENCODE_ERRORS,// 13
BANNED, // 14
TRACKS_MISSING,// 15
TRANSCODE, // 16
CASSETTE, // 17
UNSPLIT_ALBUM, // 18
USER_COMPILATION, // 19
WRONG_FORMAT, // 20
WRONG_MEDIA, // 21
AUDIENCE // 22
};
typedef struct {
int reason;
time_t time;
} del_message;
typedef struct {
bool gzip;
bool html;
bool http_close;
} client_opts_t;
typedef std::unordered_map<std::string, torrent> torrent_list;
typedef std::unordered_map<std::string, user_ptr> user_list;
typedef std::unordered_map<std::string, std::string> params_type;
struct stats_t {
std::atomic<uint32_t> open_connections;
std::atomic<uint64_t> opened_connections;
std::atomic<uint64_t> connection_rate;
std::atomic<uint32_t> leechers;
std::atomic<uint32_t> seeders;
std::atomic<uint64_t> requests;
std::atomic<uint64_t> request_rate;
std::atomic<uint64_t> announcements;
std::atomic<uint64_t> succ_announcements;
std::atomic<uint64_t> scrapes;
std::atomic<uint64_t> bytes_read;
std::atomic<uint64_t> bytes_written;
time_t start_time;
};
extern struct stats_t stats;
#endif