1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
|
/*
Copyright (C) 2010 Stewart Smith
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include <drizzled/table.h>
#include <drizzled/error.h>
#include "drizzled/internal/my_pthread.h"
#include <drizzled/plugin/transactional_storage_engine.h>
#include <fcntl.h>
#include <string>
#include <map>
#include <fstream>
#include <drizzled/message/table.pb.h>
#include "drizzled/internal/m_string.h"
#include "drizzled/global_charset_info.h"
#include "libinnodb_version_func.h"
#include "libinnodb_datadict_dump_func.h"
#include "config_table_function.h"
#include "embedded_innodb-1.0/innodb.h"
#include "embedded_innodb_engine.h"
#include <drizzled/field.h>
#include <drizzled/session.h>
using namespace std;
using namespace google;
using namespace drizzled;
int read_row_from_innodb(ib_crsr_t cursor, ib_tpl_t tuple, Table* table);
#define EMBEDDED_INNODB_EXT ".EID"
const char INNODB_TABLE_DEFINITIONS_TABLE[]= "data_dictionary/innodb_table_definitions";
const string statement_savepoint_name("STATEMENT");
static const char *EmbeddedInnoDBCursor_exts[] = {
NULL
};
class EmbeddedInnoDBEngine : public drizzled::plugin::TransactionalStorageEngine
{
public:
EmbeddedInnoDBEngine(const string &name_arg)
: drizzled::plugin::TransactionalStorageEngine(name_arg,
HTON_NULL_IN_KEY |
HTON_CAN_INDEX_BLOBS |
HTON_AUTO_PART_KEY |
HTON_HAS_DOES_TRANSACTIONS |
HTON_HAS_DATA_DICTIONARY)
{
table_definition_ext= EMBEDDED_INNODB_EXT;
}
virtual Cursor *create(TableShare &table,
drizzled::memory::Root *mem_root)
{
return new (mem_root) EmbeddedInnoDBCursor(*this, table);
}
const char **bas_ext() const {
return EmbeddedInnoDBCursor_exts;
}
int doCreateTable(Session*,
const char *,
Table&,
drizzled::message::Table&);
int doDropTable(Session&, const string& table_name);
int doRenameTable(Session* session,
const char *from, const char *to);
int doGetTableDefinition(Session& session,
const char* path,
const char *db,
const char *table_name,
const bool is_tmp,
drizzled::message::Table *table_proto);
void doGetTableNames(drizzled::CachedDirectory &,
string& database_name, set<string>& set_of_names);
/* The following defines can be increased if necessary */
uint32_t max_supported_keys() const { return 64; }
uint32_t max_supported_key_length() const { return 1000; }
uint32_t max_supported_key_part_length() const { return 1000; }
uint32_t index_flags(enum ha_key_alg) const
{
return (HA_READ_NEXT |
HA_READ_PREV |
HA_READ_RANGE |
HA_READ_ORDER |
HA_KEYREAD_ONLY);
}
private:
virtual int doStartTransaction(Session *session,
start_transaction_option_t options);
virtual void doStartStatement(Session *session);
virtual void doEndStatement(Session *session);
public:
virtual int doSetSavepoint(Session* session,
drizzled::NamedSavepoint &savepoint);
virtual int doRollbackToSavepoint(Session* session,
drizzled::NamedSavepoint &savepoint);
virtual int doReleaseSavepoint(Session* session,
drizzled::NamedSavepoint &savepoint);
virtual int doCommit(Session* session, bool all);
virtual int doRollback(Session* session, bool all);
typedef std::map<std::string, EmbeddedInnoDBTableShare*> EmbeddedInnoDBMap;
EmbeddedInnoDBMap embedded_innodb_open_tables;
EmbeddedInnoDBTableShare *findOpenTable(const std::string table_name);
void addOpenTable(const std::string &table_name, EmbeddedInnoDBTableShare *);
void deleteOpenTable(const std::string &table_name);
};
static drizzled::plugin::StorageEngine *embedded_innodb_engine= NULL;
static ib_trx_t* get_trx(Session* session)
{
return (ib_trx_t*) session->getEngineData(embedded_innodb_engine);
}
int EmbeddedInnoDBEngine::doStartTransaction(Session *session,
start_transaction_option_t options)
{
ib_trx_t *transaction;
(void)options;
transaction= get_trx(session);
*transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
return 0;
}
void EmbeddedInnoDBEngine::doStartStatement(Session *session)
{
if(*get_trx(session) == NULL)
doStartTransaction(session, START_TRANS_NO_OPTIONS);
ib_savepoint_take(*get_trx(session), statement_savepoint_name.c_str(),
statement_savepoint_name.length());
}
void EmbeddedInnoDBEngine::doEndStatement(Session *session)
{
doCommit(session, false);
}
int EmbeddedInnoDBEngine::doSetSavepoint(Session* session,
drizzled::NamedSavepoint &savepoint)
{
ib_trx_t *transaction= get_trx(session);
ib_savepoint_take(*transaction, savepoint.getName().c_str(),
savepoint.getName().length());
return 0;
}
int EmbeddedInnoDBEngine::doRollbackToSavepoint(Session* session,
drizzled::NamedSavepoint &savepoint)
{
ib_trx_t *transaction= get_trx(session);
ib_err_t err;
err= ib_savepoint_rollback(*transaction, savepoint.getName().c_str(),
savepoint.getName().length());
if (err != DB_SUCCESS)
return -1;
return 0;
}
int EmbeddedInnoDBEngine::doReleaseSavepoint(Session* session,
drizzled::NamedSavepoint &savepoint)
{
ib_trx_t *transaction= get_trx(session);
ib_err_t err;
err= ib_savepoint_release(*transaction, savepoint.getName().c_str(),
savepoint.getName().length());
if (err != DB_SUCCESS)
return -1;
return 0;
}
int EmbeddedInnoDBEngine::doCommit(Session* session, bool all)
{
ib_err_t err;
ib_trx_t *transaction= get_trx(session);
if (all || (!session_test_options(session, OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)))
{
err= ib_trx_commit(*transaction);
if (err != DB_SUCCESS)
return -1;
*transaction= NULL;
}
return 0;
}
int EmbeddedInnoDBEngine::doRollback(Session* session, bool all)
{
ib_err_t err;
ib_trx_t *transaction= get_trx(session);
if (all || !session_test_options(session, OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN))
{
err= ib_trx_rollback(*transaction);
if (err != DB_SUCCESS)
return -1;
*transaction= NULL;
}
else
{
err= ib_savepoint_rollback(*transaction, statement_savepoint_name.c_str(),
statement_savepoint_name.length());
if (err != DB_SUCCESS)
return -1;
}
return 0;
}
EmbeddedInnoDBTableShare *EmbeddedInnoDBEngine::findOpenTable(const string table_name)
{
EmbeddedInnoDBMap::iterator find_iter=
embedded_innodb_open_tables.find(table_name);
if (find_iter != embedded_innodb_open_tables.end())
return (*find_iter).second;
else
return NULL;
}
void EmbeddedInnoDBEngine::addOpenTable(const string &table_name, EmbeddedInnoDBTableShare *share)
{
embedded_innodb_open_tables[table_name]= share;
}
void EmbeddedInnoDBEngine::deleteOpenTable(const string &table_name)
{
embedded_innodb_open_tables.erase(table_name);
}
static pthread_mutex_t embedded_innodb_mutex= PTHREAD_MUTEX_INITIALIZER;
EmbeddedInnoDBTableShare *EmbeddedInnoDBCursor::get_share(const char *table_name, int *rc)
{
pthread_mutex_lock(&embedded_innodb_mutex);
EmbeddedInnoDBEngine *a_engine= static_cast<EmbeddedInnoDBEngine *>(engine);
share= a_engine->findOpenTable(table_name);
if (!share)
{
share= new EmbeddedInnoDBTableShare(table_name);
if (share == NULL)
{
pthread_mutex_unlock(&embedded_innodb_mutex);
*rc= HA_ERR_OUT_OF_MEM;
return(NULL);
}
a_engine->addOpenTable(share->table_name, share);
thr_lock_init(&share->lock);
}
share->use_count++;
pthread_mutex_unlock(&embedded_innodb_mutex);
return(share);
}
int EmbeddedInnoDBCursor::free_share()
{
pthread_mutex_lock(&embedded_innodb_mutex);
if (!--share->use_count)
{
EmbeddedInnoDBEngine *a_engine= static_cast<EmbeddedInnoDBEngine *>(engine);
a_engine->deleteOpenTable(share->table_name);
delete share;
}
pthread_mutex_unlock(&embedded_innodb_mutex);
return 0;
}
THR_LOCK_DATA **EmbeddedInnoDBCursor::store_lock(Session *session,
THR_LOCK_DATA **to,
thr_lock_type lock_type)
{
/* Currently, we can get a transaction start by ::store_lock
instead of beginTransaction, startStatement.
See https://bugs.launchpad.net/drizzle/+bug/535528
all stemming from the transactional engine interface needing
a severe amount of immodium.
*/
if(*get_trx(session) == NULL)
{
ib_trx_t *transaction= get_trx(session);
*transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
}
if (lock_type != TL_UNLOCK)
{
ib_savepoint_take(*get_trx(session), statement_savepoint_name.c_str(),
statement_savepoint_name.length());
}
/* the below is just copied from ha_archive.cc in some dim hope it's
kinda right. */
if (lock_type != TL_IGNORE && lock.type == TL_UNLOCK)
{
/*
Here is where we get into the guts of a row level lock.
If TL_UNLOCK is set
If we are not doing a LOCK Table or DISCARD/IMPORT
TABLESPACE, then allow multiple writers
*/
if ((lock_type >= TL_WRITE_CONCURRENT_INSERT &&
lock_type <= TL_WRITE)
&& !session_tablespace_op(session))
lock_type = TL_WRITE_ALLOW_WRITE;
/*
In queries of type INSERT INTO t1 SELECT ... FROM t2 ...
MySQL would use the lock TL_READ_NO_INSERT on t2, and that
would conflict with TL_WRITE_ALLOW_WRITE, blocking all inserts
to t2. Convert the lock to a normal read lock to allow
concurrent inserts to t2.
*/
if (lock_type == TL_READ_NO_INSERT)
lock_type = TL_READ;
lock.type=lock_type;
}
*to++= &lock;
return to;
}
EmbeddedInnoDBCursor::EmbeddedInnoDBCursor(drizzled::plugin::StorageEngine &engine_arg,
TableShare &table_arg)
:Cursor(engine_arg, table_arg)
{ }
int EmbeddedInnoDBCursor::open(const char *name, int, uint32_t)
{
ib_err_t err= ib_cursor_open_table(name+2, NULL, &cursor);
assert (err == DB_SUCCESS);
int rc;
share= get_share(name, &rc);
thr_lock_data_init(&share->lock, &lock, NULL);
return(0);
}
int EmbeddedInnoDBCursor::close(void)
{
ib_err_t err= ib_cursor_close(cursor);
if (err != DB_SUCCESS)
return -1; // FIXME
free_share();
return 0;
}
static int create_table_add_field(ib_tbl_sch_t schema,
const message::Table::Field &field,
ib_err_t *err)
{
ib_col_attr_t column_attr= IB_COL_NONE;
if (field.has_constraints() && ! field.constraints().is_nullable())
column_attr= IB_COL_NOT_NULL;
switch (field.type())
{
case message::Table::Field::VARCHAR:
*err= ib_table_schema_add_col(schema, field.name().c_str(), IB_VARCHAR,
column_attr, 0,
field.string_options().length());
break;
case message::Table::Field::INTEGER:
*err= ib_table_schema_add_col(schema, field.name().c_str(), IB_INT,
column_attr, 0, 4);
break;
case message::Table::Field::BIGINT:
*err= ib_table_schema_add_col(schema, field.name().c_str(), IB_INT,
column_attr, 0, 8);
break;
default:
my_error(ER_CHECK_NOT_IMPLEMENTED, MYF(0), "Column Type");
return(HA_ERR_UNSUPPORTED);
}
return 0;
}
static ib_err_t store_table_message(ib_trx_t transaction, const char* table_name, drizzled::message::Table& table_message)
{
ib_crsr_t cursor;
ib_tpl_t message_tuple;
ib_err_t err;
string serialized_message;
err= ib_cursor_open_table(INNODB_TABLE_DEFINITIONS_TABLE, transaction, &cursor);
if (err != DB_SUCCESS)
return err;
message_tuple= ib_clust_read_tuple_create(cursor);
err= ib_col_set_value(message_tuple, 0, table_name, strlen(table_name));
if (err != DB_SUCCESS)
goto cleanup;
table_message.SerializeToString(&serialized_message);
err= ib_col_set_value(message_tuple, 1, serialized_message.c_str(),
serialized_message.length());
if (err != DB_SUCCESS)
goto cleanup;
err= ib_cursor_insert_row(cursor, message_tuple);
cleanup:
ib_tuple_delete(message_tuple);
ib_err_t cleanup_err= ib_cursor_close(cursor);
if (err == DB_SUCCESS)
err= cleanup_err;
return err;
}
int EmbeddedInnoDBEngine::doCreateTable(Session* session, const char *path,
Table& table_obj,
drizzled::message::Table& table_message)
{
ib_tbl_sch_t innodb_table_schema= NULL;
// ib_idx_sch_t innodb_pkey= NULL;
ib_trx_t innodb_schema_transaction;
ib_id_t innodb_table_id;
ib_err_t innodb_err= DB_SUCCESS;
(void)session;
(void)table_obj;
innodb_err= ib_table_schema_create(path+2, &innodb_table_schema, IB_TBL_COMPACT, 0);
if (innodb_err != DB_SUCCESS)
{
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_CREATE_TABLE,
_("Cannot create table %s. InnoDB Error %d (%s)\n"),
path, innodb_err, ib_strerror(innodb_err));
return HA_ERR_GENERIC;
}
for (int colnr= 0; colnr < table_message.field_size() ; colnr++)
{
const message::Table::Field field = table_message.field(colnr);
int field_err= create_table_add_field(innodb_table_schema, field,
&innodb_err);
if (innodb_err != DB_SUCCESS || field_err != 0)
ib_table_schema_delete(innodb_table_schema); /* cleanup */
if (innodb_err != DB_SUCCESS)
{
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_CREATE_TABLE,
_("Cannot create field %s on table %s."
" InnoDB Error %d (%s)\n"),
field.name().c_str(), path,
innodb_err, ib_strerror(innodb_err));
return HA_ERR_GENERIC;
}
if (field_err != 0)
return field_err;
}
for (int indexnr= 0; indexnr < table_message.indexes_size() ; indexnr++)
{
message::Table::Index *index = table_message.mutable_indexes(indexnr);
ib_idx_sch_t innodb_index;
innodb_err= ib_table_schema_add_index(innodb_table_schema, index->name().c_str(),
&innodb_index);
if (innodb_err != DB_SUCCESS)
goto schema_error;
if (index->is_primary())
{
innodb_err= ib_index_schema_set_clustered(innodb_index);
if (innodb_err != DB_SUCCESS)
goto schema_error;
}
if (index->is_unique())
{
innodb_err= ib_index_schema_set_unique(innodb_index);
if (innodb_err != DB_SUCCESS)
goto schema_error;
}
if (index->type() == message::Table::Index::UNKNOWN_INDEX)
index->set_type(message::Table::Index::BTREE);
for (int partnr= 0; partnr < index->index_part_size(); partnr++)
{
/* TODO: Index prefix lengths */
const message::Table::Index::IndexPart part= index->index_part(partnr);
innodb_err= ib_index_schema_add_col(innodb_index, table_message.field(part.fieldnr()).name().c_str(), 0);
if (innodb_err != DB_SUCCESS)
goto schema_error;
}
}
innodb_schema_transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
innodb_err= ib_schema_lock_exclusive(innodb_schema_transaction);
if (innodb_err != DB_SUCCESS)
{
ib_err_t rollback_err= ib_trx_rollback(innodb_schema_transaction);
ib_table_schema_delete(innodb_table_schema);
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_CREATE_TABLE,
_("Cannot Lock Embedded InnoDB Data Dictionary. InnoDB Error %d (%s)\n"),
innodb_err, ib_strerror(innodb_err));
assert (rollback_err == DB_SUCCESS);
return HA_ERR_GENERIC;
}
innodb_err= ib_table_create(innodb_schema_transaction, innodb_table_schema,
&innodb_table_id);
if (innodb_err != DB_SUCCESS)
{
ib_err_t rollback_err= ib_trx_rollback(innodb_schema_transaction);
ib_table_schema_delete(innodb_table_schema);
if (innodb_err == DB_TABLE_IS_BEING_USED)
return EEXIST;
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_CREATE_TABLE,
_("Cannot create table %s. InnoDB Error %d (%s)\n"),
path, innodb_err, ib_strerror(innodb_err));
assert (rollback_err == DB_SUCCESS);
return HA_ERR_GENERIC;
}
innodb_err= store_table_message(innodb_schema_transaction, path+2,
table_message);
if (innodb_err == DB_SUCCESS)
innodb_err= ib_trx_commit(innodb_schema_transaction);
else
innodb_err= ib_trx_rollback(innodb_schema_transaction);
schema_error:
ib_table_schema_delete(innodb_table_schema);
if (innodb_err != DB_SUCCESS)
{
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_CREATE_TABLE,
_("Cannot create table %s. InnoDB Error %d (%s)\n"),
path, innodb_err, ib_strerror(innodb_err));
return HA_ERR_GENERIC;
}
return 0;
}
static int delete_table_message_from_innodb(ib_trx_t transaction, const char* table_name)
{
ib_crsr_t cursor;
ib_tpl_t search_tuple;
int res;
ib_err_t err;
err= ib_cursor_open_table(INNODB_TABLE_DEFINITIONS_TABLE, transaction, &cursor);
if (err != DB_SUCCESS)
return err;
search_tuple= ib_clust_search_tuple_create(cursor);
err= ib_col_set_value(search_tuple, 0, table_name, strlen(table_name));
if (err != DB_SUCCESS)
goto rollback;
// ib_cursor_set_match_mode(cursor, IB_EXACT_MATCH);
err= ib_cursor_moveto(cursor, search_tuple, IB_CUR_GE, &res);
if (err == DB_RECORD_NOT_FOUND || res != 0)
goto rollback;
err= ib_cursor_delete_row(cursor);
assert (err == DB_SUCCESS);
rollback:
ib_err_t rollback_err= ib_cursor_close(cursor);
if (err == DB_SUCCESS)
err= rollback_err;
ib_tuple_delete(search_tuple);
return err;
}
int EmbeddedInnoDBEngine::doDropTable(Session& session, const string& table_name)
{
ib_trx_t innodb_schema_transaction;
ib_err_t innodb_err;
innodb_schema_transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
innodb_err= ib_schema_lock_exclusive(innodb_schema_transaction);
if (innodb_err != DB_SUCCESS)
{
ib_err_t rollback_err= ib_trx_rollback(innodb_schema_transaction);
push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_DELETE_FILE,
_("Cannot Lock Embedded InnoDB Data Dictionary. InnoDB Error %d (%s)\n"),
innodb_err, ib_strerror(innodb_err));
assert (rollback_err == DB_SUCCESS);
return HA_ERR_GENERIC;
}
if (delete_table_message_from_innodb(innodb_schema_transaction, table_name.c_str()+2) != DB_SUCCESS)
{
ib_schema_unlock(innodb_schema_transaction);
ib_err_t rollback_err= ib_trx_rollback(innodb_schema_transaction);
assert(rollback_err == DB_SUCCESS);
return HA_ERR_GENERIC;
}
innodb_err= ib_table_drop(innodb_schema_transaction, table_name.c_str()+2);
if (innodb_err == DB_TABLE_NOT_FOUND)
{
innodb_err= ib_trx_rollback(innodb_schema_transaction);
assert(innodb_err == DB_SUCCESS);
return ENOENT;
}
else if (innodb_err != DB_SUCCESS)
{
ib_err_t rollback_err= ib_trx_rollback(innodb_schema_transaction);
push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_DELETE_FILE,
_("Cannot DROP table %s. InnoDB Error %d (%s)\n"),
table_name.c_str(),
innodb_err, ib_strerror(innodb_err));
assert(rollback_err == DB_SUCCESS);
return HA_ERR_GENERIC;
}
innodb_err= ib_trx_commit(innodb_schema_transaction);
if (innodb_err != DB_SUCCESS)
{
ib_err_t rollback_err= ib_trx_rollback(innodb_schema_transaction);
push_warning_printf(&session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_DELETE_FILE,
_("Cannot DROP table %s. InnoDB Error %d (%s)\n"),
table_name.c_str(),
innodb_err, ib_strerror(innodb_err));
assert(rollback_err == DB_SUCCESS);
return HA_ERR_GENERIC;
}
return 0;
}
static ib_err_t rename_table_message(ib_trx_t transaction, const char* from, const char* to)
{
ib_crsr_t cursor;
ib_tpl_t search_tuple;
ib_tpl_t read_tuple;
ib_tpl_t update_tuple;
int res;
ib_err_t err;
ib_err_t rollback_err;
err= ib_cursor_open_table(INNODB_TABLE_DEFINITIONS_TABLE, transaction, &cursor);
if (err != DB_SUCCESS)
{
rollback_err= ib_trx_rollback(transaction);
assert(rollback_err == DB_SUCCESS);
return err;
}
search_tuple= ib_clust_search_tuple_create(cursor);
read_tuple= ib_clust_read_tuple_create(cursor);
err= ib_col_set_value(search_tuple, 0, from, strlen(from));
if (err != DB_SUCCESS)
goto rollback;
// ib_cursor_set_match_mode(cursor, IB_EXACT_MATCH);
err= ib_cursor_moveto(cursor, search_tuple, IB_CUR_GE, &res);
if (err == DB_RECORD_NOT_FOUND || res != 0)
goto rollback;
err= ib_cursor_read_row(cursor, read_tuple);
if (err == DB_RECORD_NOT_FOUND || res != 0)
goto rollback;
update_tuple= ib_clust_read_tuple_create(cursor);
err= ib_tuple_copy(update_tuple, read_tuple);
assert(err == DB_SUCCESS);
err= ib_col_set_value(update_tuple, 0, to, strlen(to));
err= ib_cursor_update_row(cursor, read_tuple, update_tuple);
ib_tuple_delete(update_tuple);
ib_tuple_delete(read_tuple);
ib_tuple_delete(search_tuple);
err= ib_cursor_close(cursor);
rollback:
return err;
}
int EmbeddedInnoDBEngine::doRenameTable(Session* session,
const char *from, const char *to)
{
ib_trx_t innodb_schema_transaction;
ib_err_t err;
innodb_schema_transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
err= ib_schema_lock_exclusive(innodb_schema_transaction);
if (err != DB_SUCCESS)
{
push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_DELETE_FILE,
_("Cannot Lock Embedded InnoDB Data Dictionary. InnoDB Error %d (%s)\n"),
err, ib_strerror(err));
goto rollback;
}
err= ib_table_rename(innodb_schema_transaction,
from+2,
to+2);
if (err != DB_SUCCESS)
goto rollback;
err= rename_table_message(innodb_schema_transaction, from+2, to+2);
if (err != DB_SUCCESS)
goto rollback;
err= ib_trx_commit(innodb_schema_transaction);
if (err != DB_SUCCESS)
goto rollback;
return 0;
rollback:
ib_err_t rollback_err= ib_schema_unlock(innodb_schema_transaction);
assert(rollback_err == DB_SUCCESS);
rollback_err= ib_trx_rollback(innodb_schema_transaction);
assert(rollback_err == DB_SUCCESS);
return -1;
}
void EmbeddedInnoDBEngine::doGetTableNames(drizzled::CachedDirectory &,
string& database_name,
set<string>& set_of_names)
{
ib_trx_t transaction;
ib_crsr_t cursor;
string search_string(database_name);
search_string.append("/");
transaction = ib_trx_begin(IB_TRX_REPEATABLE_READ);
ib_err_t innodb_err= ib_schema_lock_exclusive(transaction);
assert(innodb_err == DB_SUCCESS); /* FIXME: doGetTableNames needs to be able to return error */
innodb_err= ib_cursor_open_table("SYS_TABLES", transaction, &cursor);
assert(innodb_err == DB_SUCCESS); /* FIXME */
ib_tpl_t read_tuple;
ib_tpl_t search_tuple;
read_tuple= ib_clust_read_tuple_create(cursor);
search_tuple= ib_clust_search_tuple_create(cursor);
innodb_err= ib_col_set_value(search_tuple, 0, search_string.c_str(),
search_string.length());
assert (innodb_err == DB_SUCCESS); // FIXME
int res;
innodb_err = ib_cursor_moveto(cursor, search_tuple, IB_CUR_GE, &res);
// fixme: check error above
while (innodb_err == DB_SUCCESS)
{
innodb_err= ib_cursor_read_row(cursor, read_tuple);
const char *table_name;
int table_name_len;
ib_col_meta_t column_metadata;
table_name= (const char*)ib_col_get_value(read_tuple, 0);
table_name_len= ib_col_get_meta(read_tuple, 0, &column_metadata);
if (search_string.compare(0, search_string.length(),
table_name, search_string.length()) == 0)
{
const char *just_table_name= strchr(table_name, '/');
assert(just_table_name);
just_table_name++; /* skip over '/' */
set_of_names.insert(just_table_name);
}
innodb_err= ib_cursor_next(cursor);
read_tuple= ib_tuple_clear(read_tuple);
}
ib_tuple_delete(read_tuple);
ib_tuple_delete(search_tuple);
innodb_err= ib_cursor_close(cursor);
assert(innodb_err == DB_SUCCESS); // FIXME
innodb_err= ib_trx_commit(transaction);
assert(innodb_err == DB_SUCCESS); // FIXME
}
static int read_table_message_from_innodb(const char* table_name, drizzled::message::Table *table_message)
{
ib_trx_t transaction;
ib_tpl_t search_tuple;
ib_tpl_t read_tuple;
ib_crsr_t cursor;
const char *message;
ib_ulint_t message_len;
ib_col_meta_t col_meta;
int res;
ib_err_t err;
ib_err_t rollback_err;
transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
err= ib_schema_lock_exclusive(transaction);
if (err != DB_SUCCESS)
{
rollback_err= ib_trx_rollback(transaction);
assert(rollback_err == DB_SUCCESS);
return err;
}
err= ib_cursor_open_table(INNODB_TABLE_DEFINITIONS_TABLE, transaction, &cursor);
if (err != DB_SUCCESS)
{
rollback_err= ib_trx_rollback(transaction);
assert(rollback_err == DB_SUCCESS);
return err;
}
search_tuple= ib_clust_search_tuple_create(cursor);
read_tuple= ib_clust_read_tuple_create(cursor);
err= ib_col_set_value(search_tuple, 0, table_name, strlen(table_name));
if (err != DB_SUCCESS)
goto rollback;
// ib_cursor_set_match_mode(cursor, IB_EXACT_MATCH);
err= ib_cursor_moveto(cursor, search_tuple, IB_CUR_GE, &res);
if (err == DB_RECORD_NOT_FOUND || res != 0)
goto rollback;
err= ib_cursor_read_row(cursor, read_tuple);
if (err == DB_RECORD_NOT_FOUND || res != 0)
goto rollback;
message= (const char*)ib_col_get_value(read_tuple, 1);
message_len= ib_col_get_meta(read_tuple, 1, &col_meta);
if (table_message->ParseFromArray(message, message_len) == false)
goto rollback;
ib_tuple_delete(search_tuple);
ib_tuple_delete(read_tuple);
err= ib_cursor_close(cursor);
if (err != DB_SUCCESS)
goto rollback_close_err;
err= ib_trx_commit(transaction);
if (err != DB_SUCCESS)
goto rollback_close_err;
return 0;
rollback:
ib_tuple_delete(search_tuple);
ib_tuple_delete(read_tuple);
rollback_err= ib_cursor_close(cursor);
assert(rollback_err == DB_SUCCESS);
rollback_close_err:
ib_schema_unlock(transaction);
rollback_err= ib_trx_rollback(transaction);
assert(rollback_err == DB_SUCCESS);
if (strcmp(table_name, INNODB_TABLE_DEFINITIONS_TABLE) == 0)
{
message::Table::StorageEngine *engine= table_message->mutable_engine();
engine->set_name("InnoDB");
table_message->set_name("innodb_table_message");
table_message->set_type(message::Table::STANDARD);
message::Table::TableOptions *options= table_message->mutable_options();
options->set_collation_id(my_charset_bin.number);
options->set_collation(my_charset_bin.name);
message::Table::Field *field= table_message->add_field();
field->set_name("table_name");
field->set_type(message::Table::Field::VARCHAR);
message::Table::Field::StringFieldOptions *stropt= field->mutable_string_options();
stropt->set_length(IB_MAX_TABLE_NAME_LEN);
stropt->set_collation_id(my_charset_bin.number);
stropt->set_collation(my_charset_bin.name);
field= table_message->add_field();
field->set_name("message");
field->set_type(message::Table::Field::BLOB);
stropt= field->mutable_string_options();
stropt->set_collation_id(my_charset_bin.number);
stropt->set_collation(my_charset_bin.name);
message::Table::Index *index= table_message->add_indexes();
index->set_name("PRIMARY");
index->set_is_primary(true);
index->set_is_unique(true);
index->set_type(message::Table::Index::BTREE);
index->set_key_length(IB_MAX_TABLE_NAME_LEN);
message::Table::Index::IndexPart *part= index->add_index_part();
part->set_fieldnr(0);
part->set_compare_length(IB_MAX_TABLE_NAME_LEN);
return 0;
}
return -1;
}
int EmbeddedInnoDBEngine::doGetTableDefinition(Session&,
const char* path,
const char *,
const char *,
const bool,
drizzled::message::Table *table)
{
ib_crsr_t innodb_cursor= NULL;
if (ib_cursor_open_table(path+2, NULL, &innodb_cursor) != DB_SUCCESS)
return ENOENT;
ib_err_t err= ib_cursor_close(innodb_cursor);
assert (err == DB_SUCCESS);
if (table)
{
read_table_message_from_innodb(path+2, table);
}
return EEXIST;
}
const char *EmbeddedInnoDBCursor::index_type(uint32_t)
{
return("BTREE");
}
static ib_err_t write_row_to_innodb_tuple(Field **fields, ib_tpl_t tuple)
{
int colnr= 0;
ib_err_t err;
for (Field **field= fields; *field; field++, colnr++)
{
if ((**field).type() == DRIZZLE_TYPE_VARCHAR)
{
/* To get around the length bytes (1 or 2) at (**field).ptr
we can use Field_varstring::val_str to a String
to get a pointer to the real string without copying it.
*/
String str;
(**field).setReadSet();
(**field).val_str(&str);
err= ib_col_set_value(tuple, colnr, str.ptr(), str.length());
}
else
{
err= ib_col_set_value(tuple, colnr, (*field)->ptr, (*field)->data_length());
}
assert (err == DB_SUCCESS);
}
return err;
}
int EmbeddedInnoDBCursor::write_row(unsigned char *)
{
if (table->next_number_field)
update_auto_increment();
ib_err_t err;
int ret= 0;
ib_trx_t transaction= *get_trx(ha_session());
tuple= ib_clust_read_tuple_create(cursor);
ib_cursor_attach_trx(cursor, transaction);
err= ib_cursor_first(cursor);
assert(err == DB_SUCCESS || err == DB_END_OF_INDEX);
write_row_to_innodb_tuple(table->field, tuple);
err= ib_cursor_insert_row(cursor, tuple);
if (err == DB_DUPLICATE_KEY)
ret= HA_ERR_FOUND_DUPP_KEY;
tuple= ib_tuple_clear(tuple);
ib_tuple_delete(tuple);
err= ib_cursor_reset(cursor);
return ret;
}
int EmbeddedInnoDBCursor::update_row(const unsigned char * ,
unsigned char * )
{
ib_tpl_t update_tuple;
ib_err_t err;
err= ib_cursor_prev(cursor);
assert (err == DB_SUCCESS);
update_tuple= ib_clust_read_tuple_create(cursor);
err= ib_tuple_copy(update_tuple, tuple);
assert(err == DB_SUCCESS);
write_row_to_innodb_tuple(table->field, update_tuple);
err= ib_cursor_update_row(cursor, tuple, update_tuple);
ib_tuple_delete(update_tuple);
if (err == DB_SUCCESS)
return 0;
else
return -1;
}
int EmbeddedInnoDBCursor::delete_row(const unsigned char *)
{
ib_err_t err;
err= ib_cursor_prev(cursor);
assert (err == DB_SUCCESS);
err= ib_cursor_delete_row(cursor);
if (err != DB_SUCCESS)
return -1; // FIXME
err= ib_cursor_next(cursor);
if (err != DB_SUCCESS && err != DB_END_OF_INDEX)
return -1; // FIXME
return 0;
}
int EmbeddedInnoDBCursor::delete_all_rows(void)
{
/* I *think* ib_truncate is non-transactional....
so only support TRUNCATE and not DELETE FROM t;
(this is what ha_innodb does)
*/
if (session_sql_command(ha_session()) != SQLCOM_TRUNCATE)
return HA_ERR_WRONG_COMMAND;
ib_id_t id;
ib_err_t err;
ib_trx_t transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
ib_cursor_attach_trx(cursor, transaction);
err= ib_schema_lock_exclusive(transaction);
if (err != DB_SUCCESS)
{
ib_err_t rollback_err= ib_trx_rollback(transaction);
push_warning_printf(ha_session(), DRIZZLE_ERROR::WARN_LEVEL_ERROR,
ER_CANT_DELETE_FILE,
_("Cannot Lock Embedded InnoDB Data Dictionary. InnoDB Error %d (%s)\n"),
err, ib_strerror(err));
assert (rollback_err == DB_SUCCESS);
return HA_ERR_GENERIC;
}
err= ib_cursor_truncate(&cursor, &id);
if (err != DB_SUCCESS)
goto err;
ib_schema_unlock(transaction);
/* ib_cursor_truncate commits on success */
err= ib_cursor_open_table_using_id(id, NULL, &cursor);
if (err != DB_SUCCESS)
goto err;
return 0;
err:
ib_schema_unlock(transaction);
ib_err_t rollback_err= ib_trx_rollback(transaction);
assert(rollback_err == DB_SUCCESS);
return err;
}
int EmbeddedInnoDBCursor::rnd_init(bool)
{
ib_trx_t transaction= *get_trx(ha_session());
ib_cursor_attach_trx(cursor, transaction);
tuple= ib_clust_read_tuple_create(cursor);
ib_err_t err= ib_cursor_first(cursor);
if (err != DB_SUCCESS && err != DB_END_OF_INDEX)
return -1; // FIXME
return(0);
}
int read_row_from_innodb(ib_crsr_t cursor, ib_tpl_t tuple, Table* table)
{
ib_err_t err;
err= ib_cursor_read_row(cursor, tuple);
if (err != DB_SUCCESS) // FIXME
return HA_ERR_END_OF_FILE;
int colnr= 0;
for (Field **field=table->field ; *field ; field++, colnr++)
{
if (! (**field).isReadSet())
continue;
(**field).setWriteSet();
uint32_t length= ib_col_get_len(tuple, colnr);
if (length == IB_SQL_NULL)
(**field).set_null();
else
(**field).set_notnull();
if ((**field).type() == DRIZZLE_TYPE_VARCHAR)
{
(*field)->store((const char*)ib_col_get_value(tuple, colnr),
length,
&my_charset_bin);
}
else
{
ib_col_copy_value(tuple, colnr, (*field)->ptr, (*field)->data_length());
}
}
return 0;
}
int EmbeddedInnoDBCursor::rnd_next(unsigned char *)
{
ib_err_t err;
int ret;
tuple= ib_tuple_clear(tuple);
ret= read_row_from_innodb(cursor, tuple, table);
err= ib_cursor_next(cursor);
return ret;
}
int EmbeddedInnoDBCursor::rnd_end()
{
ib_err_t err;
ib_tuple_delete(tuple);
err= ib_cursor_reset(cursor);
assert(err == DB_SUCCESS);
return 0;
}
int EmbeddedInnoDBCursor::rnd_pos(unsigned char *, unsigned char *)
{
assert(0);
return(0);
}
void EmbeddedInnoDBCursor::position(const unsigned char *)
{
assert(0);
return;
}
double EmbeddedInnoDBCursor::scan_time()
{
return 0.1;
}
int EmbeddedInnoDBCursor::info(uint32_t flag)
{
stats.records= 2;
if (flag & HA_STATUS_AUTO)
stats.auto_increment_value= 1;
return(0);
}
int EmbeddedInnoDBCursor::index_init(uint32_t keynr, bool)
{
ib_trx_t transaction= *get_trx(ha_session());
active_index= keynr;
ib_cursor_attach_trx(cursor, transaction);
if (active_index == 0)
{
tuple= ib_clust_read_tuple_create(cursor);
}
else
{
/* Open 2ndary index */
}
return 0;
}
int EmbeddedInnoDBCursor::index_read(unsigned char *buf,
const unsigned char *key_ptr,
uint32_t key_len,
drizzled::ha_rkey_function find_flag)
{
ib_tpl_t search_tuple;
int res;
ib_err_t err;
int ret;
(void)buf;
(void)find_flag;
search_tuple= ib_clust_search_tuple_create(cursor);
err= ib_col_set_value(search_tuple, 0, key_ptr, key_len);
assert(err == DB_SUCCESS);
err= ib_cursor_moveto(cursor, search_tuple, IB_CUR_GE, &res);
if (err == DB_RECORD_NOT_FOUND || res != 0)
return HA_ERR_END_OF_FILE;
tuple= ib_tuple_clear(tuple);
ret= read_row_from_innodb(cursor, tuple, table);
err= ib_cursor_next(cursor);
return 0;
}
int EmbeddedInnoDBCursor::index_next(unsigned char *)
{
int ret= HA_ERR_END_OF_FILE;
ib_err_t err;
if (active_index == 0)
{
tuple= ib_tuple_clear(tuple);
ret= read_row_from_innodb(cursor, tuple, table);
err= ib_cursor_next(cursor);
}
return ret;
}
int EmbeddedInnoDBCursor::index_end()
{
active_index= MAX_KEY;
return rnd_end();
}
int EmbeddedInnoDBCursor::index_prev(unsigned char *)
{
int ret= HA_ERR_END_OF_FILE;
ib_err_t err;
if (active_index == 0)
{
tuple= ib_tuple_clear(tuple);
ret= read_row_from_innodb(cursor, tuple, table);
err= ib_cursor_prev(cursor);
}
return ret;
}
int EmbeddedInnoDBCursor::index_first(unsigned char *)
{
int ret= HA_ERR_END_OF_FILE;
ib_err_t err;
err= ib_cursor_first(cursor);
if (err != DB_SUCCESS)
{
if (err == DB_END_OF_INDEX)
return HA_ERR_END_OF_FILE;
else
return -1; // FIXME
}
if (active_index == 0)
{
tuple= ib_tuple_clear(tuple);
ret= read_row_from_innodb(cursor, tuple, table);
err= ib_cursor_next(cursor);
}
return ret;
}
int EmbeddedInnoDBCursor::index_last(unsigned char *)
{
int ret= HA_ERR_END_OF_FILE;
ib_err_t err;
err= ib_cursor_last(cursor);
if (err != DB_SUCCESS)
{
if (err == DB_END_OF_INDEX)
return HA_ERR_END_OF_FILE;
else
return -1; // FIXME
}
if (active_index == 0)
{
tuple= ib_tuple_clear(tuple);
ret= read_row_from_innodb(cursor, tuple, table);
err= ib_cursor_prev(cursor);
}
return ret;
}
static int create_table_message_table()
{
ib_tbl_sch_t schema;
ib_idx_sch_t index_schema;
ib_trx_t transaction;
ib_id_t table_id;
ib_err_t err;
ib_bool_t create_db_err;
create_db_err= ib_database_create("data_dictionary");
if (create_db_err != IB_TRUE)
return -1;
err= ib_table_schema_create(INNODB_TABLE_DEFINITIONS_TABLE, &schema,
IB_TBL_COMPACT, 0);
if (err != DB_SUCCESS)
return err;
err= ib_table_schema_add_col(schema, "table_name", IB_VARCHAR, IB_COL_NONE, 0,
IB_MAX_TABLE_NAME_LEN);
if (err != DB_SUCCESS)
goto rollback;
err= ib_table_schema_add_col(schema, "message", IB_BLOB, IB_COL_NONE, 0, 0);
if (err != DB_SUCCESS)
goto rollback;
err= ib_table_schema_add_index(schema, "PRIMARY_KEY", &index_schema);
if (err != DB_SUCCESS)
goto rollback;
err= ib_index_schema_add_col(index_schema, "table_name", 0);
if (err != DB_SUCCESS)
goto rollback;
err= ib_index_schema_set_clustered(index_schema);
if (err != DB_SUCCESS)
goto rollback;
transaction= ib_trx_begin(IB_TRX_REPEATABLE_READ);
err= ib_schema_lock_exclusive(transaction);
if (err != DB_SUCCESS)
goto rollback;
err= ib_table_create(transaction, schema, &table_id);
if (err != DB_SUCCESS)
goto rollback;
err= ib_trx_commit(transaction);
if (err != DB_SUCCESS)
goto rollback;
ib_table_schema_delete(schema);
return 0;
rollback:
ib_schema_unlock(transaction);
ib_table_schema_delete(schema);
ib_err_t rollback_err= ib_trx_rollback(transaction);
assert(rollback_err == DB_SUCCESS);
return err;
}
static char default_innodb_data_file_path[]= "ibdata1:10M:autoextend";
static char* innodb_data_file_path= NULL;
static int64_t innodb_log_file_size;
static int64_t innodb_log_files_in_group;
static int embedded_innodb_init(drizzled::plugin::Registry ®istry)
{
ib_err_t err;
err= ib_init();
if (err != DB_SUCCESS)
goto innodb_error;
if (innodb_data_file_path == NULL)
innodb_data_file_path= default_innodb_data_file_path;
err= ib_cfg_set_text("data_file_path", innodb_data_file_path);
if (err != DB_SUCCESS)
goto innodb_error;
err= ib_cfg_set_int("log_file_size", innodb_log_file_size);
if (err != DB_SUCCESS)
goto innodb_error;
err= ib_cfg_set_int("log_files_in_group", innodb_log_files_in_group);
if (err != DB_SUCCESS)
goto innodb_error;
err= ib_startup("barracuda");
if (err != DB_SUCCESS)
goto innodb_error;
create_table_message_table();
embedded_innodb_engine= new EmbeddedInnoDBEngine("InnoDB");
registry.add(embedded_innodb_engine);
libinnodb_version_func_initialize(registry);
libinnodb_datadict_dump_func_initialize(registry);
config_table_function_initialize(registry);
return 0;
innodb_error:
fprintf(stderr, _("Error starting Embedded InnoDB %d (%s)\n"),
err, ib_strerror(err));
return -1;
}
static int embedded_innodb_fini(drizzled::plugin::Registry ®istry)
{
int err;
registry.remove(embedded_innodb_engine);
delete embedded_innodb_engine;
libinnodb_version_func_finalize(registry);
libinnodb_datadict_dump_func_finalize(registry);
config_table_function_initialize(registry);
err= ib_shutdown(IB_SHUTDOWN_NORMAL);
if (err != DB_SUCCESS)
{
fprintf(stderr,"Error %d shutting down Embedded InnoDB!", err);
return err;
}
return 0;
}
static DRIZZLE_SYSVAR_STR(data_file_path, innodb_data_file_path,
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
"Path to individual files and their sizes.",
NULL, NULL, NULL);
static DRIZZLE_SYSVAR_LONGLONG(log_file_size, innodb_log_file_size,
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
"Size of each log file in a log group.",
NULL, NULL, 5*1024*1024L, 1*1024*1024L, INT64_MAX, 1024*1024L);
static DRIZZLE_SYSVAR_LONGLONG(log_files_in_group, innodb_log_files_in_group,
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
"Number of log files in the log group. InnoDB writes to the files in a circular fashion. Value 3 is recommended here.",
NULL, NULL, 2, 2, 100, 0);
static DRIZZLE_SessionVAR_ULONG(lock_wait_timeout, PLUGIN_VAR_RQCMDARG,
"Placeholder: to be compatible with InnoDB plugin.",
NULL, NULL, 50, 1, 1024 * 1024 * 1024, 0);
static drizzle_sys_var* innobase_system_variables[]= {
DRIZZLE_SYSVAR(data_file_path),
DRIZZLE_SYSVAR(lock_wait_timeout),
DRIZZLE_SYSVAR(log_file_size),
DRIZZLE_SYSVAR(log_files_in_group),
NULL
};
DRIZZLE_DECLARE_PLUGIN
{
DRIZZLE_VERSION_ID,
"INNODB",
"1.0",
"Stewart Smith",
"Transactional Storage Engine using the Embedded InnoDB Library",
PLUGIN_LICENSE_GPL,
embedded_innodb_init, /* Plugin Init */
embedded_innodb_fini, /* Plugin Deinit */
innobase_system_variables, /* system variables */
NULL /* config options */
}
DRIZZLE_DECLARE_PLUGIN_END;
|