1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2010 Brian Aker
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
#include "plugin/schema_engine/schema.h"
24
#include "drizzled/db.h"
25
#include "drizzled/sql_table.h"
26
#include "drizzled/global_charset_info.h"
27
#include "drizzled/charset.h"
28
#include "drizzled/charset_info.h"
29
#include "drizzled/cursor.h"
30
#include "drizzled/data_home.h"
32
#include <drizzled/pthread_globals.h>
34
#include <drizzled/execute.h>
36
#include "drizzled/internal/my_sys.h"
40
#include <sys/types.h>
42
#include <google/protobuf/io/zero_copy_stream.h>
43
#include <google/protobuf/io/zero_copy_stream_impl.h>
50
using namespace drizzled;
53
#define MY_DB_OPT_FILE "db.opt"
54
#define DEFAULT_FILE_EXTENSION ".dfe" // Deep Fried Elephant
57
drizzled::plugin::StorageEngine("schema",
58
HTON_ALTER_NOT_SUPPORTED |
59
HTON_HAS_SCHEMA_DICTIONARY |
60
HTON_SKIP_STORE_LOCK |
61
HTON_TEMPORARY_NOT_SUPPORTED),
62
schema_cache_filled(false)
64
table_definition_ext= DEFAULT_FILE_EXTENSION;
73
CachedDirectory directory(getDataHomeCatalog().file_string(), CachedDirectory::DIRECTORY);
74
CachedDirectory::Entries files= directory.getEntries();
75
boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
77
for (CachedDirectory::Entries::iterator fileIter= files.begin();
78
fileIter != files.end(); fileIter++)
80
CachedDirectory::Entry *entry= *fileIter;
81
message::Schema schema_message;
83
if (not entry->filename.compare(GLOBAL_TEMPORARY_EXT))
86
if (readSchemaFile(entry->filename, schema_message))
88
identifier::Schema schema_identifier(schema_message.name());
90
pair<SchemaCache::iterator, bool> ret=
91
schema_cache.insert(make_pair(schema_identifier.getPath(), new message::Schema(schema_message)));
93
if (ret.second == false)
95
abort(); // If this has happened, something really bad is going down.
101
void Schema::startup(drizzled::Session &)
105
void Schema::doGetSchemaIdentifiers(identifier::Schema::vector &set_of_names)
109
for (SchemaCache::iterator iter= schema_cache.begin();
110
iter != schema_cache.end();
113
set_of_names.push_back(identifier::Schema((*iter).second->name()));
116
mutex.unlock_shared();
119
bool Schema::doGetSchemaDefinition(const identifier::Schema &schema_identifier, message::schema::shared_ptr &schema_message)
122
SchemaCache::iterator iter= schema_cache.find(schema_identifier.getPath());
124
if (iter != schema_cache.end())
126
schema_message= (*iter).second;
127
mutex.unlock_shared();
131
mutex.unlock_shared();
137
bool Schema::doCreateSchema(const drizzled::message::Schema &schema_message)
139
identifier::Schema schema_identifier(schema_message.name());
141
if (mkdir(schema_identifier.getPath().c_str(), 0777) == -1)
143
sql_perror(schema_identifier.getPath().c_str());
147
if (not writeSchemaFile(schema_identifier, schema_message))
149
rmdir(schema_identifier.getPath().c_str());
155
boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
156
pair<SchemaCache::iterator, bool> ret=
157
schema_cache.insert(make_pair(schema_identifier.getPath(), new message::Schema(schema_message)));
160
if (ret.second == false)
162
abort(); // If this has happened, something really bad is going down.
169
bool Schema::doDropSchema(const identifier::Schema &schema_identifier)
171
message::schema::shared_ptr schema_message;
173
string schema_file(schema_identifier.getPath());
174
schema_file.append(1, FN_LIBCHAR);
175
schema_file.append(MY_DB_OPT_FILE);
177
if (not doGetSchemaDefinition(schema_identifier, schema_message))
180
// No db.opt file, no love from us.
181
if (access(schema_file.c_str(), F_OK))
183
sql_perror(schema_file.c_str());
187
if (unlink(schema_file.c_str()))
189
sql_perror(schema_file.c_str());
193
if (rmdir(schema_identifier.getPath().c_str()))
195
sql_perror(schema_identifier.getPath().c_str());
196
//@todo If this happens, we want a report of it. For the moment I dump
197
//to stderr so I can catch it in Hudson.
198
CachedDirectory dir(schema_identifier.getPath());
202
boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
203
schema_cache.erase(schema_identifier.getPath());
208
bool Schema::doAlterSchema(const drizzled::message::Schema &schema_message)
210
identifier::Schema schema_identifier(schema_message.name());
212
if (access(schema_identifier.getPath().c_str(), F_OK))
215
if (writeSchemaFile(schema_identifier, schema_message))
217
boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
218
schema_cache.erase(schema_identifier.getPath());
220
pair<SchemaCache::iterator, bool> ret=
221
schema_cache.insert(make_pair(schema_identifier.getPath(), new message::Schema(schema_message)));
223
if (ret.second == false)
225
abort(); // If this has happened, something really bad is going down.
233
path is path to database, not schema file
235
@note we do the rename to make it crash safe.
237
bool Schema::writeSchemaFile(const identifier::Schema &schema_identifier, const message::Schema &db)
239
char schema_file_tmp[FN_REFLEN];
240
string schema_file(schema_identifier.getPath());
243
schema_file.append(1, FN_LIBCHAR);
244
schema_file.append(MY_DB_OPT_FILE);
246
snprintf(schema_file_tmp, FN_REFLEN, "%sXXXXXX", schema_file.c_str());
248
int fd= mkstemp(schema_file_tmp);
252
sql_perror(schema_file_tmp);
260
success= db.SerializeToFileDescriptor(fd);
269
my_error(ER_CORRUPT_SCHEMA_DEFINITION, MYF(0), schema_file.c_str(),
270
db.InitializationErrorString().empty() ? "unknown" : db.InitializationErrorString().c_str());
273
sql_perror(schema_file_tmp);
275
if (unlink(schema_file_tmp))
276
sql_perror(schema_file_tmp);
283
sql_perror(schema_file_tmp);
285
if (unlink(schema_file_tmp))
286
sql_perror(schema_file_tmp);
291
if (rename(schema_file_tmp, schema_file.c_str()) == -1)
293
if (unlink(schema_file_tmp))
294
sql_perror(schema_file_tmp);
303
bool Schema::readSchemaFile(const drizzled::identifier::Schema &schema_identifier, drizzled::message::Schema &schema)
305
return readSchemaFile(schema_identifier.getPath(), schema);
308
bool Schema::readSchemaFile(std::string db_opt_path, drizzled::message::Schema &schema)
311
Pass an empty file name, and the database options file name as extension
312
to avoid table name to file name encoding.
314
db_opt_path.append(1, FN_LIBCHAR);
315
db_opt_path.append(MY_DB_OPT_FILE);
317
fstream input(db_opt_path.c_str(), ios::in | ios::binary);
320
@note If parsing fails, either someone has done a "mkdir" or has deleted their opt file.
321
So what do we do? We muddle through the adventure by generating
322
one with a name in it, and the charset set to the default.
326
if (schema.ParseFromIstream(&input))
331
my_error(ER_CORRUPT_SCHEMA_DEFINITION, MYF(0), db_opt_path.c_str(),
332
schema.InitializationErrorString().empty() ? "unknown" : schema.InitializationErrorString().c_str());
336
sql_perror(db_opt_path.c_str());
342
void Schema::doGetTableIdentifiers(drizzled::CachedDirectory&,
343
const drizzled::identifier::Schema&,
344
drizzled::identifier::Table::vector&)