Drizzled Public API Documentation

replication_services.h
00001 /* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
00002  *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
00003  *
00004  *  Copyright (C) 2008-2009 Sun Microsystems, Inc.
00005  *  Copyright (C) 2009-2010 Jay Pipes <jaypipes@gmail.com>
00006  *
00007  *  Authors:
00008  *
00009  *    Jay Pipes <jaypipes@gmail.com>
00010  *
00011  *  This program is free software; you can redistribute it and/or modify
00012  *  it under the terms of the GNU General Public License as published by
00013  *  the Free Software Foundation; version 2 of the License.
00014  *
00015  *  This program is distributed in the hope that it will be useful,
00016  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018  *  GNU General Public License for more details.
00019  *
00020  *  You should have received a copy of the GNU General Public License
00021  *  along with this program; if not, write to the Free Software
00022  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00023  */
00024 
00025 #pragma once
00026 
00027 #include <drizzled/atomics.h>
00028 #include <drizzled/plugin/replication.h>
00029 
00030 #include <string>
00031 #include <vector>
00032 #include <utility>
00033 
00034 #include <drizzled/visibility.h>
00035 #include <drizzled/common_fwd.h>
00036 
00037 namespace drizzled {
00038 
00044 class DRIZZLED_API ReplicationServices
00045 {
00046 public:
00047   typedef uint64_t GlobalTransactionId;
00054   enum MessageType
00055   {
00056     TRANSACTION= 1, /* A GPB Transaction Message */
00057     BLOB= 2 /* A BLOB value */
00058   };
00059   typedef std::pair<plugin::TransactionReplicator *, plugin::TransactionApplier *> ReplicationPair;
00060   typedef std::vector<ReplicationPair> ReplicationStreams;
00073   static bool evaluateRegisteredPlugins();
00081   static plugin::ReplicationReturnCode pushTransactionMessage(Session &in_session, message::Transaction &to_push);
00082 
00088   static bool isActive();
00089 
00093   static ReplicationStreams &getReplicationStreams();
00094 
00101   static void attachReplicator(plugin::TransactionReplicator *in_replicator);
00102   
00109   static void detachReplicator(plugin::TransactionReplicator *in_replicator);
00110   
00118   static void attachApplier(plugin::TransactionApplier *in_applier, const std::string &requested_replicator);
00119   
00126   static void detachApplier(plugin::TransactionApplier *in_applier);
00127 
00132   static uint64_t getLastAppliedTimestamp();
00133 };
00134 
00135 } /* namespace drizzled */
00136