~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/null_client.h

  • Committer: Brian Aker
  • Date: 2009-09-22 07:35:28 UTC
  • mfrom: (971.6.10 eday-dev)
  • Revision ID: brian@gaz-20090922073528-xgm634aomuflqxl3
MergeĀ Eric

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) 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_PLUGIN_NULL_CLIENT_H
 
21
#define DRIZZLED_PLUGIN_NULL_CLIENT_H
 
22
 
 
23
#include <drizzled/plugin/client.h>
 
24
 
 
25
namespace drizzled
 
26
{
 
27
namespace plugin
 
28
{
 
29
 
 
30
/**
 
31
 * This class is an empty client implementation for internal used.
 
32
 */
 
33
class NullClient: public Client
 
34
{
 
35
public:
 
36
  virtual int getFileDescriptor(void) { return -1; }
 
37
  virtual bool isConnected(void) { return true; }
 
38
  virtual bool isReading(void) { return false; }
 
39
  virtual bool isWriting(void) { return false; }
 
40
  virtual bool flush(void) { return false; }
 
41
  virtual void close(void) {}
 
42
  virtual bool authenticate(void) { return true; }
 
43
  virtual bool readCommand(char **packet, uint32_t *packet_length)
 
44
  {
 
45
    (void) packet;
 
46
    (void) packet_length;
 
47
    return false;
 
48
  }
 
49
  virtual void sendOK(void) {}
 
50
  virtual void sendEOF(void) {}
 
51
  virtual void sendError(uint32_t sql_errno, const char *err)
 
52
  {
 
53
    (void) sql_errno;
 
54
    (void) err;
 
55
  }
 
56
  virtual bool sendFields(List<Item> *list)
 
57
  {
 
58
    (void) list;
 
59
    return false;
 
60
  }
 
61
  using Client::store;
 
62
  virtual bool store(Field *from)
 
63
  {
 
64
    (void) from;
 
65
    return false;
 
66
  }
 
67
  virtual bool store(void) { return false; }
 
68
  virtual bool store(int32_t from)
 
69
  {
 
70
    (void) from;
 
71
    return false;
 
72
  }
 
73
  virtual bool store(uint32_t from)
 
74
  {
 
75
    (void) from;
 
76
    return false;
 
77
  }
 
78
  virtual bool store(int64_t from)
 
79
  {
 
80
    (void) from;
 
81
    return false;
 
82
  }
 
83
  virtual bool store(uint64_t from)
 
84
  {
 
85
    (void) from;
 
86
    return false;
 
87
  }
 
88
  virtual bool store(double from, uint32_t decimals, String *buffer)
 
89
  {
 
90
    (void) from;
 
91
    (void) decimals;
 
92
    (void) buffer;
 
93
    return false;
 
94
  }
 
95
  virtual bool store(const DRIZZLE_TIME *from)
 
96
  {
 
97
    (void) from;
 
98
    return false;
 
99
  }
 
100
  virtual bool store(const char *from, size_t length)
 
101
  {
 
102
    (void) from;
 
103
    (void) length;
 
104
    return false;
 
105
  }
 
106
  virtual bool haveMoreData(void) { return false; }
 
107
  virtual bool haveError(void) { return false; }
 
108
  virtual bool wasAborted(void) { return false; }
 
109
};
 
110
 
 
111
} /* end namespace drizzled::plugin */
 
112
} /* end namespace drizzled */
 
113
 
 
114
#endif /* DRIZZLED_PLUGIN_NULL_CLIENT_H */