~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/replication_services.cc

  • Committer: Brian Aker
  • Date: 2009-08-15 00:59:30 UTC
  • mfrom: (1115.1.7 merge)
  • Revision ID: brian@gaz-20090815005930-q47yenjrq1esiwsz
Merge of Trond + Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
4
 *  Copyright (C) 2008-2009 Sun Microsystems
5
 
 *  Copyright (c) 2009-2010 Jay Pipes <jaypipes@gmail.com>
6
5
 *
7
6
 *  Authors:
8
7
 *
9
 
 *    Jay Pipes <jaypipes@gmail.com>
 
8
 *    Jay Pipes <joinfu@sun.com>
10
9
 *
11
10
 *  This program is free software; you can redistribute it and/or modify
12
11
 *  it under the terms of the GNU General Public License as published by
24
23
 
25
24
/**
26
25
 * @file Server-side utility which is responsible for managing the 
27
 
 * communication between the kernel and the replication plugins:
28
 
 *
29
 
 * - TransactionReplicator
30
 
 * - TransactionApplier
31
 
 * - Publisher
32
 
 * - Subscriber
33
 
 *
34
 
 * ReplicationServices is a bridge between replication modules and the kernel,
35
 
 * and its primary function is to  */
 
26
 * communication between the kernel, replicator plugins, and applier plugins.
 
27
 *
 
28
 * ReplicationServices is a bridge between modules and the kernel, and its
 
29
 * primary function is to take internal events (for instance the start of a 
 
30
 * transaction, the changing of a record, or the rollback of a transaction) 
 
31
 * and construct GPB Messages that are passed to the registered replicator and
 
32
 * applier plugins.
 
33
 *
 
34
 * The reason for this functionality is to encapsulate all communication
 
35
 * between the kernel and the replicator/applier plugins into GPB Messages.
 
36
 * Instead of the plugin having to understand the (often fluidly changing)
 
37
 * mechanics of the kernel, all the plugin needs to understand is the message
 
38
 * format, and GPB messages provide a nice, clear, and versioned format for 
 
39
 * these messages.
 
40
 *
 
41
 * @see /drizzled/message/replication.proto
 
42
 */
36
43
 
37
 
#include "config.h"
 
44
#include "drizzled/server_includes.h"
38
45
#include "drizzled/replication_services.h"
39
 
#include "drizzled/plugin/transaction_replicator.h"
40
 
#include "drizzled/plugin/transaction_applier.h"
41
 
#include "drizzled/message/transaction.pb.h"
 
46
#include "drizzled/plugin/replicator.h"
 
47
#include "drizzled/plugin/applier.h"
 
48
#include "drizzled/message/replication.pb.h"
42
49
#include "drizzled/message/table.pb.h"
43
 
#include "drizzled/message/statement_transform.h"
44
50
#include "drizzled/gettext.h"
45
51
#include "drizzled/session.h"
46
 
#include "drizzled/error.h"
 
52
#include "drizzled/plugin/registry.h"
47
53
 
48
54
#include <vector>
49
55
 
50
 
using namespace std;
 
56
using namespace drizzled;
 
57
 
 
58
ReplicationServices replication_services;
 
59
 
 
60
void add_replicator(plugin::Replicator *replicator)
 
61
{
 
62
  replication_services.attachReplicator(replicator);
 
63
}
 
64
 
 
65
void remove_replicator(plugin::Replicator *replicator)
 
66
{
 
67
  replication_services.detachReplicator(replicator);
 
68
}
 
69
 
 
70
void add_applier(plugin::Applier *applier)
 
71
{
 
72
  replication_services.attachApplier(applier);
 
73
}
 
74
 
 
75
void remove_applier(plugin::Applier *applier)
 
76
{
 
77
  replication_services.detachApplier(applier);
 
78
}
51
79
 
52
80
namespace drizzled
53
81
{
67
95
   */
68
96
  bool tmp_is_active= false;
69
97
 
70
 
  if (replicators.empty() || appliers.empty())
 
98
  if (replicators.size() == 0 || appliers.size() == 0)
71
99
  {
72
100
    is_active= false;
73
101
    return;
78
106
   * replicators are active...if not, set is_active
79
107
   * to false
80
108
   */
81
 
  for (Replicators::iterator repl_iter= replicators.begin();
82
 
       repl_iter != replicators.end();
83
 
       ++repl_iter)
 
109
  std::vector<plugin::Replicator *>::iterator repl_iter= replicators.begin();
 
110
  while (repl_iter != replicators.end())
84
111
  {
85
 
    if ((*repl_iter)->isEnabled())
 
112
    if ((*repl_iter)->isActive())
86
113
    {
87
114
      tmp_is_active= true;
88
115
      break;
89
116
    }
 
117
    ++repl_iter;
90
118
  }
91
119
  if (! tmp_is_active)
92
120
  {
102
130
   * replicators are active...if not, set is_active
103
131
   * to false
104
132
   */
105
 
  for (Appliers::iterator appl_iter= appliers.begin();
106
 
       appl_iter != appliers.end();
107
 
       ++appl_iter)
 
133
  std::vector<plugin::Applier *>::iterator appl_iter= appliers.begin();
 
134
  while (appl_iter != appliers.end())
108
135
  {
109
 
    if ((*appl_iter)->isEnabled())
 
136
    if ((*appl_iter)->isActive())
110
137
    {
111
138
      is_active= true;
112
139
      return;
113
140
    }
 
141
    ++appl_iter;
114
142
  }
115
143
  /* If we get here, there are no active appliers */
116
144
  is_active= false;
117
145
}
118
146
 
119
 
void ReplicationServices::attachReplicator(plugin::TransactionReplicator *in_replicator)
 
147
void ReplicationServices::attachReplicator(plugin::Replicator *in_replicator)
120
148
{
121
149
  replicators.push_back(in_replicator);
122
150
  evaluateActivePlugins();
123
151
}
124
152
 
125
 
void ReplicationServices::detachReplicator(plugin::TransactionReplicator *in_replicator)
 
153
void ReplicationServices::detachReplicator(plugin::Replicator *in_replicator)
126
154
{
127
155
  replicators.erase(std::find(replicators.begin(), replicators.end(), in_replicator));
128
156
  evaluateActivePlugins();
129
157
}
130
158
 
131
 
void ReplicationServices::attachApplier(plugin::TransactionApplier *in_applier)
 
159
void ReplicationServices::attachApplier(plugin::Applier *in_applier)
132
160
{
133
161
  appliers.push_back(in_applier);
134
162
  evaluateActivePlugins();
135
163
}
136
164
 
137
 
void ReplicationServices::detachApplier(plugin::TransactionApplier *in_applier)
 
165
void ReplicationServices::detachApplier(plugin::Applier *in_applier)
138
166
{
139
167
  appliers.erase(std::find(appliers.begin(), appliers.end(), in_applier));
140
168
  evaluateActivePlugins();
145
173
  return is_active;
146
174
}
147
175
 
148
 
void ReplicationServices::pushTransactionMessage(message::Transaction &to_push)
149
 
{
150
 
  vector<plugin::TransactionReplicator *>::iterator repl_iter= replicators.begin();
151
 
  vector<plugin::TransactionApplier *>::iterator appl_start_iter, appl_iter;
 
176
void ReplicationServices::setCommandTransactionContext(message::Command *in_command
 
177
                                                     , Session *in_session) const
 
178
{
 
179
  message::TransactionContext *trx= in_command->mutable_transaction_context();
 
180
  trx->set_server_id(in_session->getServerId());
 
181
  trx->set_transaction_id(in_session->getTransactionId());
 
182
}
 
183
 
 
184
void ReplicationServices::startTransaction(Session *in_session)
 
185
{
 
186
  if (! is_active)
 
187
    return;
 
188
  
 
189
  message::Command command;
 
190
  command.set_type(message::Command::START_TRANSACTION);
 
191
  command.set_timestamp(in_session->getCurrentTimestamp());
 
192
 
 
193
  setCommandTransactionContext(&command, in_session);
 
194
  
 
195
  push(&command);
 
196
}
 
197
 
 
198
void ReplicationServices::commitTransaction(Session *in_session)
 
199
{
 
200
  if (! is_active)
 
201
    return;
 
202
  
 
203
  message::Command command;
 
204
  command.set_type(message::Command::COMMIT);
 
205
  command.set_timestamp(in_session->getCurrentTimestamp());
 
206
 
 
207
  setCommandTransactionContext(&command, in_session);
 
208
  
 
209
  push(&command);
 
210
}
 
211
 
 
212
void ReplicationServices::rollbackTransaction(Session *in_session)
 
213
{
 
214
  if (! is_active)
 
215
    return;
 
216
  
 
217
  message::Command command;
 
218
  command.set_type(message::Command::ROLLBACK);
 
219
  command.set_timestamp(in_session->getCurrentTimestamp());
 
220
 
 
221
  setCommandTransactionContext(&command, in_session);
 
222
  
 
223
  push(&command);
 
224
}
 
225
 
 
226
void ReplicationServices::insertRecord(Session *in_session, Table *in_table)
 
227
{
 
228
  if (! is_active)
 
229
    return;
 
230
 
 
231
  message::Command command;
 
232
  command.set_type(message::Command::INSERT);
 
233
  command.set_timestamp(in_session->getCurrentTimestamp());
 
234
 
 
235
  setCommandTransactionContext(&command, in_session);
 
236
 
 
237
  const char *schema_name= in_table->getShare()->db.str;
 
238
  const char *table_name= in_table->getShare()->table_name.str;
 
239
 
 
240
  command.set_schema(schema_name);
 
241
  command.set_table(table_name);
 
242
 
 
243
  /* 
 
244
   * Now we construct the specialized InsertRecord command inside
 
245
   * the message::Command container...
 
246
   */
 
247
  message::InsertRecord *change_record= command.mutable_insert_record();
 
248
 
 
249
  Field *current_field;
 
250
  Field **table_fields= in_table->field;
 
251
  String *string_value= new (in_session->mem_root) String(ReplicationServices::DEFAULT_RECORD_SIZE);
 
252
  string_value->set_charset(system_charset_info);
 
253
 
 
254
  message::Table::Field *current_proto_field;
 
255
 
 
256
  /* We will read all the table's fields... */
 
257
  in_table->setReadSet();
 
258
 
 
259
  while ((current_field= *table_fields++) != NULL) 
 
260
  {
 
261
    current_proto_field= change_record->add_insert_field();
 
262
    current_proto_field->set_name(std::string(current_field->field_name));
 
263
    current_proto_field->set_type(message::Table::Field::VARCHAR); /* @TODO real types! */
 
264
    string_value= current_field->val_str(string_value);
 
265
    change_record->add_insert_value(std::string(string_value->c_ptr()));
 
266
    string_value->free();
 
267
  }
 
268
  
 
269
  push(&command);
 
270
}
 
271
 
 
272
void ReplicationServices::updateRecord(Session *in_session,
 
273
                                       Table *in_table, 
 
274
                                       const unsigned char *old_record, 
 
275
                                       const unsigned char *new_record)
 
276
{
 
277
  if (! is_active)
 
278
    return;
 
279
  
 
280
  message::Command command;
 
281
  command.set_type(message::Command::UPDATE);
 
282
  command.set_timestamp(in_session->getCurrentTimestamp());
 
283
 
 
284
  setCommandTransactionContext(&command, in_session);
 
285
 
 
286
  const char *schema_name= in_table->getShare()->db.str;
 
287
  const char *table_name= in_table->getShare()->table_name.str;
 
288
 
 
289
  command.set_schema(schema_name);
 
290
  command.set_table(table_name);
 
291
 
 
292
  /* 
 
293
   * Now we construct the specialized UpdateRecord command inside
 
294
   * the message::Command container...
 
295
   */
 
296
  message::UpdateRecord *change_record= command.mutable_update_record();
 
297
 
 
298
  Field *current_field;
 
299
  Field **table_fields= in_table->field;
 
300
  String *string_value= new (in_session->mem_root) String(ReplicationServices::DEFAULT_RECORD_SIZE);
 
301
  string_value->set_charset(system_charset_info);
 
302
 
 
303
  message::Table::Field *current_proto_field;
 
304
 
 
305
  while ((current_field= *table_fields++) != NULL) 
 
306
  {
 
307
    /*
 
308
     * The below really should be moved into the Field API and Record API.  But for now
 
309
     * we do this crazy pointer fiddling to figure out if the current field
 
310
     * has been updated in the supplied record raw byte pointers.
 
311
     */
 
312
    const unsigned char *old_ptr= (const unsigned char *) old_record + (ptrdiff_t) (current_field->ptr - in_table->record[0]); 
 
313
    const unsigned char *new_ptr= (const unsigned char *) new_record + (ptrdiff_t) (current_field->ptr - in_table->record[0]); 
 
314
 
 
315
    uint32_t field_length= current_field->pack_length(); /** @TODO This isn't always correct...check varchar diffs. */
 
316
 
 
317
    if (memcmp(old_ptr, new_ptr, field_length) != 0)
 
318
    {
 
319
      /* Field is changed from old to new */
 
320
      current_proto_field= change_record->add_update_field();
 
321
      current_proto_field->set_name(std::string(current_field->field_name));
 
322
      current_proto_field->set_type(message::Table::Field::VARCHAR); /* @TODO real types! */
 
323
 
 
324
      /* Store the original "read bit" for this field */
 
325
      bool is_read_set= current_field->isReadSet();
 
326
 
 
327
      /* We need to mark that we will "read" this field... */
 
328
      in_table->setReadSet(current_field->field_index);
 
329
 
 
330
      /* Read the string value of this field's contents */
 
331
      string_value= current_field->val_str(string_value);
 
332
 
 
333
      /* 
 
334
       * Reset the read bit after reading field to its original state.  This 
 
335
       * prevents the field from being included in the WHERE clause
 
336
       */
 
337
      current_field->setReadSet(is_read_set);
 
338
 
 
339
      change_record->add_after_value(std::string(string_value->c_ptr()));
 
340
      string_value->free();
 
341
    }
 
342
 
 
343
    /* 
 
344
     * Add the WHERE clause values now...the fields which return true
 
345
     * for isReadSet() are in the WHERE clause.  For tables with no
 
346
     * primary or unique key, all fields will be returned.
 
347
     */
 
348
    if (current_field->isReadSet())
 
349
    {
 
350
      current_proto_field= change_record->add_where_field();
 
351
      current_proto_field->set_name(std::string(current_field->field_name));
 
352
      current_proto_field->set_type(message::Table::Field::VARCHAR); /* @TODO real types! */
 
353
      string_value= current_field->val_str(string_value);
 
354
      change_record->add_where_value(std::string(string_value->c_ptr()));
 
355
      string_value->free();
 
356
    }
 
357
  }
 
358
 
 
359
  push(&command);
 
360
}
 
361
 
 
362
void ReplicationServices::deleteRecord(Session *in_session, Table *in_table)
 
363
{
 
364
  if (! is_active)
 
365
    return;
 
366
  
 
367
  message::Command command;
 
368
  command.set_type(message::Command::DELETE);
 
369
  command.set_timestamp(in_session->getCurrentTimestamp());
 
370
 
 
371
  setCommandTransactionContext(&command, in_session);
 
372
 
 
373
  const char *schema_name= in_table->getShare()->db.str;
 
374
  const char *table_name= in_table->getShare()->table_name.str;
 
375
 
 
376
  command.set_schema(schema_name);
 
377
  command.set_table(table_name);
 
378
 
 
379
  /* 
 
380
   * Now we construct the specialized DeleteRecord command inside
 
381
   * the message::Command container...
 
382
   */
 
383
  message::DeleteRecord *change_record= command.mutable_delete_record();
 
384
 
 
385
  Field *current_field;
 
386
  Field **table_fields= in_table->field;
 
387
  String *string_value= new (in_session->mem_root) String(ReplicationServices::DEFAULT_RECORD_SIZE);
 
388
  string_value->set_charset(system_charset_info);
 
389
 
 
390
  message::Table::Field *current_proto_field;
 
391
 
 
392
  while ((current_field= *table_fields++) != NULL)
 
393
  {
 
394
    /*
 
395
     * Add the WHERE clause values now...the fields which return true
 
396
     * for isReadSet() are in the WHERE clause.  For tables with no
 
397
     * primary or unique key, all fields will be returned.
 
398
     */
 
399
    if (current_field->isReadSet())
 
400
    {
 
401
      current_proto_field= change_record->add_where_field();
 
402
      current_proto_field->set_name(std::string(current_field->field_name));
 
403
      current_proto_field->set_type(message::Table::Field::VARCHAR); /* @TODO real types! */
 
404
      string_value= current_field->val_str(string_value);
 
405
      change_record->add_where_value(std::string(string_value->c_ptr()));
 
406
      string_value->free();
 
407
    }
 
408
  }
 
409
 
 
410
  push(&command);
 
411
}
 
412
 
 
413
void ReplicationServices::rawStatement(Session *in_session, const char *in_query, size_t in_query_len)
 
414
{
 
415
  if (! is_active)
 
416
    return;
 
417
  
 
418
  message::Command command;
 
419
  command.set_type(message::Command::RAW_SQL);
 
420
  command.set_timestamp(in_session->getCurrentTimestamp());
 
421
 
 
422
  setCommandTransactionContext(&command, in_session);
 
423
 
 
424
  std::string query(in_query, in_query_len);
 
425
  command.set_sql(query);
 
426
 
 
427
  push(&command);
 
428
}
 
429
 
 
430
void ReplicationServices::push(message::Command *to_push)
 
431
{
 
432
  std::vector<plugin::Replicator *>::iterator repl_iter= replicators.begin();
 
433
  std::vector<plugin::Applier *>::iterator appl_start_iter, appl_iter;
152
434
  appl_start_iter= appliers.begin();
153
435
 
154
 
  plugin::TransactionReplicator *cur_repl;
155
 
  plugin::TransactionApplier *cur_appl;
 
436
  plugin::Replicator *cur_repl;
 
437
  plugin::Applier *cur_appl;
156
438
 
157
439
  while (repl_iter != replicators.end())
158
440
  {
159
441
    cur_repl= *repl_iter;
160
 
    if (! cur_repl->isEnabled())
 
442
    if (! cur_repl->isActive())
161
443
    {
162
444
      ++repl_iter;
163
445
      continue;
168
450
    {
169
451
      cur_appl= *appl_iter;
170
452
 
171
 
      if (! cur_appl->isEnabled())
 
453
      if (! cur_appl->isActive())
172
454
      {
173
455
        ++appl_iter;
174
456
        continue;
177
459
      cur_repl->replicate(cur_appl, to_push);
178
460
      
179
461
      /* 
180
 
       * We update the timestamp for the last applied Transaction so that
 
462
       * We update the timestamp for the last applied Command so that
181
463
       * publisher plugins can ask the replication services when the
182
 
       * last known applied Transaction was using the getLastAppliedTimestamp()
 
464
       * last known applied Command was using the getLastAppliedTimestamp()
183
465
       * method.
184
466
       */
185
 
      last_applied_timestamp.fetch_and_store(to_push.transaction_context().end_timestamp());
 
467
      last_applied_timestamp.fetch_and_store(to_push->timestamp());
186
468
      ++appl_iter;
187
469
    }
188
470
    ++repl_iter;
189
471
  }
190
472
}
191
473
 
192
 
} /* namespace drizzled */
 
474
} /* end namespace drizzled */