ORE Studio 0.0.4
Loading...
Searching...
No Matches
context.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * Copyright (C) 2025 Marco Craveiro <marco.craveiro@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 */
20#ifndef ORES_DATABASE_CONTEXT_HPP
21#define ORES_DATABASE_CONTEXT_HPP
22
23#include <sqlgen/postgres.hpp>
24
25namespace ores::database {
26
30class context {
31public:
32 using connection_type = sqlgen::postgres::Connection;
33 using connection_pool_type = sqlgen::Result<
34 sqlgen::ConnectionPool<connection_type>>;
35 using single_connection_type = sqlgen::Result<
36 rfl::Ref<connection_type>>;
37
38 explicit context(connection_pool_type connection_pool,
39 single_connection_type single_connection,
40 sqlgen::postgres::Credentials credentials)
41 : connection_pool_(std::move(connection_pool)),
42 single_connection_(std::move(single_connection)),
43 credentials_(std::move(credentials)) {}
44
45 connection_pool_type connection_pool() { return connection_pool_; }
46 single_connection_type single_connection() { return single_connection_; }
47 const sqlgen::postgres::Credentials& credentials() const { return credentials_; }
48
49private:
50 connection_pool_type connection_pool_;
51 single_connection_type single_connection_;
52 const sqlgen::postgres::Credentials credentials_;
53
54};
55
56}
57
58#endif
Context for the operations on a postgres database.
Definition context.hpp:30