Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlQueryFormatter.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Api.hpp"
6#include "SqlConnection.hpp"
7#include "SqlQuery/MigrationPlan.hpp"
8#include "SqlServerType.hpp"
9
10#include <string>
11#include <string_view>
12
14
15/// API to format SQL queries for different SQL dialects.
16class [[nodiscard]] LIGHTWEIGHT_API SqlQueryFormatter
17{
18 public:
19 SqlQueryFormatter() = default;
21 SqlQueryFormatter(SqlQueryFormatter const&) = default;
22 SqlQueryFormatter& operator=(SqlQueryFormatter&&) = default;
23 SqlQueryFormatter& operator=(SqlQueryFormatter const&) = default;
24 virtual ~SqlQueryFormatter() = default;
25
26 /// Converts a boolean value to a string literal.
27 [[nodiscard]] virtual std::string_view BooleanLiteral(bool value) const noexcept = 0;
28
29 /// Converts a string value to a string literal.
30 [[nodiscard]] virtual std::string StringLiteral(std::string_view value) const noexcept = 0;
31
32 /// Converts a character value to a string literal.
33 [[nodiscard]] virtual std::string StringLiteral(char value) const noexcept = 0;
34
35 /// Constructs an SQL INSERT query.
36 ///
37 /// @param intoTable The table to insert into.
38 /// @param fields The fields to insert into.
39 /// @param values The values to insert.
40 ///
41 /// The fields and values must be in the same order.
42 [[nodiscard]] virtual std::string Insert(std::string_view intoTable,
43 std::string_view fields,
44 std::string_view values) const = 0;
45
46 /// Retrieves the last insert ID of the given table.
47 [[nodiscard]] virtual std::string QueryLastInsertId(std::string_view tableName) const = 0;
48
49 /// Constructs an SQL SELECT query for all rows.
50 [[nodiscard]] virtual std::string SelectAll(bool distinct,
51 std::string_view fields,
52 std::string_view fromTable,
53 std::string_view fromTableAlias,
54 std::string_view tableJoins,
55 std::string_view whereCondition,
56 std::string_view orderBy,
57 std::string_view groupBy) const = 0;
58
59 /// Constructs an SQL SELECT query for the first row.
60 [[nodiscard]] virtual std::string SelectFirst(bool distinct,
61 std::string_view fields,
62 std::string_view fromTable,
63 std::string_view fromTableAlias,
64 std::string_view tableJoins,
65 std::string_view whereCondition,
66 std::string_view orderBy,
67 size_t count) const = 0;
68
69 /// Constructs an SQL SELECT query for a range of rows.
70 [[nodiscard]] virtual std::string SelectRange(bool distinct,
71 std::string_view fields,
72 std::string_view fromTable,
73 std::string_view fromTableAlias,
74 std::string_view tableJoins,
75 std::string_view whereCondition,
76 std::string_view orderBy,
77 std::string_view groupBy,
78 std::size_t offset,
79 std::size_t limit) const = 0;
80
81 /// Constructs an SQL SELECT query retrieve the count of rows matching the given condition.
82 [[nodiscard]] virtual std::string SelectCount(bool distinct,
83 std::string_view fromTable,
84 std::string_view fromTableAlias,
85 std::string_view tableJoins,
86 std::string_view whereCondition) const = 0;
87
88 /// Constructs an SQL UPDATE query.
89 [[nodiscard]] virtual std::string Update(std::string_view table,
90 std::string_view tableAlias,
91 std::string_view setFields,
92 std::string_view whereCondition) const = 0;
93
94 /// Constructs an SQL DELETE query.
95 [[nodiscard]] virtual std::string Delete(std::string_view fromTable,
96 std::string_view fromTableAlias,
97 std::string_view tableJoins,
98 std::string_view whereCondition) const = 0;
99
100 using StringList = std::vector<std::string>;
101
102 /// Convert the given column type definition to the SQL type.
103 [[nodiscard]] virtual std::string ColumnType(SqlColumnTypeDefinition const& type) const = 0;
104
105 /// Constructs an SQL CREATE TABLE query.
106 [[nodiscard]] virtual StringList CreateTable(std::string_view tableName,
107 std::vector<SqlColumnDeclaration> const& columns) const = 0;
108
109 /// Constructs an SQL ALTER TABLE query.
110 [[nodiscard]] virtual StringList AlterTable(std::string_view tableName,
111 std::vector<SqlAlterTableCommand> const& commands) const = 0;
112
113 /// Constructs an SQL DROP TABLE query.
114 [[nodiscard]] virtual StringList DropTable(std::string_view const& tableName) const = 0;
115
116 /// Retrieves the SQL query formatter for SQLite.
117 static SqlQueryFormatter const& Sqlite();
118
119 /// Retrieves the SQL query formatter for Microsoft SQL server.
121
122 /// Retrieves the SQL query formatter for PostgreSQL.
124
125 /// Retrieves the SQL query formatter for Oracle database.
127
128 /// Retrieves the SQL query formatter for the given SqlServerType.
129 static SqlQueryFormatter const* Get(SqlServerType serverType) noexcept;
130};
API to format SQL queries for different SQL dialects.
virtual std::string ColumnType(SqlColumnTypeDefinition const &type) const =0
Convert the given column type definition to the SQL type.
virtual std::string SelectFirst(bool distinct, std::string_view fields, std::string_view fromTable, std::string_view fromTableAlias, std::string_view tableJoins, std::string_view whereCondition, std::string_view orderBy, size_t count) const =0
Constructs an SQL SELECT query for the first row.
virtual std::string_view BooleanLiteral(bool value) const noexcept=0
Converts a boolean value to a string literal.
static SqlQueryFormatter const & SqlServer()
Retrieves the SQL query formatter for Microsoft SQL server.
virtual StringList AlterTable(std::string_view tableName, std::vector< SqlAlterTableCommand > const &commands) const =0
Constructs an SQL ALTER TABLE query.
static SqlQueryFormatter const * Get(SqlServerType serverType) noexcept
Retrieves the SQL query formatter for the given SqlServerType.
virtual std::string QueryLastInsertId(std::string_view tableName) const =0
Retrieves the last insert ID of the given table.
static SqlQueryFormatter const & PostgrSQL()
Retrieves the SQL query formatter for PostgreSQL.
static SqlQueryFormatter const & OracleSQL()
Retrieves the SQL query formatter for Oracle database.
virtual std::string SelectCount(bool distinct, std::string_view fromTable, std::string_view fromTableAlias, std::string_view tableJoins, std::string_view whereCondition) const =0
Constructs an SQL SELECT query retrieve the count of rows matching the given condition.
virtual StringList CreateTable(std::string_view tableName, std::vector< SqlColumnDeclaration > const &columns) const =0
Constructs an SQL CREATE TABLE query.
virtual std::string StringLiteral(char value) const noexcept=0
Converts a character value to a string literal.
virtual StringList DropTable(std::string_view const &tableName) const =0
Constructs an SQL DROP TABLE query.
virtual std::string StringLiteral(std::string_view value) const noexcept=0
Converts a string value to a string literal.
virtual std::string SelectRange(bool distinct, std::string_view fields, std::string_view fromTable, std::string_view fromTableAlias, std::string_view tableJoins, std::string_view whereCondition, std::string_view orderBy, std::string_view groupBy, std::size_t offset, std::size_t limit) const =0
Constructs an SQL SELECT query for a range of rows.
static SqlQueryFormatter const & Sqlite()
Retrieves the SQL query formatter for SQLite.
virtual std::string Delete(std::string_view fromTable, std::string_view fromTableAlias, std::string_view tableJoins, std::string_view whereCondition) const =0
Constructs an SQL DELETE query.
virtual std::string Insert(std::string_view intoTable, std::string_view fields, std::string_view values) const =0
virtual std::string Update(std::string_view table, std::string_view tableAlias, std::string_view setFields, std::string_view whereCondition) const =0
Constructs an SQL UPDATE query.
virtual std::string SelectAll(bool distinct, std::string_view fields, std::string_view fromTable, std::string_view fromTableAlias, std::string_view tableJoins, std::string_view whereCondition, std::string_view orderBy, std::string_view groupBy) const =0
Constructs an SQL SELECT query for all rows.
SqlQualifiedTableColumnName represents a column name qualified with a table name.
Definition Core.hpp:40