Lightweight 0.1.0
Loading...
Searching...
No Matches
OracleFormatter.hpp
1// SPDX-License-Identifier: Apache-2.0
2#pragma once
3
4#include "../SqlQueryFormatter.hpp"
5#include "SQLiteFormatter.hpp"
6
7#include <reflection-cpp/reflection.hpp>
8
9#include <cassert>
10#include <format>
11
12class OracleSqlQueryFormatter final: public SQLiteQueryFormatter
13{
14 public:
15 [[nodiscard]] std::string QueryLastInsertId(std::string_view tableName) const override
16 {
17 return std::format("SELECT \"{}_SEQ\".CURRVAL FROM DUAL;", tableName);
18 }
19
20 [[nodiscard]] std::string_view BooleanLiteral(bool literalValue) const noexcept override
21 {
22 return literalValue ? "1" : "0";
23 }
24
25 [[nodiscard]] std::string SelectFirst(bool distinct,
26 std::string_view fields,
27 std::string_view fromTable,
28 std::string_view fromTableAlias,
29 std::string_view tableJoins,
30 std::string_view whereCondition,
31 std::string_view orderBy,
32 size_t count) const override
33 {
34 std::stringstream sqlQueryString;
35 sqlQueryString << "SELECT";
36 if (distinct)
37 sqlQueryString << " DISTINCT";
38 sqlQueryString << " TOP " << count;
39 sqlQueryString << ' ' << fields;
40 sqlQueryString << " FROM \"" << fromTable << '"';
41 if (!fromTableAlias.empty())
42 sqlQueryString << " AS \"" << fromTableAlias << '"';
43 sqlQueryString << tableJoins;
44 sqlQueryString << whereCondition;
45 sqlQueryString << orderBy;
46 ;
47 return sqlQueryString.str();
48 }
49
50 [[nodiscard]] std::string SelectRange(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,
58 std::size_t offset,
59 std::size_t limit) const override
60 {
61 assert(!orderBy.empty());
62 std::stringstream sqlQueryString;
63 sqlQueryString << "SELECT " << fields;
64 if (distinct)
65 sqlQueryString << " DISTINCT";
66 sqlQueryString << " FROM \"" << fromTable << "\"";
67 if (!fromTableAlias.empty())
68 sqlQueryString << " AS \"" << fromTableAlias << "\"";
69 sqlQueryString << tableJoins;
70 sqlQueryString << whereCondition;
71 sqlQueryString << groupBy;
72 sqlQueryString << orderBy;
73 sqlQueryString << " OFFSET " << offset << " ROWS FETCH NEXT " << limit << " ROWS ONLY";
74 return sqlQueryString.str();
75 }
76
77 [[nodiscard]] std::string ColumnType(SqlColumnTypeDefinition const& type) const override
78 {
79 using namespace SqlColumnTypeDefinitions;
80 return std::visit(
81 detail::overloaded {
82 [](Bigint const&) -> std::string { return "NUMBER(21, 0)"; },
83 [](Binary const&) -> std::string { return "BLOB"; },
84 [](Bool const&) -> std::string { return "BIT"; },
85 [](Char const& type) -> std::string { return std::format("CHAR({})", type.size); },
86 [](Date const&) -> std::string { return "DATE"; },
87 [](DateTime const&) -> std::string { return "TIMESTAMP"; },
88 [](Decimal const& type) -> std::string {
89 return std::format("DECIMAL({}, {})", type.precision, type.scale);
90 },
91 [](Guid const&) -> std::string { return "RAW(16)"; },
92 [](Integer const&) -> std::string { return "INTEGER"; },
93 [](NChar const& type) -> std::string { return std::format("NCHAR({})", type.size); },
94 [](NVarchar const& type) -> std::string { return std::format("NVARCHAR2({})", type.size); },
95 [](Real const&) -> std::string { return "REAL"; },
96 [](Smallint const&) -> std::string { return "SMALLINT"; },
97 [](Text const& type) -> std::string {
98 if (type.size <= SqlOptimalMaxColumnSize)
99 return std::format("VARCHAR2({})", type.size);
100 else
101 return "CLOB";
102 },
103 [](Time const&) -> std::string { return "TIMESTAMP"; },
104 [](Timestamp const&) -> std::string { return "TIMESTAMP"; },
105 [](Tinyint const&) -> std::string { return "TINYINT"; },
106 [](VarBinary const& type) -> std::string { return std::format("VARBINARY({})", type.size); },
107 [](Varchar const& type) -> std::string { return std::format("VARCHAR({})", type.size); },
108 },
109 type);
110 }
111
112 [[nodiscard]] std::string BuildColumnDefinition(SqlColumnDeclaration const& column) const override
113 {
114 std::stringstream sqlQueryString;
115 sqlQueryString << '"' << column.name << "\" " << ColumnType(column.type);
116
117 if (column.required && column.primaryKey != SqlPrimaryKeyType::AUTO_INCREMENT)
118 sqlQueryString << " NOT NULL";
119
120 if (column.primaryKey == SqlPrimaryKeyType::AUTO_INCREMENT)
121 sqlQueryString << " GENERATED ALWAYS AS IDENTITY";
122 else if (column.primaryKey == SqlPrimaryKeyType::NONE && !column.index && column.unique)
123 sqlQueryString << " UNIQUE";
124
125 if (column.primaryKey != SqlPrimaryKeyType::NONE)
126 sqlQueryString << ",\n PRIMARY KEY (\"" << column.name << "\")";
127
128 return sqlQueryString.str();
129 }
130};
Represents a SQL column declaration.
bool index
Indicates if the column is indexed.
SqlColumnTypeDefinition type
The type of the column.
bool required
Indicates if the column is required (non-nullable).
SqlPrimaryKeyType primaryKey
The primary key type of the column.
bool unique
Indicates if the column is unique.
std::string name
The name of the column.