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
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; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
* Defines the API of the default serial event log.
26
* @see drizzled/plugin/replicator.h
27
* @see drizzled/plugin/applier.h
31
* The SerialEventLog applies events it receives from the TransactionServices
32
* server component to a simple log file on disk.
34
* Events are received in no guaranteed order and the serial event log
35
* is in charge of writing these events to the log as they are received.
38
#ifndef DRIZZLE_PLUGIN_SERIAL_EVENT_LOG_H
39
#define DRIZZLE_PLUGIN_SERIAL_EVENT_LOG_H
41
#include <drizzled/server_includes.h>
42
#include <drizzled/atomics.h>
43
#include <drizzled/plugin/replicator.h>
44
#include <drizzled/plugin/applier.h>
49
class SerialEventLog: public drizzled::plugin::Applier
55
OFFLINE= 0, /* Default state, uninited. */
60
int log_file; /**< Handle for our log file */
61
pthread_mutex_t lock; /**< Lock for entire log */
62
enum status state; /**< The state the log is in */
63
bool is_active; /**< Internal toggle. If true, log was initialized properly... */
64
const char *log_file_path;
66
SerialEventLog(const char *in_log_file_path);
72
* Applies a Command to the serial log
76
* It is important to note that memory allocation for the
77
* supplied pointer is not guaranteed after the completion
78
* of this function -- meaning the caller can dispose of the
79
* supplied message. Therefore, appliers which are
80
* implementing an asynchronous replication system must copy
81
* the supplied message to their own controlled memory storage
84
* @param Command message to be replicated
86
void apply(drizzled::message::Command *to_apply);
89
* Returns whether the serial event log is active.
94
* Returns the state that the log is in
96
inline enum status getState()
102
#endif /* DRIZZLE_PLUGIN_SERIAL_EVENT_LOG_H */