LongPort OpenAPI C++ SDK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator
config.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <optional>
4 #include <string>
5 #include <utility>
6 
7 #include "async_result.hpp"
8 #include "status.hpp"
9 #include "types.hpp"
10 
11 typedef struct lb_config_t lb_config_t;
12 
13 namespace longport {
14 
15 class Config
16 {
17 private:
18  lb_config_t* config_;
19 
20 public:
21  Config();
22  Config(lb_config_t* config);
23  Config(const Config&) = delete;
24  Config(Config&& other);
25 
43  Config(const std::string& app_key,
44  const std::string& app_secret,
45  const std::string& access_token,
46  const std::optional<std::string>& http_url = std::nullopt,
47  const std::optional<std::string>& quote_ws_url = std::nullopt,
48  const std::optional<std::string>& trade_ws_url = std::nullopt,
49  const std::optional<Language>& language = std::nullopt,
50  bool enable_overnight = false,
51  const std::optional<PushCandlestickMode>& push_candlestick_mode =
52  std::nullopt,
53  bool enable_print_quote_packages = true,
54  const std::optional<std::string>& log_path = std::nullopt);
55 
57 
58  operator const lb_config_t*() const;
59 
83  static Status from_env(Config& config);
84 
86  void refresh_access_token(int64_t expired_at,
88 };
89 
90 } // namespace longport
Definition: config.hpp:16
Config(const std::string &app_key, const std::string &app_secret, const std::string &access_token, const std::optional< std::string > &http_url=std::nullopt, const std::optional< std::string > &quote_ws_url=std::nullopt, const std::optional< std::string > &trade_ws_url=std::nullopt, const std::optional< Language > &language=std::nullopt, bool enable_overnight=false, const std::optional< PushCandlestickMode > &push_candlestick_mode=std::nullopt, bool enable_print_quote_packages=true, const std::optional< std::string > &log_path=std::nullopt)
Config(const Config &)=delete
static Status from_env(Config &config)
Config(lb_config_t *config)
void refresh_access_token(int64_t expired_at, AsyncCallback< void *, std::string > callback)
Gets a new access_token
Config(Config &&other)
Definition: status.hpp:9
struct lb_config_t lb_config_t
Definition: config.hpp:11
Definition: async_result.hpp:7
std::function< void(AsyncResult< Ctx, T >)> AsyncCallback
Definition: async_result.hpp:39