-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprecomp_inc.hh
47 lines (37 loc) · 1.13 KB
/
precomp_inc.hh
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
#ifndef __TSDB__BENCH__PRECOMP_INC_HH
#define __TSDB__BENCH__PRECOMP_INC_HH
#include <stdlib.h>
#include <atomic>
#include <chrono>
#include <fstream>
#include <iostream>
#include <list>
#include <memory>
#include <queue>
#include <random>
#include <unordered_set>
#include <absl/container/node_hash_set.h>
#include <absl/strings/numbers.h>
#include <absl/strings/str_cat.h>
#define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_TRACE
#include <spdlog/common.h>
#include <spdlog/fmt/fmt.h>
#include <spdlog/fmt/ostr.h>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/spdlog.h>
#include <date/date.h>
#include <boost/asio.hpp>
#include <boost/beast.hpp>
#include <boost/json.hpp>
// #include <boost/leaf/error.hpp>
// #include <boost/leaf/exception.hpp>
// #include <boost/leaf/handle_errors.hpp>
#include <boost/beast.hpp>
#include <boost/program_options.hpp>
#include <boost/variant.hpp>
using system_clock = std::chrono::system_clock;
using time_point = system_clock::time_point;
using duration = system_clock::duration;
using io_context_ptr = std::shared_ptr<boost::asio::io_context>;
using logger_ptr = std::shared_ptr<spdlog::logger>;
#endif