1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2009 Sun Microsystems
5
* Copyright (c) 2010 Jay Pipes <jayjpipes@gmail.com>
9
* Jay Pipes <jaypipes@gmail.com>
11
* This program is free software; you can redistribute it and/or modify
12
* it under the terms of the GNU General Public License as published by
13
* the Free Software Foundation; version 2 of the License.
15
* This program is distributed in the hope that it will be useful,
16
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
* GNU General Public License for more details.
20
* You should have received a copy of the GNU General Public License
21
* along with this program; if not, write to the Free Software
22
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
* Declarations of various routines that can be used to convert
29
* Transaction messages to other formats, including SQL statements.
32
#ifndef DRIZZLED_MESSAGE_STATEMENT_TRANSFORM_H
33
#define DRIZZLED_MESSAGE_STATEMENT_TRANSFORM_H
35
#include <drizzled/message/table.pb.h>
39
#include "drizzled/common.h"
45
/* some forward declarations */
57
class DropTableStatement;
58
class CreateTableStatement;
59
class TruncateTableStatement;
60
class CreateSchemaStatement;
61
class DropSchemaStatement;
62
class SetVariableStatement;
64
/** A Variation of SQL to be output during transformation */
65
enum TransformSqlVariant
73
/** Error codes which can happen during tranformations */
74
enum TransformSqlError
77
MISSING_HEADER= 1, /* A data segment without a header segment was found */
78
MISSING_DATA= 2 /* A header segment without a data segment was found */
82
* This function looks at the Statement
83
* message and appends one or more correctly-formatted SQL
84
* strings to the supplied vector of strings.
86
* @param Statement message to transform
87
* @param Vector of strings to append SQL statements to
88
* @param Variation of SQL to generate
91
* NONE if successful transformation
93
* Error code (see enum TransformSqlError definition) if failure
95
enum TransformSqlError
96
transformStatementToSql(const Statement &source,
97
std::vector<std::string> &sql_strings,
98
enum TransformSqlVariant sql_variant= DRIZZLE,
99
bool already_in_transaction= false);
102
* This function looks at a supplied InsertHeader
103
* and InsertData message and constructs a correctly-formatted SQL
104
* statement to the supplied destination string.
108
* This function is used when you want to construct a <strong>
109
* single SQL statement</strong> from an entire InsertHeader and
110
* InsertData message. If there are many records in the InsertData
111
* message, the SQL statement will be a multi-value INSERT statement.
113
* @param InsertHeader message to transform
114
* @param InsertData message to transform
115
* @param Destination string to append SQL to
116
* @param Variation of SQL to generate
119
* NONE if successful transformation
121
* Error code (see enum TransformSqlError definition) if failure
123
enum TransformSqlError
124
transformInsertStatementToSql(const InsertHeader &header,
125
const InsertData &data,
126
std::string &destination,
127
enum TransformSqlVariant sql_variant= DRIZZLE);
130
* This function looks at a supplied InsertHeader
131
* and a single InsertRecord message and constructs a correctly-formatted
132
* SQL statement to the supplied destination string.
134
* @param InsertHeader message to transform
135
* @param InsertRecord message to transform
136
* @param Destination string to append SQL to
137
* @param Variation of SQL to generate
140
* NONE if successful transformation
142
* Error code (see enum TransformSqlError definition) if failure
144
enum TransformSqlError
145
transformInsertRecordToSql(const InsertHeader &header,
146
const InsertRecord &record,
147
std::string &destination,
148
enum TransformSqlVariant sql_variant= DRIZZLE);
151
* Helper function to construct the header portion of an INSERT
152
* SQL statement from an InsertHeader message.
154
* @param InsertHeader message to transform
155
* @param Destination string to append SQL to
156
* @param Variation of SQL to generate
159
* NONE if successful transformation
161
* Error code (see enum TransformSqlError definition) if failure
163
enum TransformSqlError
164
transformInsertHeaderToSql(const InsertHeader &header,
165
std::string &destination,
166
enum TransformSqlVariant sql_variant= DRIZZLE);
169
* Helper function to construct the header portion of an UPDATE
170
* SQL statement from an UpdateHeader message.
172
* @param UpdateHeader message to transform
173
* @param Destination string to append SQL to
174
* @param Variation of SQL to generate
177
* NONE if successful transformation
179
* Error code (see enum TransformSqlError definition) if failure
181
enum TransformSqlError
182
transformUpdateHeaderToSql(const UpdateHeader &header,
183
std::string &destination,
184
enum TransformSqlVariant sql_variant= DRIZZLE);
187
* This function looks at a supplied UpdateHeader
188
* and a single UpdateRecord message and constructs a correctly-formatted
189
* SQL statement to the supplied destination string.
191
* @param UpdateHeader message to transform
192
* @param UpdateRecord message to transform
193
* @param Destination string to append SQL to
194
* @param Variation of SQL to generate
197
* NONE if successful transformation
199
* Error code (see enum TransformSqlError definition) if failure
201
enum TransformSqlError
202
transformUpdateRecordToSql(const UpdateHeader &header,
203
const UpdateRecord &record,
204
std::string &destination,
205
enum TransformSqlVariant sql_variant= DRIZZLE);
208
* This function looks at a supplied DeleteHeader
209
* and DeleteData message and constructs a correctly-formatted SQL
210
* statement to the supplied destination string.
214
* This function constructs a <strong>single SQL statement</strong>
215
* for all keys in the DeleteData message.
217
* @param DeleteHeader message to transform
218
* @param DeleteData message to transform
219
* @param Destination string to append SQL to
220
* @param Variation of SQL to generate
223
* NONE if successful transformation
225
* Error code (see enum TransformSqlError definition) if failure
227
enum TransformSqlError
228
transformDeleteStatementToSql(const DeleteHeader &header,
229
const DeleteData &data,
230
std::string &destination,
231
enum TransformSqlVariant sql_variant= DRIZZLE);
234
* This function looks at a supplied DeleteHeader
235
* and a single DeleteRecord message and constructs a correctly-formatted
236
* SQL statement to the supplied destination string.
238
* @param DeleteHeader message to transform
239
* @param DeleteRecord message to transform
240
* @param Destination string to append SQL to
241
* @param Variation of SQL to generate
244
* NONE if successful transformation
246
* Error code (see enum TransformSqlError definition) if failure
248
enum TransformSqlError
249
transformDeleteRecordToSql(const DeleteHeader &header,
250
const DeleteRecord &record,
251
std::string &destination,
252
enum TransformSqlVariant sql_variant= DRIZZLE);
255
* Helper function to construct the header portion of a DELETE
256
* SQL statement from an DeleteHeader message.
258
* @param DeleteHeader message to transform
259
* @param Destination string to append SQL to
260
* @param Variation of SQL to generate
263
* NONE if successful transformation
265
* Error code (see enum TransformSqlError definition) if failure
267
enum TransformSqlError
268
transformDeleteHeaderToSql(const DeleteHeader &header,
269
std::string &destination,
270
enum TransformSqlVariant sql_variant= DRIZZLE);
273
* This function looks at a supplied DropTableStatement
274
* and constructs a correctly-formatted SQL
275
* statement to the supplied destination string.
277
* @param DropTableStatement message to transform
278
* @param Destination string to append SQL to
279
* @param Variation of SQL to generate
282
* NONE if successful transformation
284
* Error code (see enum TransformSqlError definition) if failure
286
enum TransformSqlError
287
transformDropTableStatementToSql(const DropTableStatement &statement,
288
std::string &destination,
289
enum TransformSqlVariant sql_variant= DRIZZLE);
292
* This function looks at a supplied TruncateTableStatement
293
* and constructs a correctly-formatted SQL
294
* statement to the supplied destination string.
296
* @param TruncateTableStatement message to transform
297
* @param Destination string to append SQL to
298
* @param Variation of SQL to generate
301
* NONE if successful transformation
303
* Error code (see enum TransformSqlError definition) if failure
305
enum TransformSqlError
306
transformTruncateTableStatementToSql(const TruncateTableStatement &statement,
307
std::string &destination,
308
enum TransformSqlVariant sql_variant= DRIZZLE);
311
* This function looks at a supplied CreateSchemaStatement
312
* and constructs a correctly-formatted SQL
313
* statement to the supplied destination string.
315
* @param CreateSchemaStatement message to transform
316
* @param Destination string to append SQL to
317
* @param Variation of SQL to generate
320
* NONE if successful transformation
322
* Error code (see enum TransformSqlError definition) if failure
324
enum TransformSqlError
325
transformCreateSchemaStatementToSql(const CreateSchemaStatement &statement,
326
std::string &destination,
327
enum TransformSqlVariant sql_variant= DRIZZLE);
330
* This function looks at a supplied DropSchemaStatement
331
* and constructs a correctly-formatted SQL
332
* statement to the supplied destination string.
334
* @param DropSchemaStatement message to transform
335
* @param Destination string to append SQL to
336
* @param Variation of SQL to generate
339
* NONE if successful transformation
341
* Error code (see enum TransformSqlError definition) if failure
343
enum TransformSqlError
344
transformDropSchemaStatementToSql(const DropSchemaStatement &statement,
345
std::string &destination,
346
enum TransformSqlVariant sql_variant= DRIZZLE);
349
* This function looks at a supplied SetVariableStatement
350
* and constructs a correctly-formatted SQL
351
* statement to the supplied destination string.
353
* @param SetVariableStatement message to transform
354
* @param Destination string to append SQL to
355
* @param Variation of SQL to generate
358
* NONE if successful transformation
360
* Error code (see enum TransformSqlError definition) if failure
362
enum TransformSqlError
363
transformSetVariableStatementToSql(const SetVariableStatement &statement,
364
std::string &destination,
365
enum TransformSqlVariant sql_variant= DRIZZLE);
368
* Appends to supplied string an SQL expression
369
* containing the supplied CreateTableStatement's
370
* appropriate CREATE TABLE SQL statement.
372
enum TransformSqlError
373
transformCreateTableStatementToSql(const CreateTableStatement &statement,
374
std::string &destination,
375
enum TransformSqlVariant sql_variant= DRIZZLE);
378
* Appends to the supplied string an SQL expression
379
* representing the table for a CREATE TABLE expression.
381
* @param[in] Table message
382
* @param[out] String to append to
385
* NONE if successful transformation
387
* Error code (see enum TransformSqlError definition) if failure
389
enum TransformSqlError
390
transformTableDefinitionToSql(const Table &table,
391
std::string &destination,
392
enum TransformSqlVariant sql_variant= DRIZZLE,
393
bool with_schema= false);
396
* Appends to the supplied string an SQL expression
397
* representing the table's optional attributes.
401
* This function will eventually be a much simpler
402
* listing of key/value pairs.
404
* @param[in] TableOptions message
405
* @param[out] String to append to
408
* NONE if successful transformation
410
* Error code (see enum TransformSqlError definition) if failure
412
enum TransformSqlError
413
transformTableOptionsToSql(const Table::TableOptions &table_options,
414
std::string &destination,
415
enum TransformSqlVariant sql_variant= DRIZZLE);
418
* Appends to the supplied string an SQL expression
419
* representing the index's attributes. The built string
420
* corresponds to the SQL in a CREATE INDEX statement.
422
* @param[in] Index message
423
* @param[in] Table containing this index (used to get field names...)
424
* @param[out] String to append to
427
* NONE if successful transformation
429
* Error code (see enum TransformSqlError definition) if failure
431
enum TransformSqlError
432
transformIndexDefinitionToSql(const Table::Index &index,
434
std::string &destination,
435
enum TransformSqlVariant sql_variant= DRIZZLE);
438
* Appends to the supplied string an SQL expression
439
* representing the field's attributes. The built string
440
* corresponds to the SQL in a CREATE TABLE statement.
442
* @param[in] Field message
443
* @param[out] String to append to
446
* NONE if successful transformation
448
* Error code (see enum TransformSqlError definition) if failure
450
enum TransformSqlError
451
transformFieldDefinitionToSql(const Table::Field &field,
452
std::string &destination,
453
enum TransformSqlVariant sql_variant= DRIZZLE);
456
* Returns true if the supplied message::Table::Field::FieldType
457
* should have its values quoted when modifying values.
459
* @param[in] type of field
461
bool shouldQuoteFieldValue(Table::Field::FieldType in_type);
463
drizzled::message::Table::Field::FieldType internalFieldTypeToFieldProtoType(enum enum_field_types type);
466
* Returns true if the transaction contains any Statement
467
* messages which are not end segments (i.e. a bulk statement has
468
* previously been sent to replicators).
470
* @param The transaction to check
472
bool transactionContainsBulkSegment(const Transaction &transaction);
474
} /* namespace message */
475
} /* namespace drizzled */
477
#endif /* DRIZZLED_MESSAGE_STATEMENT_TRANSFORM_H */