~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/info_schema/helper_methods.cc

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

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) 2009 Sun Microsystems
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
 
/**
22
 
 * @file 
23
 
 *   Implementation of helper methods for I_S tables.
24
 
 */
25
 
 
26
 
#include "config.h"
27
 
#include "drizzled/session.h"
28
 
#include "drizzled/show.h"
29
 
#include "drizzled/sql_base.h"
30
 
#include "drizzled/plugin/client.h"
31
 
#include "drizzled/join_table.h"
32
 
#include "drizzled/global_charset_info.h"
33
 
#include "drizzled/pthread_globals.h"
34
 
#include "drizzled/internal/m_string.h"
35
 
#include "plugin/myisam/myisam.h" // needed for dflt_key_cache
36
 
#include "helper_methods.h"
37
 
 
38
 
#include <vector>
39
 
#include <string>
40
 
#include <sstream>
41
 
 
42
 
using namespace std;
43
 
using namespace drizzled;
44
 
 
45
 
static inline void make_upper(char *buf)
46
 
{
47
 
  for (; *buf; buf++)
48
 
    *buf= my_toupper(system_charset_info, *buf);
49
 
}
50
 
 
51
 
bool show_status_array(Session *session, 
52
 
                       const char *wild,
53
 
                       SHOW_VAR *variables,
54
 
                       sql_var_t value_type,
55
 
                       struct system_status_var *status_var,
56
 
                       const char *prefix, Table *table,
57
 
                       bool ,
58
 
                       plugin::InfoSchemaTable *schema_table)
59
 
{
60
 
  MY_ALIGNED_BYTE_ARRAY(buff_data, SHOW_VAR_FUNC_BUFF_SIZE, int64_t);
61
 
  char * const buff= (char *) &buff_data;
62
 
  char *prefix_end;
63
 
  /* the variable name should not be longer than 64 characters */
64
 
  char name_buffer[64];
65
 
  int len;
66
 
  SHOW_VAR tmp, *var;
67
 
 
68
 
  prefix_end= strncpy(name_buffer, prefix, sizeof(name_buffer)-1);
69
 
  prefix_end+= strlen(prefix);
70
 
 
71
 
  if (*prefix)
72
 
    *prefix_end++= '_';
73
 
  len=name_buffer + sizeof(name_buffer) - prefix_end;
74
 
 
75
 
  for (; variables->name; variables++)
76
 
  {
77
 
    strncpy(prefix_end, variables->name, len);
78
 
    name_buffer[sizeof(name_buffer)-1]=0;       /* Safety */
79
 
 
80
 
    /*
81
 
      if var->type is SHOW_FUNC, call the function.
82
 
      Repeat as necessary, if new var is again SHOW_FUNC
83
 
    */
84
 
    for (var=variables; var->type == SHOW_FUNC; var= &tmp)
85
 
      ((mysql_show_var_func)((st_show_var_func_container *)var->value)->func)(&tmp, buff);
86
 
 
87
 
    SHOW_TYPE show_type=var->type;
88
 
    if (show_type == SHOW_ARRAY)
89
 
    {
90
 
      show_status_array(session, wild, (SHOW_VAR *) var->value, value_type,
91
 
                        status_var, name_buffer, table, false, schema_table);
92
 
    }
93
 
    else
94
 
    {
95
 
      if (!(wild && wild[0] && wild_case_compare(system_charset_info,
96
 
                                                 name_buffer, wild)))
97
 
      {
98
 
        char *value=var->value;
99
 
        const char *pos, *end;                  // We assign a lot of const's
100
 
        pthread_mutex_lock(&LOCK_global_system_variables);
101
 
 
102
 
        if (show_type == SHOW_SYS)
103
 
        {
104
 
          show_type= ((sys_var*) value)->show_type();
105
 
          value= (char*) ((sys_var*) value)->value_ptr(session, value_type,
106
 
                                                       &null_lex_str);
107
 
        }
108
 
 
109
 
        pos= end= buff;
110
 
        /*
111
 
          note that value may be == buff. All SHOW_xxx code below
112
 
          should still work in this case
113
 
        */
114
 
        switch (show_type) {
115
 
        case SHOW_DOUBLE_STATUS:
116
 
          value= ((char *) status_var + (ulong) value);
117
 
          /* fall through */
118
 
        case SHOW_DOUBLE:
119
 
          /* 6 is the default precision for '%f' in sprintf() */
120
 
          end= buff + internal::my_fcvt(*(double *) value, 6, buff, NULL);
121
 
          break;
122
 
        case SHOW_LONG_STATUS:
123
 
          value= ((char *) status_var + (ulong) value);
124
 
          /* fall through */
125
 
        case SHOW_LONG:
126
 
          end= internal::int10_to_str(*(long*) value, buff, 10);
127
 
          break;
128
 
        case SHOW_LONGLONG_STATUS:
129
 
          value= ((char *) status_var + (uint64_t) value);
130
 
          /* fall through */
131
 
        case SHOW_LONGLONG:
132
 
          end= internal::int64_t10_to_str(*(int64_t*) value, buff, 10);
133
 
          break;
134
 
        case SHOW_SIZE:
135
 
          {
136
 
            stringstream ss (stringstream::in);
137
 
            ss << *(size_t*) value;
138
 
 
139
 
            string str= ss.str();
140
 
            strncpy(buff, str.c_str(), str.length());
141
 
            end= buff+ str.length();
142
 
          }
143
 
          break;
144
 
        case SHOW_HA_ROWS:
145
 
          end= internal::int64_t10_to_str((int64_t) *(ha_rows*) value, buff, 10);
146
 
          break;
147
 
        case SHOW_BOOL:
148
 
          end+= sprintf(buff,"%s", *(bool*) value ? "ON" : "OFF");
149
 
          break;
150
 
        case SHOW_MY_BOOL:
151
 
          end+= sprintf(buff,"%s", *(bool*) value ? "ON" : "OFF");
152
 
          break;
153
 
        case SHOW_INT:
154
 
        case SHOW_INT_NOFLUSH: // the difference lies in refresh_status()
155
 
          end= internal::int10_to_str((long) *(uint32_t*) value, buff, 10);
156
 
          break;
157
 
        case SHOW_CHAR:
158
 
        {
159
 
          if (!(pos= value))
160
 
            pos= "";
161
 
          end= strchr(pos, '\0');
162
 
          break;
163
 
        }
164
 
       case SHOW_CHAR_PTR:
165
 
        {
166
 
          if (!(pos= *(char**) value))
167
 
            pos= "";
168
 
          end= strchr(pos, '\0');
169
 
          break;
170
 
        }
171
 
        case SHOW_KEY_CACHE_LONG:
172
 
          value= (char*) dflt_key_cache + (ulong)value;
173
 
          end= internal::int10_to_str(*(long*) value, buff, 10);
174
 
          break;
175
 
        case SHOW_KEY_CACHE_LONGLONG:
176
 
          value= (char*) dflt_key_cache + (ulong)value;
177
 
          end= internal::int64_t10_to_str(*(int64_t*) value, buff, 10);
178
 
          break;
179
 
        case SHOW_UNDEF:
180
 
          break;                                        // Return empty string
181
 
        case SHOW_SYS:                                  // Cannot happen
182
 
        default:
183
 
          assert(0);
184
 
          break;
185
 
        }
186
 
        table->restoreRecordAsDefault();
187
 
        table->setWriteSet(0);
188
 
        table->setWriteSet(1);
189
 
        table->setWriteSet(2);
190
 
        table->field[0]->store(name_buffer, strlen(name_buffer),
191
 
                               system_charset_info);
192
 
        table->field[1]->store(pos, (uint32_t) (end - pos), system_charset_info);
193
 
        table->field[1]->set_notnull();
194
 
 
195
 
        pthread_mutex_unlock(&LOCK_global_system_variables);
196
 
 
197
 
        schema_table->addRow(table->record[0], table->s->reclength);
198
 
      }
199
 
    }
200
 
  }
201
 
 
202
 
  return false;
203
 
}
204
 
 
205
 
void store_key_column_usage(Table *table, 
206
 
                            LEX_STRING *db_name,
207
 
                            LEX_STRING *table_name, 
208
 
                            const char *key_name,
209
 
                            uint32_t key_len, 
210
 
                            const char *con_type, 
211
 
                            uint32_t con_len,
212
 
                            int64_t idx)
213
 
{
214
 
  const CHARSET_INFO * const cs= system_charset_info;
215
 
  /* set the appropriate bits in the write bitset */
216
 
  table->setWriteSet(1);
217
 
  table->setWriteSet(2);
218
 
  table->setWriteSet(4);
219
 
  table->setWriteSet(5);
220
 
  table->setWriteSet(6);
221
 
  table->setWriteSet(7);
222
 
  table->field[1]->store(db_name->str, db_name->length, cs);
223
 
  table->field[2]->store(key_name, key_len, cs);
224
 
  table->field[4]->store(db_name->str, db_name->length, cs);
225
 
  table->field[5]->store(table_name->str, table_name->length, cs);
226
 
  table->field[6]->store(con_type, con_len, cs);
227
 
  table->field[7]->store((int64_t) idx, true);
228
 
}
229
 
 
230
 
/*
231
 
 * Function object used for deleting the memory allocated
232
 
 * for the columns contained with the vector of columns.
233
 
 */
234
 
class DeleteColumns
235
 
{
236
 
public:
237
 
  template<typename T>
238
 
  inline void operator()(const T *ptr) const
239
 
  {
240
 
    delete ptr;
241
 
  }
242
 
};
243
 
 
244
 
void clearColumns(vector<const drizzled::plugin::ColumnInfo *> &cols)
245
 
{
246
 
  for_each(cols.begin(), cols.end(), DeleteColumns());
247
 
  cols.clear();
248
 
}