~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_protocol.cc

  • Committer: Andrew Hutchings
  • Date: 2011-01-31 14:45:30 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110131144530-omjhyip9frf48d76
Remove old counter tables

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include "mysql_protocol.h"
33
33
#include "mysql_password.h"
34
34
#include "options.h"
35
 
#include "table_function.h"
36
35
 
37
36
#include "drizzled/identifier.h"
38
37
 
986
985
 
987
986
static int init(drizzled::module::Context &context)
988
987
{  
989
 
  context.add(new MysqlProtocolStatus);
990
 
 
991
988
  /* Initialize random seeds for the MySQL algorithm with minimal changes. */
992
989
  time_t seed_time= time(NULL);
993
990
  random_seed1= seed_time % random_max;
1047
1044
          _("A restrictive IP address list for incoming admin connections."));
1048
1045
}
1049
1046
 
1050
 
static int mysql_protocol_connection_count_func(drizzle_show_var *var, char *buff)
1051
 
{
1052
 
  var->type= SHOW_LONGLONG;
1053
 
  var->value= buff;
1054
 
  *((uint64_t *)buff)= ListenMySQLProtocol::mysql_counters->connectionCount;
1055
 
  return 0;
1056
 
}
1057
 
 
1058
 
static int mysql_protocol_connected_count_func(drizzle_show_var *var, char *buff)
1059
 
{
1060
 
  var->type= SHOW_LONGLONG;
1061
 
  var->value= buff;
1062
 
  *((uint64_t *)buff)= ListenMySQLProtocol::mysql_counters->connected;
1063
 
  return 0;
1064
 
}
1065
 
 
1066
 
static int mysql_protocol_failed_count_func(drizzle_show_var *var, char *buff)
1067
 
{
1068
 
  var->type= SHOW_LONGLONG;
1069
 
  var->value= buff;
1070
 
  *((uint64_t *)buff)= ListenMySQLProtocol::mysql_counters->failedConnections;
1071
 
  return 0;
1072
 
}
1073
 
 
1074
 
static st_show_var_func_container mysql_protocol_connection_count=
1075
 
  { &mysql_protocol_connection_count_func };
1076
 
 
1077
 
static st_show_var_func_container mysql_protocol_connected_count=
1078
 
  { &mysql_protocol_connected_count_func };
1079
 
 
1080
 
static st_show_var_func_container mysql_protocol_failed_count=
1081
 
  { &mysql_protocol_failed_count_func };
1082
 
 
1083
 
static drizzle_show_var mysql_protocol_status_variables[]= {
1084
 
  {"Connections",
1085
 
  (char*) &mysql_protocol_connection_count, SHOW_FUNC},
1086
 
  {"Connected",
1087
 
  (char*) &mysql_protocol_connected_count, SHOW_FUNC},
1088
 
  {"Failed_connections",
1089
 
  (char*) &mysql_protocol_failed_count, SHOW_FUNC},
1090
 
  {NULL, NULL, SHOW_LONGLONG}
1091
 
};
1092
 
 
1093
 
MysqlProtocolStatus::Generator::Generator(drizzled::Field **fields) :
1094
 
  plugin::TableFunction::Generator(fields)
1095
 
{
1096
 
  status_var_ptr= mysql_protocol_status_variables;
1097
 
}
1098
 
 
1099
 
bool MysqlProtocolStatus::Generator::populate()
1100
 
{
1101
 
  MY_ALIGNED_BYTE_ARRAY(buff_data, SHOW_VAR_FUNC_BUFF_SIZE, int64_t);
1102
 
  char * const buff= (char *) &buff_data;
1103
 
  drizzle_show_var tmp;
1104
 
 
1105
 
  if (status_var_ptr->name)
1106
 
  {
1107
 
    std::ostringstream oss;
1108
 
    string return_value;
1109
 
    const char *value;
1110
 
    int type;
1111
 
 
1112
 
    push(status_var_ptr->name);
1113
 
 
1114
 
    if (status_var_ptr->type == SHOW_FUNC)
1115
 
    {
1116
 
      ((drizzle_show_var_func)((st_show_var_func_container *)status_var_ptr->value)->func)(&tmp, buff);
1117
 
      value= buff;
1118
 
      type= tmp.type;
1119
 
    }
1120
 
    else
1121
 
    {
1122
 
      value= status_var_ptr->value;
1123
 
      type= status_var_ptr->type;
1124
 
    }
1125
 
 
1126
 
    switch(type)
1127
 
    {
1128
 
    case SHOW_LONGLONG:
1129
 
      oss << *(uint64_t*) value;
1130
 
      return_value= oss.str();
1131
 
      break;
1132
 
    default:
1133
 
      assert(0);
1134
 
    }
1135
 
    if (return_value.length())
1136
 
      push(return_value);
1137
 
    else
1138
 
      push(" ");
1139
 
 
1140
 
    status_var_ptr++;
1141
 
 
1142
 
    return true;
1143
 
  }
1144
 
  return false;
1145
 
}
1146
 
 
1147
1047
} /* namespace drizzle_plugin */
1148
1048
 
1149
1049
DRIZZLE_DECLARE_PLUGIN