~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/replicator.h

  • Committer: Brian Aker
  • Date: 2009-07-11 19:23:04 UTC
  • mfrom: (1089.1.14 merge)
  • Revision ID: brian@gaz-20090711192304-ootijyl5yf9jq9kd
Merge Brian

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-2009 Sun Microsystems
 
5
 *
 
6
 *  Authors:
 
7
 *
 
8
 *    Jay Pipes <joinfu@sun.com>
 
9
 *
 
10
 *  This program is free software; you can redistribute it and/or modify
 
11
 *  it under the terms of the GNU General Public License as published by
 
12
 *  the Free Software Foundation; version 2 of the License.
 
13
 *
 
14
 *  This program is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with this program; if not, write to the Free Software
 
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
22
 */
 
23
 
 
24
#ifndef DRIZZLED_PLUGIN_REPLICATOR_H
 
25
#define DRIZZLED_PLUGIN_REPLICATOR_H
 
26
 
 
27
/**
 
28
 * @file Defines the API for a Replicator.  
 
29
 *
 
30
 * All a replicator does is replicate/reproduce
 
31
 * events, optionally transforming them before sending them off to an applier.
 
32
 *
 
33
 * An applier is responsible for applying events, not a replicator...
 
34
 */
 
35
 
 
36
/* some forward declarations needed */
 
37
namespace drizzled
 
38
{
 
39
  namespace message
 
40
  {
 
41
    class Command;
 
42
  }
 
43
  class Applier;
 
44
}
 
45
 
 
46
namespace drizzled
 
47
{
 
48
namespace plugin
 
49
{
 
50
 
 
51
/**
 
52
 * Class which replicates Command messages
 
53
 */
 
54
class Replicator
 
55
{
 
56
public:
 
57
  Replicator() {}
 
58
  virtual ~Replicator() {}
 
59
  /**
 
60
   * Replicate a Command message to an Applier.
 
61
   *
 
62
   * @note
 
63
   *
 
64
   * It is important to note that memory allocation for the 
 
65
   * supplied pointer is not guaranteed after the completion 
 
66
   * of this function -- meaning the caller can dispose of the
 
67
   * supplied message.  Therefore, replicators and appliers 
 
68
   * implementing an asynchronous replication system must copy
 
69
   * the supplied message to their own controlled memory storage
 
70
   * area.
 
71
   *
 
72
   * @param Command message to be replicated
 
73
   */
 
74
  virtual void replicate(Applier *in_applier, drizzled::message::Command *to_replicate)= 0;
 
75
  /** 
 
76
   * A replicator plugin should override this with its
 
77
   * internal method for determining if it is active or not.
 
78
   */
 
79
  virtual bool isActive() {return false;}
 
80
};
 
81
 
 
82
} /* end namespace drizzled::plugin */
 
83
} /* end namespace drizzled */
 
84
 
 
85
#endif /* DRIZZLED_PLUGIN_REPLICATOR_H */