~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client/cached.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 13:16:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705131634-f7g1fjro5slibmdj
Add data_ref.h
Use str_ref for append_identifier

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) 2011 Brian Aker
 
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
#pragma once
 
22
 
 
23
#include <boost/lexical_cast.hpp>
 
24
#include <drizzled/field.h>
 
25
#include <drizzled/plugin/client/concurrent.h>
 
26
#include <drizzled/sql/result_set.h>
 
27
#include <iostream>
 
28
 
 
29
namespace drizzled {
 
30
namespace plugin {
 
31
namespace client {
 
32
 
 
33
class Cached : public Concurrent
 
34
{
 
35
  uint32_t column;
 
36
  uint32_t max_column;
 
37
  sql::ResultSet *_result_set;
 
38
 
 
39
public:
 
40
  Cached(sql::ResultSet &rs) :
 
41
    column(0),
 
42
    max_column(0),
 
43
    _result_set(&rs)
 
44
  {
 
45
  }
 
46
 
 
47
  virtual void sendFields(List<Item>& list)
 
48
  {
 
49
    List<Item>::iterator it(list.begin());
 
50
 
 
51
    column= 0;
 
52
    max_column= 0;
 
53
 
 
54
    while (Item* item= it++)
 
55
    {
 
56
      SendField field;
 
57
      item->make_field(&field);
 
58
      max_column++;
 
59
    }
 
60
    _result_set->setColumnCount(max_column);
 
61
    _result_set->createRow();
 
62
  }
 
63
 
 
64
  virtual void sendError(drizzled::error_t error_code, const char *error_message)
 
65
  {
 
66
    _result_set->pushException(sql::Exception(error_message, error_code));
 
67
  }
 
68
 
 
69
  virtual void checkRowEnd()
 
70
  {
 
71
    if (++column % max_column == 0)
 
72
    {
 
73
      _result_set->createRow();
 
74
    }
 
75
  }
 
76
 
 
77
  using Client::store;
 
78
 
 
79
  virtual void store(Field *from)
 
80
  {
 
81
    if (from->is_null())
 
82
      return store();
 
83
 
 
84
    char buff[MAX_FIELD_WIDTH];
 
85
    String str(buff, sizeof(buff), &my_charset_bin);
 
86
    from->val_str_internal(&str);
 
87
 
 
88
    return store(str.ptr(), str.length());
 
89
  }
 
90
 
 
91
  virtual void store()
 
92
  {
 
93
    _result_set->setColumnNull(currentColumn());
 
94
    checkRowEnd();
 
95
  }
 
96
 
 
97
  virtual void store(int32_t from)
 
98
  {
 
99
    _result_set->setColumn(currentColumn(), boost::lexical_cast<std::string>(from));
 
100
    checkRowEnd();
 
101
  }
 
102
 
 
103
  virtual void store(uint32_t from)
 
104
  {
 
105
    _result_set->setColumn(currentColumn(), boost::lexical_cast<std::string>(from));
 
106
    checkRowEnd();
 
107
  }
 
108
 
 
109
  virtual void store(int64_t from)
 
110
  {
 
111
    _result_set->setColumn(currentColumn(), boost::lexical_cast<std::string>(from));
 
112
    checkRowEnd();
 
113
  }
 
114
 
 
115
  virtual void store(uint64_t from)
 
116
  {
 
117
    _result_set->setColumn(currentColumn(), boost::lexical_cast<std::string>(from));
 
118
    checkRowEnd();
 
119
  }
 
120
 
 
121
  virtual void store(double from, uint32_t decimals, String *buffer)
 
122
  {
 
123
    buffer->set_real(from, decimals, &my_charset_bin);
 
124
    return store(buffer->ptr(), buffer->length());
 
125
  }
 
126
 
 
127
  virtual void store(const char *from, size_t length)
 
128
  {
 
129
    _result_set->setColumn(currentColumn(), std::string(from, length));
 
130
    checkRowEnd();
 
131
  }
 
132
  
 
133
  inline uint32_t currentColumn() const
 
134
  {
 
135
    return column % max_column;
 
136
  }
 
137
};
 
138
 
 
139
} /* namespace client */
 
140
} /* namespace plugin */
 
141
} /* namespace drizzled */
 
142