1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008-2009 Sun Microsystems
5
* Copyright (c) 2010 Jay Pipes
9
* Jay Pipes <jaypipes@gmail.com>
11
* This program is free software; you can redistribute it and/or modify
12
* it under the terms of the GNU General Public License as published by
13
* the Free Software Foundation; version 2 of the License.
15
* This program is distributed in the hope that it will be useful,
16
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
* GNU General Public License for more details.
20
* You should have received a copy of the GNU General Public License
21
* along with this program; if not, write to the Free Software
22
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
#ifndef DRIZZLED_PLUGIN_TRANSACTION_APPLIER_H
26
#define DRIZZLED_PLUGIN_TRANSACTION_APPLIER_H
29
* @file Defines the API for a TransactionApplier
31
* A TransactionApplier applies an event it has received from a TransactionReplicator (via
32
* a replicator's replicate() call, or it has read using a TransactionReader's read()
36
#include "drizzled/plugin/plugin.h"
37
#include "drizzled/plugin/replication.h"
44
namespace message { class Transaction; }
50
* Base class for appliers of Transaction messages
52
class TransactionApplier : public Plugin
55
TransactionApplier(const TransactionApplier &);
56
TransactionApplier& operator=(const TransactionApplier &);
58
explicit TransactionApplier(std::string name_arg)
59
: Plugin(name_arg, "TransactionApplier")
62
virtual ~TransactionApplier() {}
64
* Apply something to a target.
68
* It is important to note that memory allocation for the
69
* supplied pointer is not guaranteed after the completion
70
* of this function -- meaning the caller can dispose of the
71
* supplied message. Therefore, appliers which are
72
* implementing an asynchronous replication system must copy
73
* the supplied message to their own controlled memory storage
76
* @param Transaction message to be replicated
78
virtual ReplicationReturnCode apply(Session &in_session,
79
const message::Transaction &to_apply)= 0;
81
static bool addPlugin(TransactionApplier *applier);
82
static void removePlugin(TransactionApplier *applier);
85
} /* namespace plugin */
86
} /* namespace drizzled */
88
#endif /* DRIZZLED_PLUGIN_TRANSACTION_APPLIER_H */