Lightweight 0.1.0
Loading...
Searching...
No Matches
Migrate.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Core.hpp"
6#include "MigrationPlan.hpp"
7
8#include <reflection-cpp/reflection.hpp>
9
10/// @brief Query builder for building CREATE TABLE queries.
11///
12/// @see SqlQueryBuilder
13/// @ingroup QueryBuilder
14class [[nodiscard]] SqlCreateTableQueryBuilder final
15{
16 public:
17 explicit SqlCreateTableQueryBuilder(SqlCreateTablePlan& plan):
18 _plan { plan }
19 {
20 }
21
22 /// Adds a new column to the table.
24
25 /// Creates a new nullable column.
26 LIGHTWEIGHT_API SqlCreateTableQueryBuilder& Column(std::string columnName, SqlColumnTypeDefinition columnType);
27
28 /// Creates a new column that is non-nullable.
29 LIGHTWEIGHT_API SqlCreateTableQueryBuilder& RequiredColumn(std::string columnName,
30 SqlColumnTypeDefinition columnType);
31
32 /// Adds the created_at and updated_at columns to the table.
34
35 /// Creates a new primary key column.
36 /// Primary keys are always required, unique, have an index, and are non-nullable.
37 LIGHTWEIGHT_API SqlCreateTableQueryBuilder& PrimaryKey(std::string columnName, SqlColumnTypeDefinition columnType);
38
39 LIGHTWEIGHT_API SqlCreateTableQueryBuilder& PrimaryKeyWithAutoIncrement(
40 std::string columnName, SqlColumnTypeDefinition columnType = SqlColumnTypeDefinitions::Bigint {});
41
42 /// Creates a new nullable foreign key column.
43 LIGHTWEIGHT_API SqlCreateTableQueryBuilder& ForeignKey(std::string columnName,
44 SqlColumnTypeDefinition columnType,
46
47 /// Creates a new non-nullable foreign key column.
48 LIGHTWEIGHT_API SqlCreateTableQueryBuilder& RequiredForeignKey(std::string columnName,
49 SqlColumnTypeDefinition columnType,
51
52 /// Enables the UNIQUE constraint on the last declared column.
54
55 /// Enables the INDEX constraint on the last declared column.
57
58 /// Enables the UNIQUE and INDEX constraint on the last declared column and makes it an index.
60
61 private:
62 SqlCreateTablePlan& _plan;
63};
64
65/// @brief Query builder for building ALTER TABLE queries.
66///
67/// @see SqlQueryBuilder
68/// @ingroup QueryBuilder
69class [[nodiscard]] SqlAlterTableQueryBuilder final
70{
71 public:
73 _plan { plan }
74 {
75 }
76
77 /// Renames the table.
78 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& RenameTo(std::string_view newTableName);
79
80 /// Adds a new column to the table that is non-nullable.
81 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& AddColumn(std::string columnName, SqlColumnTypeDefinition columnType);
82
83 /// Adds a new column to the table that is nullable.
84 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& AddNotRequiredColumn(std::string columnName,
85 SqlColumnTypeDefinition columnType);
86
87 /// @brief Alters the column to have a new non-nullable type.
88 ///
89 /// @param columnName The name of the column to alter.
90 /// @param columnType The new type of the column.
91 /// @param nullable The new nullable state of the column.
92 ///
93 /// @return The current query builder for chaining.
94 ///
95 /// @see SqlColumnTypeDefinition
96 ///
97 /// @code
98 /// auto stmt = SqlStatement();
99 /// auto sqlMigration = stmt.Migration()
100 /// .AlterTable("Table")
101 /// .AlterColumn("column", Integer {}, SqlNullable::NotNull)
102 /// .GetPlan().ToSql();
103 /// for (auto const& sql: sqlMigration)
104 /// stmt.ExecuteDirect(sql);
105 /// @endcode
106 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& AlterColumn(std::string columnName,
107 SqlColumnTypeDefinition columnType,
108 SqlNullable nullable);
109
110 /// Renames a column.
111 /// @param oldColumnName The old column name.
112 /// @param newColumnName The new column name.
113 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& RenameColumn(std::string_view oldColumnName,
114 std::string_view newColumnName);
115
116 /// Drops a column from the table.
117 /// @param columnName The name of the column to drop.
118 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& DropColumn(std::string_view columnName);
119
120 /// Add an index to the table for the specified column.
121 /// @param columnName The name of the column to index.
122 ///
123 /// @code
124 /// SqlQueryBuilder q;
125 /// q.Migration().AlterTable("Table").AddIndex("column");
126 /// // Will execute CREATE INDEX "Table_column_index" ON "Table"("column");
127 /// @endcode
128 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& AddIndex(std::string_view columnName);
129
130 /// Add an index to the table for the specified column that is unique.
131 /// @param columnName The name of the column to index.
132 ///
133 /// @code
134 /// SqlQueryBuilder q;
135 /// q.Migration().AlterTable("Table").AddUniqueIndex("column");
136 /// // Will execute CREATE UNIQUE INDEX "Table_column_index" ON "Table"("column");
137 /// @endcode
138 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& AddUniqueIndex(std::string_view columnName);
139
140 /// Drop an index from the table for the specified column.
141 /// @param columnName The name of the column to drop the index from.
142 ///
143 /// @code
144 /// SqlQueryBuilder q;
145 /// q.Migration().AlterTable("Table").DropIndex("column");
146 /// // Will execute DROP INDEX "Table_column_index";
147 /// @endcode
148 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& DropIndex(std::string_view columnName);
149
150 /// Adds a foreign key column @p columnName to @p referencedColumn to an existing column.
151 ///
152 /// @param columnName The name of the column to add.
153 /// @param referencedColumn The column to reference.
154 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& AddForeignKey(std::string columnName,
155 SqlForeignKeyReferenceDefinition referencedColumn);
156
157 /// Adds a foreign key column @p columnName of type @p columnType to @p referencedColumn.
158 ///
159 /// @param columnName The name of the column to add.
160 /// @param columnType The type of the column to add.
161 /// @param referencedColumn The column to reference.
162 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& AddForeignKeyColumn(std::string columnName,
163 SqlColumnTypeDefinition columnType,
164 SqlForeignKeyReferenceDefinition referencedColumn);
165
166 /// Adds a nullable foreign key column @p columnName of type @p columnType to @p referencedColumn.
167 ///
168 /// @param columnName The name of the column to add.
169 /// @param columnType The type of the column to add.
170 /// @param referencedColumn The column to reference.
172 std::string columnName, SqlColumnTypeDefinition columnType, SqlForeignKeyReferenceDefinition referencedColumn);
173
174 /// Drops a foreign key for the column @p columnName from the table.
175 LIGHTWEIGHT_API SqlAlterTableQueryBuilder& DropForeignKey(std::string columnName);
176
177 private:
178 SqlAlterTablePlan& _plan;
179};
180
181/// @brief Query builder for building SQL migration queries.
182/// @ingroup QueryBuilder
183class [[nodiscard]] SqlMigrationQueryBuilder final
184{
185 public:
186 explicit SqlMigrationQueryBuilder(SqlQueryFormatter const& formatter):
187 _formatter { formatter },
188 _migrationPlan { .formatter = formatter }
189 {
190 }
191
192 /// Creates a new database.
193 LIGHTWEIGHT_API SqlMigrationQueryBuilder& CreateDatabase(std::string_view databaseName);
194
195 /// Drops a database.
196 LIGHTWEIGHT_API SqlMigrationQueryBuilder& DropDatabase(std::string_view databaseName);
197
198 /// Creates a new table.
199 LIGHTWEIGHT_API SqlCreateTableQueryBuilder CreateTable(std::string_view tableName);
200
201 /// Alters an existing table.
202 LIGHTWEIGHT_API SqlAlterTableQueryBuilder AlterTable(std::string_view tableName);
203
204 /// Drops a table.
205 LIGHTWEIGHT_API SqlMigrationQueryBuilder& DropTable(std::string_view tableName);
206
207 /// Executes raw SQL.
208 LIGHTWEIGHT_API SqlMigrationQueryBuilder& RawSql(std::string_view sql);
209
210 /// Executes SQL interactively via a callback.
211 LIGHTWEIGHT_API SqlMigrationQueryBuilder& Native(std::function<std::string(SqlConnection&)> callback);
212
213 /// Starts a transaction.
215
216 /// Commits a transaction.
218
219 /// Gets the migration plan.
220 [[nodiscard]] LIGHTWEIGHT_API SqlMigrationPlan const& GetPlan() const &;
221
222 /// Gets the migration plan.
223 ///
224 /// @note This method is destructive and will invalidate the current builder.
225 LIGHTWEIGHT_API SqlMigrationPlan GetPlan() &&;
226
227 private:
228 SqlQueryFormatter const& _formatter;
229 SqlMigrationPlan _migrationPlan;
230};
Query builder for building ALTER TABLE queries.
Definition Migrate.hpp:70
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & DropColumn(std::string_view columnName)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AddIndex(std::string_view columnName)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AddNotRequiredColumn(std::string columnName, SqlColumnTypeDefinition columnType)
Adds a new column to the table that is nullable.
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AddNotRequiredForeignKeyColumn(std::string columnName, SqlColumnTypeDefinition columnType, SqlForeignKeyReferenceDefinition referencedColumn)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AddUniqueIndex(std::string_view columnName)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AddForeignKey(std::string columnName, SqlForeignKeyReferenceDefinition referencedColumn)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AlterColumn(std::string columnName, SqlColumnTypeDefinition columnType, SqlNullable nullable)
Alters the column to have a new non-nullable type.
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & RenameTo(std::string_view newTableName)
Renames the table.
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & DropForeignKey(std::string columnName)
Drops a foreign key for the column columnName from the table.
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & RenameColumn(std::string_view oldColumnName, std::string_view newColumnName)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & DropIndex(std::string_view columnName)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AddForeignKeyColumn(std::string columnName, SqlColumnTypeDefinition columnType, SqlForeignKeyReferenceDefinition referencedColumn)
LIGHTWEIGHT_API SqlAlterTableQueryBuilder & AddColumn(std::string columnName, SqlColumnTypeDefinition columnType)
Adds a new column to the table that is non-nullable.
Represents a connection to a SQL database.
Query builder for building CREATE TABLE queries.
Definition Migrate.hpp:15
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & ForeignKey(std::string columnName, SqlColumnTypeDefinition columnType, SqlForeignKeyReferenceDefinition foreignKey)
Creates a new nullable foreign key column.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & Unique()
Enables the UNIQUE constraint on the last declared column.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & PrimaryKey(std::string columnName, SqlColumnTypeDefinition columnType)
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & Index()
Enables the INDEX constraint on the last declared column.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & Column(SqlColumnDeclaration column)
Adds a new column to the table.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & Column(std::string columnName, SqlColumnTypeDefinition columnType)
Creates a new nullable column.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & Timestamps()
Adds the created_at and updated_at columns to the table.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & RequiredColumn(std::string columnName, SqlColumnTypeDefinition columnType)
Creates a new column that is non-nullable.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & RequiredForeignKey(std::string columnName, SqlColumnTypeDefinition columnType, SqlForeignKeyReferenceDefinition foreignKey)
Creates a new non-nullable foreign key column.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder & UniqueIndex()
Enables the UNIQUE and INDEX constraint on the last declared column and makes it an index.
Query builder for building SQL migration queries.
Definition Migrate.hpp:184
LIGHTWEIGHT_API SqlMigrationQueryBuilder & BeginTransaction()
Starts a transaction.
LIGHTWEIGHT_API SqlMigrationQueryBuilder & DropDatabase(std::string_view databaseName)
Drops a database.
LIGHTWEIGHT_API SqlCreateTableQueryBuilder CreateTable(std::string_view tableName)
Creates a new table.
LIGHTWEIGHT_API SqlMigrationQueryBuilder & DropTable(std::string_view tableName)
Drops a table.
LIGHTWEIGHT_API SqlMigrationQueryBuilder & RawSql(std::string_view sql)
Executes raw SQL.
LIGHTWEIGHT_API SqlAlterTableQueryBuilder AlterTable(std::string_view tableName)
Alters an existing table.
LIGHTWEIGHT_API SqlMigrationQueryBuilder & Native(std::function< std::string(SqlConnection &)> callback)
Executes SQL interactively via a callback.
LIGHTWEIGHT_API SqlMigrationQueryBuilder & CreateDatabase(std::string_view databaseName)
Creates a new database.
LIGHTWEIGHT_API SqlMigrationQueryBuilder & CommitTransaction()
Commits a transaction.
LIGHTWEIGHT_API SqlMigrationPlan const & GetPlan() const &
Gets the migration plan.
API to format SQL queries for different SQL dialects.
Represents a SQL ALTER TABLE plan on a given table.
Represents a SQL column declaration.
Represents a foreign key reference definition.
Represents a SQL migration plan.