438
int2store(buff, static_cast<uint16_t>(sql_errno));
432
int2store(buff,sql_errno);
441
435
/* The first # is to make the client backward compatible */
443
pos= (unsigned char*) strcpy((char*) buff+3, error::convert_to_sqlstate(sql_errno));
444
pos+= strlen(error::convert_to_sqlstate(sql_errno));
437
pos= (unsigned char*) strcpy((char*) buff+3, drizzle_errno_to_sqlstate(sql_errno));
438
pos+= strlen(drizzle_errno_to_sqlstate(sql_errno));
446
440
char *tmp= strncpy((char*)pos, err, DRIZZLE_ERRMSG_SIZE-1);
447
441
tmp+= strlen((char*)pos);
1017
1012
context("port",
1018
1013
po::value<port_constraint>(&port)->default_value(3306),
1019
_("Port number to use for connection or 0 for default to with MySQL "
1014
N_("Port number to use for connection or 0 for default to with MySQL "
1021
1016
context("connect-timeout",
1022
1017
po::value<timeout_constraint>(&connect_timeout)->default_value(10),
1023
_("Connect Timeout."));
1018
N_("Connect Timeout."));
1024
1019
context("read-timeout",
1025
1020
po::value<timeout_constraint>(&read_timeout)->default_value(30),
1026
_("Read Timeout."));
1021
N_("Read Timeout."));
1027
1022
context("write-timeout",
1028
1023
po::value<timeout_constraint>(&write_timeout)->default_value(60),
1029
_("Write Timeout."));
1024
N_("Write Timeout."));
1030
1025
context("retry-count",
1031
1026
po::value<retry_constraint>(&retry_count)->default_value(10),
1027
N_("Retry Count."));
1033
1028
context("buffer-length",
1034
1029
po::value<buffer_constraint>(&buffer_length)->default_value(16384),
1035
_("Buffer length."));
1030
N_("Buffer length."));
1036
1031
context("bind-address",
1037
1032
po::value<string>()->default_value(""),
1038
_("Address to bind to."));
1033
N_("Address to bind to."));
1039
1034
context("max-connections",
1040
1035
po::value<uint32_t>(&ListenMySQLProtocol::mysql_counters->max_connections)->default_value(1000),
1041
_("Maximum simultaneous connections."));
1036
N_("Maximum simultaneous connections."));
1042
1037
context("admin-ip-addresses",
1043
1038
po::value<vector<string> >()->composing()->notifier(&ClientMySQLProtocol::mysql_compose_ip_addresses),
1044
_("A restrictive IP address list for incoming admin connections."));
1039
N_("A restrictive IP address list for incoming admin connections."));
1042
static int mysql_protocol_connection_count_func(drizzle_show_var *var, char *buff)
1044
var->type= SHOW_LONGLONG;
1046
*((uint64_t *)buff)= ListenMySQLProtocol::mysql_counters->connectionCount;
1050
static int mysql_protocol_connected_count_func(drizzle_show_var *var, char *buff)
1052
var->type= SHOW_LONGLONG;
1054
*((uint64_t *)buff)= ListenMySQLProtocol::mysql_counters->connected;
1058
static int mysql_protocol_failed_count_func(drizzle_show_var *var, char *buff)
1060
var->type= SHOW_LONGLONG;
1062
*((uint64_t *)buff)= ListenMySQLProtocol::mysql_counters->failedConnections;
1066
static st_show_var_func_container mysql_protocol_connection_count=
1067
{ &mysql_protocol_connection_count_func };
1069
static st_show_var_func_container mysql_protocol_connected_count=
1070
{ &mysql_protocol_connected_count_func };
1072
static st_show_var_func_container mysql_protocol_failed_count=
1073
{ &mysql_protocol_failed_count_func };
1075
static drizzle_show_var mysql_protocol_status_variables[]= {
1077
(char*) &mysql_protocol_connection_count, SHOW_FUNC},
1079
(char*) &mysql_protocol_connected_count, SHOW_FUNC},
1080
{"Failed_connections",
1081
(char*) &mysql_protocol_failed_count, SHOW_FUNC},
1082
{NULL, NULL, SHOW_LONGLONG}
1085
MysqlProtocolStatus::Generator::Generator(drizzled::Field **fields) :
1086
plugin::TableFunction::Generator(fields)
1088
status_var_ptr= mysql_protocol_status_variables;
1091
bool MysqlProtocolStatus::Generator::populate()
1093
MY_ALIGNED_BYTE_ARRAY(buff_data, SHOW_VAR_FUNC_BUFF_SIZE, int64_t);
1094
char * const buff= (char *) &buff_data;
1095
drizzle_show_var tmp;
1097
if (status_var_ptr->name)
1099
std::ostringstream oss;
1100
string return_value;
1104
push(status_var_ptr->name);
1106
if (status_var_ptr->type == SHOW_FUNC)
1108
((drizzle_show_var_func)((st_show_var_func_container *)status_var_ptr->value)->func)(&tmp, buff);
1114
value= status_var_ptr->value;
1115
type= status_var_ptr->type;
1121
oss << *(uint64_t*) value;
1122
return_value= oss.str();
1127
if (return_value.length())
1047
1139
} /* namespace drizzle_plugin */