~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/binary_log.cc

Small fixes

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; 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
 
1
20
#include <drizzled/global.h>
2
 
#include <drizzled/serialize/binary_log.h>
 
21
#include <drizzled/message/binary_log.h>
3
22
 
4
23
#include <google/protobuf/io/coded_stream.h>
5
24
 
6
 
using namespace google::protobuf;
7
 
using namespace google::protobuf::io;
 
25
using namespace google;
8
26
 
9
27
bool
10
 
BinaryLog::Event::write(CodedOutputStream* out) const
 
28
BinaryLog::Event::write(protobuf::io::CodedOutputStream* out) const
11
29
{
12
30
  // We frame each event in a length encoded in a special manner, and
13
31
  // end it with a CRC-32 checksum.
18
36
  *end++= m_type;
19
37
 
20
38
  char cs[4] = { 0 };                           // !!! No checksum yet
 
39
#if GOOGLE_PROTOBUF_VERSION >= 2001000
 
40
  out->WriteRaw(buf, static_cast<int>(end - buf)); // Length + Type
 
41
  if (out->HadError()
 
42
    || !m_message->SerializeToCodedStream(out)) // Event body
 
43
    return false;
 
44
  out->WriteRaw(cs, sizeof(cs)); // Checksum
 
45
  if (out->HadError())
 
46
    return false;
 
47
#else
21
48
  if (!out->WriteRaw(buf, end - buf) ||         // Length + Type
22
49
      !m_message->SerializeToCodedStream(out) || // Event body
23
50
      !out->WriteRaw(cs, sizeof(cs)))           // Checksum
24
51
    return false;
 
52
#endif
25
53
 
26
54
  return true;
27
55
}
28
56
 
29
57
 
30
58
bool
31
 
BinaryLog::Event::read(CodedInputStream *in)
 
59
BinaryLog::Event::read(protobuf::io::CodedInputStream *in)
32
60
{
33
61
  unsigned char buf[LENGTH_ENCODE_MAX_BYTES + 1];
34
62
 
38
66
 
39
67
  // Read in the rest of the length bytes plus the type
40
68
  size_t bytes= length_decode_bytes(*buf);
41
 
  if (!in->ReadRaw(buf + 1, bytes))
 
69
  if (! in->ReadRaw(buf + 1, static_cast<int>(bytes)))
42
70
    return false;
43
71
 
44
72
  size_t length;
49
77
 
50
78
  // Create the right event based on the type code (is there something
51
79
  // better in the protobuf library?)
52
 
  Message *message= NULL;
 
80
  protobuf::Message *message= NULL;
53
81
  switch (m_type) {
54
82
  case QUERY:
55
83
    message= new BinaryLog::Query;
70
98
  case CHAIN:
71
99
    message= new BinaryLog::Chain;
72
100
    break;
 
101
 
 
102
  case COUNT:
 
103
  case UNDEF:
 
104
    break;
73
105
  }
74
106
 
75
107
  if (!message)
78
110
  // Read the event body as length bytes. It is necessary to limit the
79
111
  // stream since otherwise ParseFromCodedStream reads all bytes of
80
112
  // the stream.
81
 
  CodedInputStream::Limit limit= in->PushLimit(length);
 
113
  protobuf::io::CodedInputStream::Limit limit= in->PushLimit(static_cast<int>(length));
82
114
  if (!message->ParseFromCodedStream(in))
83
115
    return false;
84
116
  in->PopLimit(limit);
102
134
void
103
135
BinaryLog::Event::print(std::ostream& out) const
104
136
{
105
 
  using namespace google::protobuf;
106
 
 
107
137
  switch (m_type) {
108
138
  case QUERY:
109
139
  {
110
140
    Query *event= static_cast<Query*>(m_message);
111
141
    print_common(out, event);
112
 
    for (RepeatedPtrField<Query::Variable>::const_iterator ii= event->variable().begin() ;
 
142
    for (protobuf::RepeatedPtrField<Query::Variable>::const_iterator ii=
 
143
           event->variable().begin() ;
113
144
         ii != event->variable().end() ;
114
145
         ++ii)
115
146
    {
116
 
      out << "set @" << ii->name() << " = '" << ii->value() << "'\n";
 
147
      out << "set @" << ii->name() << " = '" << ii->val() << "'\n";
117
148
    }
118
149
    out << event->query() << std::endl;
119
150
    break;
155
186
    break;                                      /* Nothing */
156
187
  }
157
188
}
 
189