blob: f01e744af0fea8aea432ea9a99b1d6e461d768fa [file] [log] [blame]
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -08001/* -*- 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>
19 * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
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 Afanasyev44a5fbe2012-03-08 14:15:25 -080027#include <boost/exception/all.hpp>
Alexander Afanasyev750d1872012-03-12 15:33:56 -070028#include "boost/tuple/tuple.hpp"
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080029
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080030/**
31 * \defgroup sync SYNC protocol
32 *
33 * Implementation of SYNC protocol
34 */
35namespace Sync {
36
37/**
38 * \ingroup sync
39 * @brief Container for state leaves and definition of the abstract interface to work with State objects
40 */
41class State
42{
43public:
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080044 virtual ~State () { };
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080045
46 /**
47 * @brief Add or update leaf to the state tree
48 *
49 * @param info name of the leaf
50 * @param seq sequence number of the leaf
51 */
Alexander Afanasyev750d1872012-03-12 15:33:56 -070052 virtual boost::tuple<bool/*inserted*/, bool/*updated*/, SeqNo/*oldSeqNo*/>
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080053 update (NameInfoConstPtr info, const SeqNo &seq) = 0;
54
55 /**
56 * @brief Remove leaf from the state tree
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080057 * @param info name of the leaf
58 */
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -070059 virtual bool
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080060 remove (NameInfoConstPtr info) = 0;
61
Alexander Afanasyeva5625322012-03-06 00:03:41 -080062 /**
63 * @brief Get state leaves
64 */
65 const LeafContainer &
66 getLeaves () const
67 { return m_leaves; }
68
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080069protected:
70 LeafContainer m_leaves;
71};
72
Alexander Afanasyev44a5fbe2012-03-08 14:15:25 -080073/**
74 * @brief Formats an XML representation of the state
75 * @param os output stream
76 * @param state state
77 * @returns output stream
78 */
79std::ostream &
80operator << (std::ostream &os, const State &state);
81
82/**
83 * @brief Parses an XML representation to the state
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080084 * @param in input data stream
Alexander Afanasyev44a5fbe2012-03-08 14:15:25 -080085 * @param state state
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080086 * @returns input stream
Alexander Afanasyev44a5fbe2012-03-08 14:15:25 -080087 */
Alexander Afanasyev44a5fbe2012-03-08 14:15:25 -080088std::istream &
89operator >> (std::istream &in, State &state);
90
Alexander Afanasyevc1030192012-03-08 22:21:28 -080091namespace Error {
Alexander Afanasyev44a5fbe2012-03-08 14:15:25 -080092/**
93 * @brief Will be thrown when XML cannot be properly decoded to State
94 */
95struct SyncXmlDecodingFailure : virtual boost::exception, virtual std::exception { };
Alexander Afanasyevc1030192012-03-08 22:21:28 -080096}
Alexander Afanasyev64d50692012-03-07 20:48:35 -080097
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080098} // Sync
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080099
100#endif // SYNC_STATE_H