~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/null_client.h

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
class NullClient: public Client
35
35
{
36
36
  typedef std::vector<char> Bytes;
37
 
  typedef std::queue <Bytes> Queue;
 
37
  typedef std::queue<Bytes> Queue;
38
38
  Queue to_execute;
39
39
  bool is_dead;
40
40
  Bytes packet_buffer;
54
54
 
55
55
  virtual bool readCommand(char **packet, uint32_t& packet_length)
56
56
  {
57
 
    while(not to_execute.empty())
 
57
    while (not to_execute.empty())
58
58
    {
59
59
      Queue::value_type next= to_execute.front();
60
 
      packet_buffer.resize(next.size());
61
 
      memcpy(&packet_buffer[0], &next[0], next.size());
62
 
 
 
60
      packet_buffer.assign(next.begin(), next.end());
63
61
      *packet= &packet_buffer[0];
64
 
 
65
62
      packet_length= next.size();
66
 
 
67
63
      to_execute.pop();
68
 
 
69
64
      return true;
70
65
    }
71
66
 
75
70
      packet_length= 1;
76
71
      *packet= &packet_buffer[0];
77
72
      is_dead= true;
78
 
 
79
73
      return true;
80
74
    }
81
75
 
83
77
    return false;
84
78
  }
85
79
 
86
 
  virtual void sendOK(void) {}
87
 
  virtual void sendEOF(void) {}
 
80
  virtual void sendOK() {}
 
81
  virtual void sendEOF() {}
88
82
  virtual void sendError(const drizzled::error_t, const char*) {}
89
83
  virtual void sendFields(List<Item>&) {}
90
84
  virtual void store(Field *) {}
97
91
  virtual void store(const type::Time*) {}
98
92
  virtual void store(const char*) {}
99
93
  virtual void store(const char*, size_t) {}
100
 
  virtual void store(const std::string &) {}
101
 
  virtual bool haveError(void) { return false; }
102
 
  virtual bool wasAborted(void) { return false; }
 
94
  virtual void store(str_ref) {}
 
95
  virtual bool haveError() { return false; }
 
96
  virtual bool wasAborted() { return false; }
103
97
 
104
 
  void pushSQL(const std::string &arg)
 
98
  void pushSQL(str_ref arg)
105
99
  {
106
100
    Bytes byte;
107
101
    typedef boost::tokenizer<boost::escaped_list_separator<char> > Tokenizer;
111
105
    {
112
106
      byte.resize(iter->size() +1); // +1 for the COM_QUERY
113
107
      byte[0]= COM_QUERY;
114
 
      memcpy(&byte[1], iter->c_str(), iter->size());
 
108
      memcpy(&byte[1], iter->data(), iter->size());
115
109
      to_execute.push(byte);
116
110
    }
117
111
  }