1475.1.1
by Padraig O'Sullivan
Added interface and various implementations to abstract out the concept of an access method. Also added a factory class for creating an instance of an access method. |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2010 Padraig O'Sullivan
|
|
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 |
#ifndef DRIZZLED_OPTIMIZER_ACCESS_METHOD_H
|
|
22 |
#define DRIZZLED_OPTIMIZER_ACCESS_METHOD_H
|
|
23 |
||
24 |
#include "drizzled/definitions.h" |
|
25 |
#include "drizzled/error.h" |
|
26 |
#include "drizzled/sql_parse.h" |
|
27 |
#include "drizzled/sql_base.h" |
|
28 |
#include "drizzled/show.h" |
|
29 |
||
1475.1.2
by Padraig O'Sullivan
Fixed various compiler errors in access method classes due to forgetting includes. |
30 |
|
31 |
namespace drizzled |
|
32 |
{
|
|
33 |
||
1475.1.1
by Padraig O'Sullivan
Added interface and various implementations to abstract out the concept of an access method. Also added a factory class for creating an instance of an access method. |
34 |
/* Forward declarations */
|
35 |
class Table; |
|
36 |
class JoinTable; |
|
37 |
||
38 |
namespace optimizer |
|
39 |
{
|
|
40 |
||
41 |
/**
|
|
42 |
* @class AccessMethod
|
|
43 |
* @brief Represents an access method
|
|
44 |
*/
|
|
45 |
class AccessMethod |
|
46 |
{
|
|
47 |
public: |
|
48 |
||
49 |
AccessMethod() {} |
|
50 |
||
51 |
virtual ~AccessMethod() {} |
|
52 |
||
53 |
/**
|
|
54 |
* Retrieve statistics relelvant to this access method.
|
|
55 |
*
|
|
56 |
* @param[in] table
|
|
57 |
* @param[in] join_tab
|
|
58 |
* @return true on failure; false on success
|
|
59 |
*/
|
|
60 |
virtual bool getStats(Table *table, |
|
61 |
JoinTable *join_tab)= 0; |
|
62 |
||
63 |
};
|
|
64 |
||
65 |
} /* end namespace optimizer */ |
|
66 |
||
67 |
} /* end namespace drizzled */ |
|
68 |
||
69 |
#endif /* DRIZZLED_OPTIMIZER_ACCESS_METHOD_H */ |