62
60
schema_cache_filled(false)
64
62
table_definition_ext= DEFAULT_FILE_EXTENSION;
63
pthread_rwlock_init(&schema_lock, NULL);
69
pthread_rwlock_destroy(&schema_lock);
71
72
void Schema::prime()
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);
77
pthread_rwlock_wrlock(&schema_lock);
77
79
for (CachedDirectory::Entries::iterator fileIter= files.begin();
78
80
fileIter != files.end(); fileIter++)
86
88
if (readSchemaFile(entry->filename, schema_message))
88
identifier::Schema schema_identifier(schema_message.name());
90
SchemaIdentifier schema_identifier(schema_message.name());
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));
93
95
if (ret.second == false)
95
97
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)
101
pthread_rwlock_unlock(&schema_lock);
104
void Schema::doGetSchemaIdentifiers(SchemaIdentifiers &set_of_names)
106
if (not pthread_rwlock_rdlock(&schema_lock))
109
108
for (SchemaCache::iterator iter= schema_cache.begin();
110
109
iter != schema_cache.end();
113
set_of_names.push_back(identifier::Schema((*iter).second->name()));
112
set_of_names.push_back(SchemaIdentifier((*iter).second.name()));
116
mutex.unlock_shared();
114
pthread_rwlock_unlock(&schema_lock);
119
// If for some reason getting a lock should fail, we resort to disk
121
CachedDirectory directory(data_home, CachedDirectory::DIRECTORY);
123
CachedDirectory::Entries files= directory.getEntries();
125
for (CachedDirectory::Entries::iterator fileIter= files.begin();
126
fileIter != files.end(); fileIter++)
128
CachedDirectory::Entry *entry= *fileIter;
129
set_of_names.push_back(entry->filename);
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)
122
SchemaCache::iterator iter= schema_cache.find(schema_identifier.getPath());
124
if (iter != schema_cache.end())
135
if (not pthread_rwlock_rdlock(&schema_lock))
126
schema_message= (*iter).second;
127
mutex.unlock_shared();
137
SchemaCache::iterator iter= schema_cache.find(schema_identifier.getPath());
139
if (iter != schema_cache.end())
141
schema_message.CopyFrom(((*iter).second));
142
pthread_rwlock_unlock(&schema_lock);
145
pthread_rwlock_unlock(&schema_lock);
131
mutex.unlock_shared();
150
// Fail to disk based means
151
return readSchemaFile(schema_identifier.getPath(), schema_message);
137
154
bool Schema::doCreateSchema(const drizzled::message::Schema &schema_message)
139
identifier::Schema schema_identifier(schema_message.name());
156
SchemaIdentifier schema_identifier(schema_message.name());
141
158
if (mkdir(schema_identifier.getPath().c_str(), 0777) == -1)
143
sql_perror(schema_identifier.getPath().c_str());
147
161
if (not writeSchemaFile(schema_identifier, schema_message))
168
if (not pthread_rwlock_wrlock(&schema_lock))
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.
170
pair<SchemaCache::iterator, bool> ret=
171
schema_cache.insert(make_pair(schema_identifier.getPath(), schema_message));
174
if (ret.second == false)
176
abort(); // If this has happened, something really bad is going down.
178
pthread_rwlock_unlock(&schema_lock);
169
bool Schema::doDropSchema(const identifier::Schema &schema_identifier)
184
bool Schema::doDropSchema(const SchemaIdentifier &schema_identifier)
171
message::schema::shared_ptr schema_message;
186
message::Schema schema_message;
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))
183
sql_perror(schema_file.c_str());
198
perror(schema_file.c_str());
187
202
if (unlink(schema_file.c_str()))
189
sql_perror(schema_file.c_str());
204
perror(schema_file.c_str());
193
208
if (rmdir(schema_identifier.getPath().c_str()))
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());
202
boost::unique_lock<boost::shared_mutex> scopedLock(mutex);
203
schema_cache.erase(schema_identifier.getPath());
217
if (not pthread_rwlock_wrlock(&schema_lock))
219
schema_cache.erase(schema_identifier.getPath());
220
pthread_rwlock_unlock(&schema_lock);
208
226
bool Schema::doAlterSchema(const drizzled::message::Schema &schema_message)
210
identifier::Schema schema_identifier(schema_message.name());
228
SchemaIdentifier schema_identifier(schema_message.name());
212
230
if (access(schema_identifier.getPath().c_str(), F_OK))
215
233
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.
235
if (not pthread_rwlock_wrlock(&schema_lock))
237
schema_cache.erase(schema_identifier.getPath());
239
pair<SchemaCache::iterator, bool> ret=
240
schema_cache.insert(make_pair(schema_identifier.getPath(), schema_message));
242
if (ret.second == false)
244
abort(); // If this has happened, something really bad is going down.
247
pthread_rwlock_unlock(&schema_lock);
251
abort(); // This would leave us out of sync, suck.
270
296
db.InitializationErrorString().empty() ? "unknown" : db.InitializationErrorString().c_str());
272
298
if (close(fd) == -1)
273
sql_perror(schema_file_tmp);
299
perror(schema_file_tmp);
275
301
if (unlink(schema_file_tmp))
276
sql_perror(schema_file_tmp);
302
perror(schema_file_tmp);
281
307
if (close(fd) == -1)
283
sql_perror(schema_file_tmp);
309
perror(schema_file_tmp);
285
311
if (unlink(schema_file_tmp))
286
sql_perror(schema_file_tmp);
312
perror(schema_file_tmp);
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)
305
return readSchemaFile(schema_identifier.getPath(), schema);
331
string db_opt_path(schema_file_name);
308
bool Schema::readSchemaFile(std::string db_opt_path, drizzled::message::Schema &schema)
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.
324
347
if (input.good())
326
if (schema.ParseFromIstream(&input))
349
if (schema_message.ParseFromIstream(&input))
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());
336
sql_perror(db_opt_path.c_str());
359
perror(db_opt_path.c_str());
365
bool Schema::doCanCreateTable(const drizzled::TableIdentifier &identifier)
367
if (static_cast<const SchemaIdentifier&>(identifier) == TEMPORARY_IDENTIFIER)
342
375
void Schema::doGetTableIdentifiers(drizzled::CachedDirectory&,
343
const drizzled::identifier::Schema&,
344
drizzled::identifier::Table::vector&)
376
const drizzled::SchemaIdentifier&,
377
drizzled::TableIdentifiers&)