Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu> |
Chaoyi Bian | 3e1eb16 | 2012-04-03 16:59:32 -0700 | [diff] [blame] | 19 | * Chaoyi Bian <bcy@pku.edu.cn> |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 20 | * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 21 | */ |
| 22 | |
| 23 | #ifndef SYNC_STATE_H |
| 24 | #define SYNC_STATE_H |
| 25 | |
| 26 | #include "sync-state-leaf-container.h" |
Alexander Afanasyev | 44a5fbe | 2012-03-08 14:15:25 -0800 | [diff] [blame] | 27 | #include <boost/exception/all.hpp> |
Alexander Afanasyev | 750d187 | 2012-03-12 15:33:56 -0700 | [diff] [blame] | 28 | #include "boost/tuple/tuple.hpp" |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 29 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 30 | /** |
| 31 | * \defgroup sync SYNC protocol |
| 32 | * |
| 33 | * Implementation of SYNC protocol |
| 34 | */ |
| 35 | namespace Sync { |
| 36 | |
Alexander Afanasyev | f3c03a9 | 2012-05-09 12:00:37 -0700 | [diff] [blame] | 37 | class State; |
| 38 | typedef boost::shared_ptr<State> StatePtr; |
| 39 | typedef boost::shared_ptr<State> StateConstPtr; |
| 40 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 41 | /** |
| 42 | * \ingroup sync |
| 43 | * @brief Container for state leaves and definition of the abstract interface to work with State objects |
| 44 | */ |
| 45 | class State |
| 46 | { |
| 47 | public: |
Alexander Afanasyev | b5547e3 | 2012-03-01 21:59:38 -0800 | [diff] [blame] | 48 | virtual ~State () { }; |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 49 | |
| 50 | /** |
| 51 | * @brief Add or update leaf to the state tree |
| 52 | * |
| 53 | * @param info name of the leaf |
| 54 | * @param seq sequence number of the leaf |
| 55 | */ |
Alexander Afanasyev | 750d187 | 2012-03-12 15:33:56 -0700 | [diff] [blame] | 56 | virtual boost::tuple<bool/*inserted*/, bool/*updated*/, SeqNo/*oldSeqNo*/> |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 57 | update (NameInfoConstPtr info, const SeqNo &seq) = 0; |
| 58 | |
| 59 | /** |
| 60 | * @brief Remove leaf from the state tree |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 61 | * @param info name of the leaf |
| 62 | */ |
Alexander Afanasyev | e4e2bf7 | 2012-03-12 12:44:54 -0700 | [diff] [blame] | 63 | virtual bool |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 64 | remove (NameInfoConstPtr info) = 0; |
| 65 | |
Alexander Afanasyev | a562532 | 2012-03-06 00:03:41 -0800 | [diff] [blame] | 66 | /** |
| 67 | * @brief Get state leaves |
| 68 | */ |
| 69 | const LeafContainer & |
| 70 | getLeaves () const |
| 71 | { return m_leaves; } |
| 72 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 73 | protected: |
| 74 | LeafContainer m_leaves; |
| 75 | }; |
| 76 | |
Alexander Afanasyev | 44a5fbe | 2012-03-08 14:15:25 -0800 | [diff] [blame] | 77 | /** |
| 78 | * @brief Formats an XML representation of the state |
| 79 | * @param os output stream |
| 80 | * @param state state |
| 81 | * @returns output stream |
| 82 | */ |
| 83 | std::ostream & |
| 84 | operator << (std::ostream &os, const State &state); |
| 85 | |
| 86 | /** |
| 87 | * @brief Parses an XML representation to the state |
Alexander Afanasyev | 172d2b7 | 2012-03-08 23:43:39 -0800 | [diff] [blame] | 88 | * @param in input data stream |
Alexander Afanasyev | 44a5fbe | 2012-03-08 14:15:25 -0800 | [diff] [blame] | 89 | * @param state state |
Alexander Afanasyev | 172d2b7 | 2012-03-08 23:43:39 -0800 | [diff] [blame] | 90 | * @returns input stream |
Alexander Afanasyev | 44a5fbe | 2012-03-08 14:15:25 -0800 | [diff] [blame] | 91 | */ |
Alexander Afanasyev | 44a5fbe | 2012-03-08 14:15:25 -0800 | [diff] [blame] | 92 | std::istream & |
| 93 | operator >> (std::istream &in, State &state); |
| 94 | |
Alexander Afanasyev | c103019 | 2012-03-08 22:21:28 -0800 | [diff] [blame] | 95 | namespace Error { |
Alexander Afanasyev | 44a5fbe | 2012-03-08 14:15:25 -0800 | [diff] [blame] | 96 | /** |
| 97 | * @brief Will be thrown when XML cannot be properly decoded to State |
| 98 | */ |
| 99 | struct SyncXmlDecodingFailure : virtual boost::exception, virtual std::exception { }; |
Alexander Afanasyev | c103019 | 2012-03-08 22:21:28 -0800 | [diff] [blame] | 100 | } |
Alexander Afanasyev | 64d5069 | 2012-03-07 20:48:35 -0800 | [diff] [blame] | 101 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 102 | } // Sync |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 103 | |
| 104 | #endif // SYNC_STATE_H |