cpp-msgpack-rpc 0.2.0
An RPC library implementing MessagePack RPC.
Loading...
Searching...
No Matches
config_parser.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2023 MusicScience37 (Kenta Kabashima)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
21
22#include <fmt/format.h>
23
27
28namespace msgpack_rpc::config {
29
31
32void ConfigParser::parse(std::string_view file_path) {
35}
36
37const LoggingConfig& ConfigParser::logging_config(std::string_view name) const {
38 try {
39 return logging_configs_.at(std::string(name));
40 } catch (...) {
41 throw MsgpackRPCException(StatusCode::INVALID_ARGUMENT,
42 fmt::format("Configuration of logging not found: {}.", name));
43 }
44}
45
46const ClientConfig& ConfigParser::client_config(std::string_view name) const {
47 try {
48 return client_configs_.at(std::string(name));
49 } catch (...) {
50 throw MsgpackRPCException(StatusCode::INVALID_ARGUMENT,
51 fmt::format("Configuration of client not found: {}.", name));
52 }
53}
54
55const ServerConfig& ConfigParser::server_config(std::string_view name) const {
56 try {
57 return server_configs_.at(std::string(name));
58 } catch (...) {
59 throw MsgpackRPCException(StatusCode::INVALID_ARGUMENT,
60 fmt::format("Configuration of server not found: {}.", name));
61 }
62}
63
64} // namespace msgpack_rpc::config
Class of exceptions in cpp-msgpack-rpc library.
Class of configuration of clients.
std::unordered_map< std::string, LoggingConfig > logging_configs_
Configurations of logging.
std::unordered_map< std::string, ServerConfig > server_configs_
Configurations of servers.
const ClientConfig & client_config(std::string_view name) const
Get a configuration of client.
std::unordered_map< std::string, ClientConfig > client_configs_
Configurations of clients.
const LoggingConfig & logging_config(std::string_view name) const
Get a configuration of logging.
const ServerConfig & server_config(std::string_view name) const
Get a configuration of server.
void parse(std::string_view file_path)
Parse a file.
Class of Logging configuration.
Class of configurations of servers.
Definition of ConfigParser class.
Definition of MsgpackRPCException class.
Namespace of configurations.
void parse_toml(std::string_view file_path, std::unordered_map< std::string, LoggingConfig > &logging_configs, std::unordered_map< std::string, ClientConfig > &client_configs, std::unordered_map< std::string, ServerConfig > &server_configs)
Parse configurations from a TOML file.
Definition of parse_toml functions.
Definition of StatusCode enumeration.