5#if defined(_WIN32) || defined(_WIN64)
10#include "SqlQuery/MigrationPlan.hpp"
24 constexpr std::string_view rtrim(std::string_view value)
noexcept
26 while (!value.empty() && (std::isspace(value.back()) || value.back() ==
'\0'))
27 value.remove_suffix(1);
32struct FullyQualifiedTableName
38 bool operator==(FullyQualifiedTableName
const& other)
const noexcept
40 return catalog == other.catalog && schema == other.schema && table == other.table;
43 bool operator!=(FullyQualifiedTableName
const& other)
const noexcept
45 return !(*
this == other);
48 bool operator<(FullyQualifiedTableName
const& other)
const noexcept
50 return std::tie(catalog, schema, table) < std::tie(other.catalog, other.schema, other.table);
54struct FullyQualifiedTableColumn
56 FullyQualifiedTableName table;
59 bool operator==(FullyQualifiedTableColumn
const& other)
const noexcept
61 return table == other.table && column == other.column;
64 bool operator!=(FullyQualifiedTableColumn
const& other)
const noexcept
66 return !(*
this == other);
69 bool operator<(FullyQualifiedTableColumn
const& other)
const noexcept
71 return std::tie(table, column) < std::tie(other.table, other.column);
75struct FullyQualifiedTableColumnSequence
77 FullyQualifiedTableName table;
78 std::vector<std::string> columns;
81struct ForeignKeyConstraint
83 FullyQualifiedTableColumn foreignKey;
84 FullyQualifiedTableColumnSequence primaryKey;
90 std::string name = {};
91 SqlColumnTypeDefinition type = {};
92 std::string dialectDependantTypeString = {};
93 bool isNullable =
true;
94 bool isUnique =
false;
96 unsigned short decimalDigits = 0;
97 bool isAutoIncrement =
false;
98 bool isPrimaryKey =
false;
99 bool isForeignKey =
false;
100 std::optional<ForeignKeyConstraint> foreignKeyConstraint {};
101 std::string defaultValue = {};
115 virtual bool OnTable(std::string_view table) = 0;
116 virtual void OnPrimaryKeys(std::string_view table, std::vector<std::string>
const& columns) = 0;
117 virtual void OnForeignKey(ForeignKeyConstraint
const& foreignKeyConstraint) = 0;
118 virtual void OnColumn(
Column const& column) = 0;
119 virtual void OnExternalForeignKey(ForeignKeyConstraint
const& foreignKeyConstraint) = 0;
120 virtual void OnTableEnd() = 0;
124LIGHTWEIGHT_API
void ReadAllTables(std::string_view database, std::string_view schema,
EventHandler& eventHandler);
148using TableList = std::vector<Table>;
151LIGHTWEIGHT_API TableList ReadAllTables(std::string_view database, std::string_view schema = {});
154LIGHTWEIGHT_API std::vector<ForeignKeyConstraint> AllForeignKeysTo(
SqlStatement& stmt,
155 FullyQualifiedTableName
const& table);
158LIGHTWEIGHT_API std::vector<ForeignKeyConstraint> AllForeignKeysFrom(
SqlStatement& stmt,
159 FullyQualifiedTableName
const& table);
164struct LIGHTWEIGHT_API std::formatter<SqlSchema::FullyQualifiedTableName>: std::formatter<std::string>
166 auto format(SqlSchema::FullyQualifiedTableName
const& value, format_context& ctx)
const -> format_context::iterator
168 string output = std::string(SqlSchema::detail::rtrim(value.schema));
171 auto const trimmedSchema = SqlSchema::detail::rtrim(value.catalog);
172 output += trimmedSchema;
173 if (!output.empty() && !trimmedSchema.empty())
175 output += SqlSchema::detail::rtrim(value.table);
176 return formatter<string>::format(output, ctx);
181struct LIGHTWEIGHT_API std::formatter<SqlSchema::FullyQualifiedTableColumn>: std::formatter<std::string>
183 auto format(SqlSchema::FullyQualifiedTableColumn
const& value, format_context& ctx)
const
184 -> format_context::iterator
186 auto const table = std::format(
"{}", value.table);
188 return formatter<string>::format(std::format(
"{}", value.column), ctx);
190 return formatter<string>::format(std::format(
"{}.{}", value.table, value.column), ctx);
195struct LIGHTWEIGHT_API std::formatter<SqlSchema::FullyQualifiedTableColumnSequence>: std::formatter<std::string>
197 auto format(SqlSchema::FullyQualifiedTableColumnSequence
const& value, format_context& ctx)
const
198 -> format_context::iterator
200 auto const resolvedTableName = std::format(
"{}", value.table);
203 for (
auto const& column: value.columns)
207 output += resolvedTableName;
208 if (!output.empty() && !resolvedTableName.empty())
213 return formatter<string>::format(output, ctx);
Callback interface for handling events while reading a database schema.
High level API for (prepared) raw SQL statements.
Holds the definition of a column in a SQL table as read from the database schema.
Holds the definition of a table in a SQL database as read from the database schema.
std::vector< ForeignKeyConstraint > foreignKeys
The foreign keys of the table.
std::vector< Column > columns
The columns of the table.
std::vector< std::string > primaryKeys
The primary keys of the table.
std::vector< ForeignKeyConstraint > externalForeignKeys
The foreign keys of other tables that reference this table.
std::string name
The name of the table.