~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/table_cache_dictionary/table_cache.cc

  • Committer: Brian Aker
  • Date: 2010-03-15 21:50:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1343.
  • Revision ID: brian@gaz-20100315215005-oqoblpbll9n0albj
Merge of table cache/def DD.

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/table_cache_dictionary/dictionary.h"
 
24
#include "drizzled/pthread_globals.h"
 
25
#include "drizzled/my_hash.h"
 
26
 
 
27
using namespace drizzled;
 
28
using namespace std;
 
29
 
 
30
table_cache_dictionary::TableCache::TableCache() :
 
31
  plugin::TableFunction("DATA_DICTIONARY", "TABLE_CACHE")
 
32
{
 
33
  add_field("SESSION_ID", plugin::TableFunction::NUMBER);
 
34
  add_field("TABLE_SCHEMA");
 
35
  add_field("TABLE_NAME");
 
36
  add_field("ARCHETYPE");
 
37
  add_field("ENGINE");
 
38
  add_field("VERSION", plugin::TableFunction::NUMBER);
 
39
  add_field("IS_NAME_LOCKED", plugin::TableFunction::BOOLEAN);
 
40
  add_field("ROWS", plugin::TableFunction::NUMBER);
 
41
  add_field("AVG_ROW_LENGTH", plugin::TableFunction::NUMBER);
 
42
  add_field("TABLE_SIZE", plugin::TableFunction::NUMBER);
 
43
  add_field("AUTO_INCREMENT", plugin::TableFunction::NUMBER);
 
44
}
 
45
 
 
46
table_cache_dictionary::TableCache::Generator::Generator(drizzled::Field **arg) :
 
47
  drizzled::plugin::TableFunction::Generator(arg),
 
48
  is_primed(false)
 
49
{
 
50
  pthread_mutex_lock(&LOCK_open); /* Optionally lock for remove tables from open_cahe if not in use */
 
51
 
 
52
  drizzled::HASH *open_cache=
 
53
    get_open_cache();
 
54
 
 
55
  for (uint32_t idx= 0; idx < open_cache->records; idx++ )
 
56
  {
 
57
    table= (Table*) hash_element(open_cache, idx);
 
58
    table_list.push_back(table);
 
59
  }
 
60
  std::sort(table_list.begin(), table_list.end(), Table::compare);
 
61
}
 
62
 
 
63
table_cache_dictionary::TableCache::Generator::~Generator()
 
64
{
 
65
  pthread_mutex_unlock(&LOCK_open); /* Optionally lock for remove tables from open_cahe if not in use */
 
66
}
 
67
 
 
68
bool table_cache_dictionary::TableCache::Generator::nextCore()
 
69
{
 
70
  if (is_primed)
 
71
  {
 
72
    table_list_iterator++;
 
73
  }
 
74
  else
 
75
  {
 
76
    is_primed= true;
 
77
    table_list_iterator= table_list.begin();
 
78
  }
 
79
 
 
80
  if (table_list_iterator == table_list.end())
 
81
    return false;
 
82
 
 
83
  table= *table_list_iterator;
 
84
 
 
85
  return true;
 
86
}
 
87
 
 
88
bool table_cache_dictionary::TableCache::Generator::next()
 
89
{
 
90
  while (not nextCore())
 
91
  {
 
92
    if (table_list_iterator != table_list.end())
 
93
      continue;
 
94
 
 
95
    return false;
 
96
  }
 
97
 
 
98
  return true;
 
99
}
 
100
 
 
101
bool table_cache_dictionary::TableCache::Generator::populate()
 
102
{
 
103
  if (not next())
 
104
    return false;
 
105
  
 
106
  fill();
 
107
 
 
108
  return true;
 
109
}
 
110
 
 
111
void table_cache_dictionary::TableCache::Generator::fill()
 
112
{
 
113
  /**
 
114
    For test cases use:
 
115
    --replace_column 1 #  6 # 8 # 9 # 10 # 11 #
 
116
  */
 
117
 
 
118
  /* SESSION_ID 1 */
 
119
  if (table->getSession())
 
120
    push(table->getSession()->getSessionId());
 
121
  else
 
122
    push(static_cast<int64_t>(0));
 
123
 
 
124
  /* TABLE_SCHEMA 2 */
 
125
  push(table->getShare()->getSchemaName());
 
126
 
 
127
  /* TABLE_NAME  3 */
 
128
  push(table->getShare()->getTableName());
 
129
 
 
130
  /* ARCHETYPE  4 */
 
131
  push(table->getShare()->getTableTypeAsString());
 
132
 
 
133
  /* ENGINE 5 */
 
134
  push(table->getEngine()->getName());
 
135
 
 
136
  /* VERSION 6 */
 
137
  push(static_cast<int64_t>(table->getShare()->version));
 
138
 
 
139
  /* IS_NAME_LOCKED 7 */
 
140
  push(table->getShare()->isNameLock());
 
141
 
 
142
  /* ROWS 8 */
 
143
  push(static_cast<uint64_t>(table->getCursor().records()));
 
144
 
 
145
  /* AVG_ROW_LENGTH 9 */
 
146
  push(table->getCursor().rowSize());
 
147
 
 
148
  /* TABLE_SIZE 10 */
 
149
  push(table->getCursor().tableSize());
 
150
 
 
151
  /* AUTO_INCREMENT 11 */
 
152
  push(table->getCursor().getNextInsertId());
 
153
}