userver: userver/components/run.hpp Source File
Loading...
Searching...
No Matches
run.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/components/run.hpp
4/// @brief Functions to start a service or tool with the specified
5/// config and components::ComponentList.
6
7#include <string>
8
9#include <userver/components/component_list.hpp>
10#include <userver/utils/strong_typedef.hpp>
11
12USERVER_NAMESPACE_BEGIN
13
14/// Contains functions and types to start a userver based service/tool.
15namespace components {
16
17/// Data type to distinguish config path and in-memory config values in
18/// components::Run() and components::RunOnce() functions.
21};
22
23/// Starts a server with the provided component list and config loaded from
24/// file. Reopens the logging files on SIGUSR1.
25///
26/// @see utils::DaemonMain
27void Run(
28 const std::string& config_path,
29 const std::optional<std::string>& config_vars_path,
30 const std::optional<std::string>& config_vars_override_path,
31 const ComponentList& component_list
32);
33
34/// Starts a server with the provided component list and config.
35/// Reopens the logging files on SIGUSR1.
36///
37/// @see utils::DaemonMain
38void Run(const InMemoryConfig& config, const ComponentList& component_list);
39
40/// Runs the component list once with the config loaded from file.
41///
42/// @see utils::DaemonMain
44 const std::string& config_path,
45 const std::optional<std::string>& config_vars_path,
46 const std::optional<std::string>& config_vars_override_path,
47 const ComponentList& component_list
48);
49
50/// Runs the component list once with the config.
51///
52/// @see utils::DaemonMain
53void RunOnce(const InMemoryConfig& config, const ComponentList& component_list);
54
55namespace impl {
56
57// Composes a single static config schema from all components.
58std::string GetStaticConfigSchema(const ComponentList& component_list);
59
60std::string GetDynamicConfigDefaults();
61
62} // namespace impl
63
64} // namespace components
65
66USERVER_NAMESPACE_END