~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/schema.cc

Updated translations now that we're using intltool.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "drizzled/charset.h"
28
28
#include "drizzled/charset_info.h"
29
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
30
 
36
31
#include "drizzled/internal/my_sys.h"
37
32
 
49
44
using namespace std;
50
45
using namespace drizzled;
51
46
 
 
47
// This should always be the same value as GLOBAL_TEMPORARY_EXT but be
 
48
// CASE_UP. --Brian
 
49
static SchemaIdentifier TEMPORARY_IDENTIFIER(".TEMPORARY");
52
50
 
53
51
#define MY_DB_OPT_FILE "db.opt"
54
52
#define DEFAULT_FILE_EXTENSION ".dfe" // Deep Fried Elephant
62
60
  schema_cache_filled(false)
63
61
{
64
62
  table_definition_ext= DEFAULT_FILE_EXTENSION;
 
63
  pthread_rwlock_init(&schema_lock, NULL);
 
64
  prime();
65
65
}
66
66
 
67
67
Schema::~Schema()
68
68
{
 
69
  pthread_rwlock_destroy(&schema_lock);
69
70
}
70
71
 
71
72
void Schema::prime()
72
73
{
73
 
  CachedDirectory directory(getDataHomeCatalog().file_string(), CachedDirectory::DIRECTORY);
 
74
  CachedDirectory directory(data_home, CachedDirectory::DIRECTORY);
74
75
  CachedDirectory::Entries files= directory.getEntries();
75
 
  boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
 
76
 
 
77
  pthread_rwlock_wrlock(&schema_lock);
76
78
 
77
79
  for (CachedDirectory::Entries::iterator fileIter= files.begin();
78
80
       fileIter != files.end(); fileIter++)
85
87
 
86
88
    if (readSchemaFile(entry->filename, schema_message))
87
89
    {
88
 
      identifier::Schema schema_identifier(schema_message.name());
 
90
      SchemaIdentifier schema_identifier(schema_message.name());
89
91
 
90
92
      pair<SchemaCache::iterator, bool> ret=
91
 
        schema_cache.insert(make_pair(schema_identifier.getPath(), new message::Schema(schema_message)));
 
93
        schema_cache.insert(make_pair(schema_identifier.getPath(), schema_message));
92
94
 
93
95
      if (ret.second == false)
94
 
      {
 
96
     {
95
97
        abort(); // If this has happened, something really bad is going down.
96
98
      }
97
99
    }
98
100
  }
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();
 
101
  pthread_rwlock_unlock(&schema_lock);
 
102
}
 
103
 
 
104
void Schema::doGetSchemaIdentifiers(SchemaIdentifiers &set_of_names)
 
105
{
 
106
  if (not pthread_rwlock_rdlock(&schema_lock))
108
107
  {
109
108
    for (SchemaCache::iterator iter= schema_cache.begin();
110
109
         iter != schema_cache.end();
111
110
         iter++)
112
111
    {
113
 
      set_of_names.push_back(identifier::Schema((*iter).second->name()));
 
112
      set_of_names.push_back(SchemaIdentifier((*iter).second.name()));
114
113
    }
115
 
  }
116
 
  mutex.unlock_shared();
 
114
    pthread_rwlock_unlock(&schema_lock);
 
115
 
 
116
    return;
 
117
  }
 
118
 
 
119
  // If for some reason getting a lock should fail, we resort to disk
 
120
 
 
121
  CachedDirectory directory(data_home, CachedDirectory::DIRECTORY);
 
122
 
 
123
  CachedDirectory::Entries files= directory.getEntries();
 
124
 
 
125
  for (CachedDirectory::Entries::iterator fileIter= files.begin();
 
126
       fileIter != files.end(); fileIter++)
 
127
  {
 
128
    CachedDirectory::Entry *entry= *fileIter;
 
129
    set_of_names.push_back(entry->filename);
 
130
  }
117
131
}
118
132
 
119
 
bool Schema::doGetSchemaDefinition(const identifier::Schema &schema_identifier, message::schema::shared_ptr &schema_message)
 
133
bool Schema::doGetSchemaDefinition(const SchemaIdentifier &schema_identifier, message::Schema &schema_message)
120
134
{
121
 
  mutex.lock_shared();
122
 
  SchemaCache::iterator iter= schema_cache.find(schema_identifier.getPath());
123
 
 
124
 
  if (iter != schema_cache.end())
 
135
  if (not pthread_rwlock_rdlock(&schema_lock))
125
136
  {
126
 
    schema_message= (*iter).second;
127
 
    mutex.unlock_shared();
128
 
 
129
 
    return true;
 
137
    SchemaCache::iterator iter= schema_cache.find(schema_identifier.getPath());
 
138
 
 
139
    if (iter != schema_cache.end())
 
140
    {
 
141
      schema_message.CopyFrom(((*iter).second));
 
142
      pthread_rwlock_unlock(&schema_lock);
 
143
      return true;
 
144
    }
 
145
    pthread_rwlock_unlock(&schema_lock);
 
146
 
 
147
    return false;
130
148
  }
131
 
  mutex.unlock_shared();
132
149
 
133
 
  return false;
 
150
  // Fail to disk based means
 
151
  return readSchemaFile(schema_identifier.getPath(), schema_message);
134
152
}
135
153
 
136
 
 
137
154
bool Schema::doCreateSchema(const drizzled::message::Schema &schema_message)
138
155
{
139
 
  identifier::Schema schema_identifier(schema_message.name());
 
156
  SchemaIdentifier schema_identifier(schema_message.name());
140
157
 
141
158
  if (mkdir(schema_identifier.getPath().c_str(), 0777) == -1)
142
 
  {
143
 
    sql_perror(schema_identifier.getPath().c_str());
144
159
    return false;
145
 
  }
146
160
 
147
161
  if (not writeSchemaFile(schema_identifier, schema_message))
148
162
  {
151
165
    return false;
152
166
  }
153
167
 
 
168
  if (not pthread_rwlock_wrlock(&schema_lock))
154
169
  {
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
 
    }
 
170
      pair<SchemaCache::iterator, bool> ret=
 
171
        schema_cache.insert(make_pair(schema_identifier.getPath(), schema_message));
 
172
 
 
173
 
 
174
      if (ret.second == false)
 
175
      {
 
176
        abort(); // If this has happened, something really bad is going down.
 
177
      }
 
178
    pthread_rwlock_unlock(&schema_lock);
164
179
  }
165
180
 
166
181
  return true;
167
182
}
168
183
 
169
 
bool Schema::doDropSchema(const identifier::Schema &schema_identifier)
 
184
bool Schema::doDropSchema(const SchemaIdentifier &schema_identifier)
170
185
{
171
 
  message::schema::shared_ptr schema_message;
 
186
  message::Schema schema_message;
172
187
 
173
188
  string schema_file(schema_identifier.getPath());
174
189
  schema_file.append(1, FN_LIBCHAR);
180
195
  // No db.opt file, no love from us.
181
196
  if (access(schema_file.c_str(), F_OK))
182
197
  {
183
 
    sql_perror(schema_file.c_str());
 
198
    perror(schema_file.c_str());
184
199
    return false;
185
200
  }
186
201
 
187
202
  if (unlink(schema_file.c_str()))
188
203
  {
189
 
    sql_perror(schema_file.c_str());
 
204
    perror(schema_file.c_str());
190
205
    return false;
191
206
  }
192
207
 
193
208
  if (rmdir(schema_identifier.getPath().c_str()))
194
209
  {
195
 
    sql_perror(schema_identifier.getPath().c_str());
 
210
    perror(schema_identifier.getPath().c_str());
196
211
    //@todo If this happens, we want a report of it. For the moment I dump
197
212
    //to stderr so I can catch it in Hudson.
198
213
    CachedDirectory dir(schema_identifier.getPath());
199
214
    cerr << dir;
200
215
  }
201
216
 
202
 
  boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
203
 
  schema_cache.erase(schema_identifier.getPath());
 
217
  if (not pthread_rwlock_wrlock(&schema_lock))
 
218
  {
 
219
    schema_cache.erase(schema_identifier.getPath());
 
220
    pthread_rwlock_unlock(&schema_lock);
 
221
  }
204
222
 
205
223
  return true;
206
224
}
207
225
 
208
226
bool Schema::doAlterSchema(const drizzled::message::Schema &schema_message)
209
227
{
210
 
  identifier::Schema schema_identifier(schema_message.name());
 
228
  SchemaIdentifier schema_identifier(schema_message.name());
211
229
 
212
230
  if (access(schema_identifier.getPath().c_str(), F_OK))
213
231
    return false;
214
232
 
215
233
  if (writeSchemaFile(schema_identifier, schema_message))
216
234
  {
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.
 
235
    if (not pthread_rwlock_wrlock(&schema_lock))
 
236
    {
 
237
      schema_cache.erase(schema_identifier.getPath());
 
238
 
 
239
      pair<SchemaCache::iterator, bool> ret=
 
240
        schema_cache.insert(make_pair(schema_identifier.getPath(), schema_message));
 
241
 
 
242
      if (ret.second == false)
 
243
      {
 
244
        abort(); // If this has happened, something really bad is going down.
 
245
      }
 
246
 
 
247
      pthread_rwlock_unlock(&schema_lock);
 
248
    }
 
249
    else
 
250
    {
 
251
      abort(); // This would leave us out of sync, suck.
226
252
    }
227
253
  }
228
254
 
234
260
 
235
261
  @note we do the rename to make it crash safe.
236
262
*/
237
 
bool Schema::writeSchemaFile(const identifier::Schema &schema_identifier, const message::Schema &db)
 
263
bool Schema::writeSchemaFile(const SchemaIdentifier &schema_identifier, const message::Schema &db)
238
264
{
239
265
  char schema_file_tmp[FN_REFLEN];
240
266
  string schema_file(schema_identifier.getPath());
249
275
 
250
276
  if (fd == -1)
251
277
  {
252
 
    sql_perror(schema_file_tmp);
 
278
    perror(schema_file_tmp);
253
279
 
254
280
    return false;
255
281
  }
270
296
             db.InitializationErrorString().empty() ? "unknown" :  db.InitializationErrorString().c_str());
271
297
 
272
298
    if (close(fd) == -1)
273
 
      sql_perror(schema_file_tmp);
 
299
      perror(schema_file_tmp);
274
300
 
275
301
    if (unlink(schema_file_tmp))
276
 
      sql_perror(schema_file_tmp);
 
302
      perror(schema_file_tmp);
277
303
 
278
304
    return false;
279
305
  }
280
306
 
281
307
  if (close(fd) == -1)
282
308
  {
283
 
    sql_perror(schema_file_tmp);
 
309
    perror(schema_file_tmp);
284
310
 
285
311
    if (unlink(schema_file_tmp))
286
 
      sql_perror(schema_file_tmp);
 
312
      perror(schema_file_tmp);
287
313
 
288
314
    return false;
289
315
  }
291
317
  if (rename(schema_file_tmp, schema_file.c_str()) == -1)
292
318
  {
293
319
    if (unlink(schema_file_tmp))
294
 
      sql_perror(schema_file_tmp);
 
320
      perror(schema_file_tmp);
295
321
 
296
322
    return false;
297
323
  }
300
326
}
301
327
 
302
328
 
303
 
bool Schema::readSchemaFile(const drizzled::identifier::Schema &schema_identifier, drizzled::message::Schema &schema)
 
329
bool Schema::readSchemaFile(const std::string &schema_file_name, drizzled::message::Schema &schema_message)
304
330
{
305
 
  return readSchemaFile(schema_identifier.getPath(), schema); 
306
 
}
 
331
  string db_opt_path(schema_file_name);
307
332
 
308
 
bool Schema::readSchemaFile(std::string db_opt_path, drizzled::message::Schema &schema)
309
 
{
310
333
  /*
311
334
    Pass an empty file name, and the database options file name as extension
312
335
    to avoid table name to file name encoding.
323
346
  */
324
347
  if (input.good())
325
348
  {
326
 
    if (schema.ParseFromIstream(&input))
 
349
    if (schema_message.ParseFromIstream(&input))
327
350
    {
328
351
      return true;
329
352
    }
330
353
 
331
354
    my_error(ER_CORRUPT_SCHEMA_DEFINITION, MYF(0), db_opt_path.c_str(),
332
 
             schema.InitializationErrorString().empty() ? "unknown" :  schema.InitializationErrorString().c_str());
 
355
             schema_message.InitializationErrorString().empty() ? "unknown" :  schema_message.InitializationErrorString().c_str());
333
356
  }
334
357
  else
335
358
  {
336
 
    sql_perror(db_opt_path.c_str());
 
359
    perror(db_opt_path.c_str());
337
360
  }
338
361
 
339
362
  return false;
340
363
}
341
364
 
 
365
bool Schema::doCanCreateTable(const drizzled::TableIdentifier &identifier)
 
366
{
 
367
  if (static_cast<const SchemaIdentifier&>(identifier) == TEMPORARY_IDENTIFIER)
 
368
  {
 
369
    return false;
 
370
  }
 
371
 
 
372
  return true;
 
373
}
 
374
 
342
375
void Schema::doGetTableIdentifiers(drizzled::CachedDirectory&,
343
 
                                   const drizzled::identifier::Schema&,
344
 
                                   drizzled::identifier::Table::vector&)
 
376
                                   const drizzled::SchemaIdentifier&,
 
377
                                   drizzled::TableIdentifiers&)
345
378
{
346
379
}