575.1.3
by Monty Taylor
Moved some stuff out of handler.h. |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2008 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; version 2 of the License.
|
|
9 |
*
|
|
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.
|
|
14 |
*
|
|
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
|
|
18 |
*/
|
|
19 |
||
20 |
#ifndef DRIZZLED_COST_VECT_H
|
|
21 |
#define DRIZZLED_COST_VECT_H
|
|
22 |
||
575.4.7
by Monty Taylor
More header cleanup. |
23 |
#include <stdint.h> |
575.1.3
by Monty Taylor
Moved some stuff out of handler.h. |
24 |
|
25 |
class COST_VECT |
|
26 |
{
|
|
27 |
public: |
|
28 |
double io_count; /* number of I/O */ |
|
29 |
double avg_io_cost; /* cost of an average I/O oper. */ |
|
30 |
double cpu_cost; /* cost of operations in CPU */ |
|
31 |
double mem_cost; /* cost of used memory */ |
|
32 |
double import_cost; /* cost of remote operations */ |
|
33 |
||
34 |
static const uint32_t IO_COEFF=1; |
|
35 |
static const uint32_t CPU_COEFF=1; |
|
36 |
static const uint32_t MEM_COEFF=1; |
|
37 |
static const uint32_t IMPORT_COEFF=1; |
|
38 |
||
39 |
COST_VECT() {} // keep gcc happy |
|
40 |
||
41 |
double total_cost() |
|
42 |
{
|
|
43 |
return IO_COEFF*io_count*avg_io_cost + CPU_COEFF * cpu_cost + |
|
44 |
MEM_COEFF*mem_cost + IMPORT_COEFF*import_cost; |
|
45 |
}
|
|
46 |
||
47 |
void zero() |
|
48 |
{
|
|
49 |
avg_io_cost= 1.0; |
|
50 |
io_count= cpu_cost= mem_cost= import_cost= 0.0; |
|
51 |
}
|
|
52 |
||
53 |
void multiply(double m) |
|
54 |
{
|
|
55 |
io_count *= m; |
|
56 |
cpu_cost *= m; |
|
57 |
import_cost *= m; |
|
58 |
/* Don't multiply mem_cost */
|
|
59 |
}
|
|
60 |
||
61 |
void add(const COST_VECT* cost) |
|
62 |
{
|
|
63 |
double io_count_sum= io_count + cost->io_count; |
|
64 |
add_io(cost->io_count, cost->avg_io_cost); |
|
65 |
io_count= io_count_sum; |
|
66 |
cpu_cost += cost->cpu_cost; |
|
67 |
}
|
|
68 |
void add_io(double add_io_cnt, double add_avg_cost) |
|
69 |
{
|
|
70 |
double io_count_sum= io_count + add_io_cnt; |
|
71 |
avg_io_cost= (io_count * avg_io_cost + |
|
72 |
add_io_cnt * add_avg_cost) / io_count_sum; |
|
73 |
io_count= io_count_sum; |
|
74 |
}
|
|
75 |
};
|
|
76 |
||
77 |
void get_sweep_read_cost(Table *table, ha_rows nrows, bool interrupted, |
|
78 |
COST_VECT *cost); |
|
79 |
||
80 |
#endif /* DRIZZLED_COST_VECT_H */ |