00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <config.h>
00022 #include <plugin/schema_dictionary/dictionary.h>
00023
00024 using namespace std;
00025 using namespace drizzled;
00026
00027 SchemasTool::SchemasTool() :
00028 DataDictionary("SCHEMAS")
00029 {
00030 add_field("SCHEMA_NAME");
00031 add_field("DEFAULT_COLLATION_NAME");
00032 add_field("SCHEMA_CREATION_TIME");
00033 add_field("SCHEMA_UPDATE_TIME");
00034 add_field("SCHEMA_UUID", plugin::TableFunction::STRING, 36, true);
00035 add_field("SCHEMA_VERSION", plugin::TableFunction::NUMBER, 0, true);
00036 add_field("SCHEMA_USE_COUNT", plugin::TableFunction::NUMBER, 0, true);
00037 add_field("IS_REPLICATED", plugin::TableFunction::BOOLEAN, 0, false);
00038 add_field("SCHEMA_DEFINER", plugin::TableFunction::STRING, 64, true);
00039 }
00040
00041 SchemasTool::Generator::Generator(drizzled::Field **arg) :
00042 DataDictionary::Generator(arg),
00043 schema_generator(getSession())
00044 {
00045 }
00046
00047 bool SchemasTool::Generator::populate()
00048 {
00049 drizzled::message::schema::shared_ptr schema_ptr;
00050 while ((schema_ptr= schema_generator))
00051 {
00052
00053 push(schema_ptr->name());
00054
00055
00056 push(schema_ptr->collation());
00057
00058
00059 time_t time_arg= schema_ptr->creation_timestamp();
00060 char buffer[40];
00061 struct tm tm_buffer;
00062
00063 localtime_r(&time_arg, &tm_buffer);
00064 strftime(buffer, sizeof(buffer), "%a %b %d %H:%M:%S %Y", &tm_buffer);
00065 push(buffer);
00066
00067
00068 time_arg= schema_ptr->update_timestamp();
00069 localtime_r(&time_arg, &tm_buffer);
00070 strftime(buffer, sizeof(buffer), "%a %b %d %H:%M:%S %Y", &tm_buffer);
00071 push(buffer);
00072
00073
00074 push(schema_ptr->uuid());
00075
00076
00077 push(schema_ptr->version());
00078
00079
00080 push(schema_ptr->version());
00081
00082
00083 push(message::is_replicated(*schema_ptr));
00084
00085
00086 if (message::has_definer(*schema_ptr))
00087 {
00088 push(message::definer(*schema_ptr));
00089 }
00090 else
00091 {
00092 push();
00093 }
00094
00095 return true;
00096 }
00097
00098 return false;
00099 }