Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlConnectInfo.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Api.hpp"
6
7#include <chrono>
8#include <format>
9#include <map>
10#include <string>
11#include <variant>
12
13/// Represents an ODBC connection string.
15{
16 std::string value;
17
18 LIGHTWEIGHT_API auto operator<=>(SqlConnectionString const&) const noexcept = default;
19
20 [[nodiscard]] LIGHTWEIGHT_API std::string Sanitized() const;
21
22 LIGHTWEIGHT_API static std::string SanitizePwd(std::string_view input);
23};
24
25using SqlConnectionStringMap = std::map<std::string, std::string>;
26
27/// Parses an ODBC connection string into a map.
28LIGHTWEIGHT_API SqlConnectionStringMap ParseConnectionString(SqlConnectionString const& connectionString);
29
30/// Builds an ODBC connection string from a map.
31LIGHTWEIGHT_API SqlConnectionString BuildConnectionString(SqlConnectionStringMap const& map);
32
33/// Represents a connection data source as a DSN, username, password, and timeout.
34struct [[nodiscard]] SqlConnectionDataSource
35{
36 std::string datasource;
37 std::string username;
38 std::string password;
39 std::chrono::seconds timeout { 5 };
40
41 LIGHTWEIGHT_API static SqlConnectionDataSource FromConnectionString(SqlConnectionString const& value);
42
43 [[nodiscard]] SqlConnectionString ToConnectionString() const
44 {
45 return SqlConnectionString {
46 .value = std::format("DSN={};UID={};PWD={};TIMEOUT={}", datasource, username, password, timeout.count())
47 };
48 }
49
50 LIGHTWEIGHT_API auto operator<=>(SqlConnectionDataSource const&) const noexcept = default;
51};
52
53using SqlConnectInfo = std::variant<SqlConnectionDataSource, SqlConnectionString>;
54
55template <>
56struct LIGHTWEIGHT_API std::formatter<SqlConnectInfo>: std::formatter<std::string>
57{
58 auto format(SqlConnectInfo const& info, format_context& ctx) const -> format_context::iterator
59 {
60 if (auto const* dsn = std::get_if<SqlConnectionDataSource>(&info))
61 {
62 return formatter<string>::format(std::format("DSN={};UID={};PWD={};TIMEOUT={}",
63 dsn->datasource,
64 dsn->username,
65 dsn->password,
66 dsn->timeout.count()),
67 ctx);
68 }
69 else if (auto const* connectionString = std::get_if<SqlConnectionString>(&info))
70 {
71 return formatter<string>::format(connectionString->value, ctx);
72 }
73 else
74 {
75 return formatter<string>::format("Invalid connection info", ctx);
76 }
77 }
78};
Represents a connection data source as a DSN, username, password, and timeout.
Represents an ODBC connection string.