1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 MySQL AB
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; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include <drizzled/error.h>
22
#include <drizzled/session.h>
23
#include "drizzled/internal/m_string.h"
26
using namespace drizzled;
28
class BenchmarkFunction :public Item_int_func
31
BenchmarkFunction() :Item_int_func() {}
33
virtual void print(String *str, enum_query_type query_type);
35
const char *func_name() const
40
void fix_length_and_dec()
46
bool check_argument_count(int n)
53
/* This function is just used to test speed of different functions */
54
int64_t BenchmarkFunction::val_int()
56
assert(fixed == true);
58
char buff[MAX_FIELD_WIDTH];
59
String tmp(buff,sizeof(buff), &my_charset_bin);
60
type::Decimal tmp_decimal;
61
Session *session= current_session;
64
loop_count= (uint64_t) args[0]->val_int();
66
if (args[0]->null_value ||
67
(args[0]->unsigned_flag == false && (((int64_t) loop_count) < 0)))
69
if (args[0]->null_value == false)
71
internal::int64_t10_to_str((int64_t)loop_count, buff, -10);
72
push_warning_printf(current_session, DRIZZLE_ERROR::WARN_LEVEL_ERROR,
73
ER_WRONG_VALUE_FOR_TYPE, ER(ER_WRONG_VALUE_FOR_TYPE),
74
"count", buff, "benchmark");
84
for (loop= 0 ; loop < loop_count && not session->getKilled(); loop++)
86
switch (args[1]->result_type())
89
(void) args[1]->val_real();
92
(void) args[1]->val_int();
95
(void) args[1]->val_str(&tmp);
98
(void) args[1]->val_decimal(&tmp_decimal);
102
// This case should never be chosen
110
void BenchmarkFunction::print(String *str, enum_query_type query_type)
112
str->append(STRING_WITH_LEN("benchmark("));
113
args[0]->print(str, query_type);
115
args[1]->print(str, query_type);
119
plugin::Create_function<BenchmarkFunction> *benchmarkudf= NULL;
121
static int initialize(module::Context &context)
123
benchmarkudf= new plugin::Create_function<BenchmarkFunction>("benchmark");
124
context.add(benchmarkudf);
128
DRIZZLE_DECLARE_PLUGIN
133
"Devananda van der Veen",
134
"Measure time for repeated calls to a function.",
136
initialize, /* Plugin Init */
138
NULL /* config options */
140
DRIZZLE_DECLARE_PLUGIN_END;