~drizzle-trunk/drizzle/development

1273.13.1 by Brian Aker
First pass through data dictionary.
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2009 Sun Microsystems, Inc.
1273.13.1 by Brian Aker
First pass through data dictionary.
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
2234 by Brian Aker
Mass removal of ifdef/endif in favor of pragma once.
21
#pragma once
1273.13.1 by Brian Aker
First pass through data dictionary.
22
23
#include <drizzled/cursor.h>
24
1273.13.55 by Brian Aker
Naming fixes.
25
#include <plugin/function_engine/function.h>
1551 by Brian Aker
This fixes the issue with filesort() possibly crashing on a Function based
26
#include <drizzled/base.h>
1273.13.1 by Brian Aker
First pass through data dictionary.
27
1273.14.5 by Monty Taylor
Merged trunk.
28
class FunctionCursor: public drizzled::Cursor
1273.13.1 by Brian Aker
First pass through data dictionary.
29
{
1273.13.32 by Brian Aker
Big ole patch. This covers moving information_schema to old_* table names
30
  drizzled::plugin::TableFunction *tool;
31
  drizzled::plugin::TableFunction::Generator *generator;
2188.1.1 by Stewart Smith
Replace FunctionCursor row_cache of full rows with one that is the
32
  size_t row_cache_position;
33
  std::vector<unsigned char> row_cache;
1273.13.60 by Brian Aker
Merge with trunk.
34
  drizzled::ha_rows estimate_of_rows;
35
  drizzled::ha_rows rows_returned;
1273.13.1 by Brian Aker
First pass through data dictionary.
36
1552.1.2 by Brian Aker
This 1) fixes issue of reset() 2) uses a better cache design to decrease
37
  void wipeCache();
38
2188.1.1 by Stewart Smith
Replace FunctionCursor row_cache of full rows with one that is the
39
  std::vector <unsigned char> record_buffer; // for pack_row
40
  uint32_t max_row_length();
41
  unsigned int pack_row(const unsigned char *record);
42
1273.13.1 by Brian Aker
First pass through data dictionary.
43
public:
1273.14.5 by Monty Taylor
Merged trunk.
44
  FunctionCursor(drizzled::plugin::StorageEngine &engine,
1869.1.4 by Brian Aker
TableShare is no longer in the house (i.e. we no longer directly have a copy
45
                 drizzled::Table &table_arg);
1273.13.18 by Brian Aker
Update code, first pass through cleaner method for recursing through
46
  ~FunctionCursor() {}
1273.13.1 by Brian Aker
First pass through data dictionary.
47
48
  int open(const char *name, int mode, uint32_t test_if_locked);
49
50
  int close(void);
51
1552.1.2 by Brian Aker
This 1) fixes issue of reset() 2) uses a better cache design to decrease
52
  int reset()
53
  {
54
    return extra(drizzled::HA_EXTRA_RESET_STATE);
55
  }
56
1491.1.10 by Jay Pipes
ha_rnd_init -> startTableScan, rnd_init -> doStartTableScan, ha_rnd_end -> endTableScan, rnd_end -> doEndTableScan
57
  int doStartTableScan(bool scan);
1273.13.1 by Brian Aker
First pass through data dictionary.
58
59
  /* get the next row and copy it into buf */
60
  int rnd_next(unsigned char *buf);
61
62
  /* locate row pointed to by pos, copy it into buf */
63
  int rnd_pos(unsigned char *buf, unsigned char *pos);
64
1491.1.10 by Jay Pipes
ha_rnd_init -> startTableScan, rnd_init -> doStartTableScan, ha_rnd_end -> endTableScan, rnd_end -> doEndTableScan
65
  int doEndTableScan();
1273.13.1 by Brian Aker
First pass through data dictionary.
66
1551 by Brian Aker
This fixes the issue with filesort() possibly crashing on a Function based
67
  int extra(enum drizzled::ha_extra_function);
68
1273.13.1 by Brian Aker
First pass through data dictionary.
69
  /* record position of a record for reordering */
70
  void position(const unsigned char *record);
71
72
  int info(uint32_t flag);
1273.13.60 by Brian Aker
Merge with trunk.
73
74
  /**
75
   * @return an upper bound estimate for the number of rows in the table
76
   */
77
  drizzled::ha_rows estimate_rows_upper_bound()
78
  {
79
    return estimate_of_rows;
80
  }
1377.7.2 by Stewart Smith
make get_auto_increment pure virtual and force engines not supporting auto_increment to be explicit about it
81
82
  void get_auto_increment(uint64_t, uint64_t,
83
                          uint64_t,
84
                          uint64_t *,
85
                          uint64_t *)
86
  {}
1273.13.1 by Brian Aker
First pass through data dictionary.
87
};
88