~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/information_engine/information_cursor.h

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2009 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; 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 PLUGIN_INFORMATION_ENGINE_INFORMATION_CURSOR_H
22
 
#define PLUGIN_INFORMATION_ENGINE_INFORMATION_CURSOR_H
23
 
 
24
 
#include <drizzled/cursor.h>
25
 
#include <drizzled/thr_lock.h>
26
 
 
27
 
#include <drizzled/plugin/info_schema_table.h>
28
 
#include <plugin/information_engine/information_engine.h>
29
 
 
30
 
class InformationCursor: public drizzled::Cursor
31
 
{
32
 
private:
33
 
  drizzled::THR_LOCK_DATA lock;      /* MySQL lock */
34
 
  InformationEngine::Share *share;
35
 
  drizzled::plugin::InfoSchemaTable::Rows::iterator iter;
36
 
 
37
 
public:
38
 
  InformationCursor(drizzled::plugin::StorageEngine &engine,
39
 
                    drizzled::TableShare &table_arg);
40
 
  ~InformationCursor() {}
41
 
 
42
 
  int open(const char *name, int mode, uint32_t test_if_locked);
43
 
 
44
 
  int close(void);
45
 
 
46
 
  int rnd_init(bool scan);
47
 
 
48
 
  /* get the next row and copy it into buf */
49
 
  int rnd_next(unsigned char *buf);
50
 
 
51
 
  /* locate row pointed to by pos, copy it into buf */
52
 
  int rnd_pos(unsigned char *buf, unsigned char *pos);
53
 
 
54
 
  /* record position of a record for reordering */
55
 
  void position(const unsigned char *record);
56
 
 
57
 
  int info(uint32_t flag);
58
 
 
59
 
  /**
60
 
   * @return an upper bound estimate for the number of rows in the table
61
 
   */
62
 
  drizzled::ha_rows estimate_rows_upper_bound()
63
 
  {
64
 
    if (share)
65
 
    {
66
 
      drizzled::plugin::InfoSchemaTable *sch_table= share->getInfoSchemaTable();
67
 
      if (sch_table)
68
 
      {
69
 
        if (! sch_table->getRows().empty())
70
 
        {
71
 
          /* we multiply by 3 here to ensure enough memory is allocated for sort buffers */
72
 
          return (3 * sch_table->getRows().size());
73
 
        }
74
 
      }
75
 
    }
76
 
    return HA_POS_ERROR;
77
 
  }
78
 
};
79
 
 
80
 
#endif /* PLUGIN_INFORMATION_ENGINE_INFORMATION_CURSOR_H */