~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/schema.cc

  • Committer: Brian Aker
  • Date: 2009-10-16 10:27:33 UTC
  • mfrom: (1183.1.4 merge)
  • Revision ID: brian@gaz-20091016102733-b10po5oup0hjlilh
Merge Engine changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2010 Brian Aker
5
 
 *
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.
10
 
 *
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.
15
 
 *
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
19
 
 */
20
 
 
21
 
#include "config.h"
22
 
 
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"
31
 
 
32
 
#include <drizzled/pthread_globals.h>
33
 
 
34
 
#include <drizzled/execute.h>
35
 
 
36
 
#include "drizzled/internal/my_sys.h"
37
 
 
38
 
#include <fcntl.h>
39
 
#include <sys/stat.h>
40
 
#include <sys/types.h>
41
 
 
42
 
#include <google/protobuf/io/zero_copy_stream.h>
43
 
#include <google/protobuf/io/zero_copy_stream_impl.h>
44
 
 
45
 
#include <iostream>
46
 
#include <fstream>
47
 
#include <string>
48
 
 
49
 
using namespace std;
50
 
using namespace drizzled;
51
 
 
52
 
 
53
 
#define MY_DB_OPT_FILE "db.opt"
54
 
#define DEFAULT_FILE_EXTENSION ".dfe" // Deep Fried Elephant
55
 
 
56
 
Schema::Schema():
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)
63
 
{
64
 
  table_definition_ext= DEFAULT_FILE_EXTENSION;
65
 
}
66
 
 
67
 
Schema::~Schema()
68
 
{
69
 
}
70
 
 
71
 
void Schema::prime()
72
 
{
73
 
  CachedDirectory directory(getDataHomeCatalog().file_string(), CachedDirectory::DIRECTORY);
74
 
  CachedDirectory::Entries files= directory.getEntries();
75
 
  boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
76
 
 
77
 
  for (CachedDirectory::Entries::iterator fileIter= files.begin();
78
 
       fileIter != files.end(); fileIter++)
79
 
  {
80
 
    CachedDirectory::Entry *entry= *fileIter;
81
 
    message::Schema schema_message;
82
 
 
83
 
    if (not entry->filename.compare(GLOBAL_TEMPORARY_EXT))
84
 
      continue;
85
 
 
86
 
    if (readSchemaFile(entry->filename, schema_message))
87
 
    {
88
 
      identifier::Schema schema_identifier(schema_message.name());
89
 
 
90
 
      pair<SchemaCache::iterator, bool> ret=
91
 
        schema_cache.insert(make_pair(schema_identifier.getPath(), new message::Schema(schema_message)));
92
 
 
93
 
      if (ret.second == false)
94
 
      {
95
 
        abort(); // If this has happened, something really bad is going down.
96
 
      }
97
 
    }
98
 
  }
99
 
}
100
 
 
101
 
void Schema::startup(drizzled::Session &)
102
 
{
103
 
}
104
 
 
105
 
void Schema::doGetSchemaIdentifiers(identifier::Schema::vector &set_of_names)
106
 
{
107
 
  mutex.lock_shared();
108
 
  {
109
 
    for (SchemaCache::iterator iter= schema_cache.begin();
110
 
         iter != schema_cache.end();
111
 
         iter++)
112
 
    {
113
 
      set_of_names.push_back(identifier::Schema((*iter).second->name()));
114
 
    }
115
 
  }
116
 
  mutex.unlock_shared();
117
 
}
118
 
 
119
 
bool Schema::doGetSchemaDefinition(const identifier::Schema &schema_identifier, message::schema::shared_ptr &schema_message)
120
 
{
121
 
  mutex.lock_shared();
122
 
  SchemaCache::iterator iter= schema_cache.find(schema_identifier.getPath());
123
 
 
124
 
  if (iter != schema_cache.end())
125
 
  {
126
 
    schema_message= (*iter).second;
127
 
    mutex.unlock_shared();
128
 
 
129
 
    return true;
130
 
  }
131
 
  mutex.unlock_shared();
132
 
 
133
 
  return false;
134
 
}
135
 
 
136
 
 
137
 
bool Schema::doCreateSchema(const drizzled::message::Schema &schema_message)
138
 
{
139
 
  identifier::Schema schema_identifier(schema_message.name());
140
 
 
141
 
  if (mkdir(schema_identifier.getPath().c_str(), 0777) == -1)
142
 
  {
143
 
    sql_perror(schema_identifier.getPath().c_str());
144
 
    return false;
145
 
  }
146
 
 
147
 
  if (not writeSchemaFile(schema_identifier, schema_message))
148
 
  {
149
 
    rmdir(schema_identifier.getPath().c_str());
150
 
 
151
 
    return false;
152
 
  }
153
 
 
154
 
  {
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)));
158
 
 
159
 
 
160
 
    if (ret.second == false)
161
 
    {
162
 
      abort(); // If this has happened, something really bad is going down.
163
 
    }
164
 
  }
165
 
 
166
 
  return true;
167
 
}
168
 
 
169
 
bool Schema::doDropSchema(const identifier::Schema &schema_identifier)
170
 
{
171
 
  message::schema::shared_ptr schema_message;
172
 
 
173
 
  string schema_file(schema_identifier.getPath());
174
 
  schema_file.append(1, FN_LIBCHAR);
175
 
  schema_file.append(MY_DB_OPT_FILE);
176
 
 
177
 
  if (not doGetSchemaDefinition(schema_identifier, schema_message))
178
 
    return false;
179
 
 
180
 
  // No db.opt file, no love from us.
181
 
  if (access(schema_file.c_str(), F_OK))
182
 
  {
183
 
    sql_perror(schema_file.c_str());
184
 
    return false;
185
 
  }
186
 
 
187
 
  if (unlink(schema_file.c_str()))
188
 
  {
189
 
    sql_perror(schema_file.c_str());
190
 
    return false;
191
 
  }
192
 
 
193
 
  if (rmdir(schema_identifier.getPath().c_str()))
194
 
  {
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());
199
 
    cerr << dir;
200
 
  }
201
 
 
202
 
  boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
203
 
  schema_cache.erase(schema_identifier.getPath());
204
 
 
205
 
  return true;
206
 
}
207
 
 
208
 
bool Schema::doAlterSchema(const drizzled::message::Schema &schema_message)
209
 
{
210
 
  identifier::Schema schema_identifier(schema_message.name());
211
 
 
212
 
  if (access(schema_identifier.getPath().c_str(), F_OK))
213
 
    return false;
214
 
 
215
 
  if (writeSchemaFile(schema_identifier, schema_message))
216
 
  {
217
 
    boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
218
 
    schema_cache.erase(schema_identifier.getPath());
219
 
 
220
 
    pair<SchemaCache::iterator, bool> ret=
221
 
      schema_cache.insert(make_pair(schema_identifier.getPath(), new message::Schema(schema_message)));
222
 
 
223
 
    if (ret.second == false)
224
 
    {
225
 
      abort(); // If this has happened, something really bad is going down.
226
 
    }
227
 
  }
228
 
 
229
 
  return true;
230
 
}
231
 
 
232
 
/**
233
 
  path is path to database, not schema file 
234
 
 
235
 
  @note we do the rename to make it crash safe.
236
 
*/
237
 
bool Schema::writeSchemaFile(const identifier::Schema &schema_identifier, const message::Schema &db)
238
 
{
239
 
  char schema_file_tmp[FN_REFLEN];
240
 
  string schema_file(schema_identifier.getPath());
241
 
 
242
 
 
243
 
  schema_file.append(1, FN_LIBCHAR);
244
 
  schema_file.append(MY_DB_OPT_FILE);
245
 
 
246
 
  snprintf(schema_file_tmp, FN_REFLEN, "%sXXXXXX", schema_file.c_str());
247
 
 
248
 
  int fd= mkstemp(schema_file_tmp);
249
 
 
250
 
  if (fd == -1)
251
 
  {
252
 
    sql_perror(schema_file_tmp);
253
 
 
254
 
    return false;
255
 
  }
256
 
 
257
 
  bool success;
258
 
 
259
 
  try {
260
 
    success= db.SerializeToFileDescriptor(fd);
261
 
  }
262
 
  catch (...)
263
 
  {
264
 
    success= false;
265
 
  }
266
 
 
267
 
  if (not success)
268
 
  {
269
 
    my_error(ER_CORRUPT_SCHEMA_DEFINITION, MYF(0), schema_file.c_str(),
270
 
             db.InitializationErrorString().empty() ? "unknown" :  db.InitializationErrorString().c_str());
271
 
 
272
 
    if (close(fd) == -1)
273
 
      sql_perror(schema_file_tmp);
274
 
 
275
 
    if (unlink(schema_file_tmp))
276
 
      sql_perror(schema_file_tmp);
277
 
 
278
 
    return false;
279
 
  }
280
 
 
281
 
  if (close(fd) == -1)
282
 
  {
283
 
    sql_perror(schema_file_tmp);
284
 
 
285
 
    if (unlink(schema_file_tmp))
286
 
      sql_perror(schema_file_tmp);
287
 
 
288
 
    return false;
289
 
  }
290
 
 
291
 
  if (rename(schema_file_tmp, schema_file.c_str()) == -1)
292
 
  {
293
 
    if (unlink(schema_file_tmp))
294
 
      sql_perror(schema_file_tmp);
295
 
 
296
 
    return false;
297
 
  }
298
 
 
299
 
  return true;
300
 
}
301
 
 
302
 
 
303
 
bool Schema::readSchemaFile(const drizzled::identifier::Schema &schema_identifier, drizzled::message::Schema &schema)
304
 
{
305
 
  return readSchemaFile(schema_identifier.getPath(), schema); 
306
 
}
307
 
 
308
 
bool Schema::readSchemaFile(std::string db_opt_path, drizzled::message::Schema &schema)
309
 
{
310
 
  /*
311
 
    Pass an empty file name, and the database options file name as extension
312
 
    to avoid table name to file name encoding.
313
 
  */
314
 
  db_opt_path.append(1, FN_LIBCHAR);
315
 
  db_opt_path.append(MY_DB_OPT_FILE);
316
 
 
317
 
  fstream input(db_opt_path.c_str(), ios::in | ios::binary);
318
 
 
319
 
  /**
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.
323
 
  */
324
 
  if (input.good())
325
 
  {
326
 
    if (schema.ParseFromIstream(&input))
327
 
    {
328
 
      return true;
329
 
    }
330
 
 
331
 
    my_error(ER_CORRUPT_SCHEMA_DEFINITION, MYF(0), db_opt_path.c_str(),
332
 
             schema.InitializationErrorString().empty() ? "unknown" :  schema.InitializationErrorString().c_str());
333
 
  }
334
 
  else
335
 
  {
336
 
    sql_perror(db_opt_path.c_str());
337
 
  }
338
 
 
339
 
  return false;
340
 
}
341
 
 
342
 
void Schema::doGetTableIdentifiers(drizzled::CachedDirectory&,
343
 
                                   const drizzled::identifier::Schema&,
344
 
                                   drizzled::identifier::Table::vector&)
345
 
{
346
 
}