blob: 44b9248ff0a57c763ebc2ac299b1d9dc47e92874 [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>
Chaoyi Bian3e1eb162012-04-03 16:59:32 -070019 * Chaoyi Bian <bcy@pku.edu.cn>
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080020 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
22
23#ifndef SYNC_FULL_STATE_H
24#define SYNC_FULL_STATE_H
25
Zhenkai Zhuea026982012-06-01 16:00:25 -070026#ifdef NS3_MODULE
Alexander Afanasyevb5547e32012-03-01 21:59:38 -080027#include "ns3/nstime.h"
Alexander Afanasyev146a51b2012-03-05 10:47:35 -080028typedef ns3::Time TimeType;
29typedef ns3::Time TimeDurationType;
30#else
31#include <boost/date_time/posix_time/posix_time_types.hpp>
32typedef boost::posix_time::ptime TimeType;
33typedef boost::posix_time::time_duration TimeDurationType;
Zhenkai Zhuea026982012-06-01 16:00:25 -070034#endif // NS3_MODULE
Alexander Afanasyev146a51b2012-03-05 10:47:35 -080035
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080036#include "sync-state.h"
37
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080038namespace Sync {
39
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -070040class FullState;
41typedef boost::shared_ptr<FullState> FullStatePtr;
42typedef boost::shared_ptr<FullState> FullStateConstPtr;
43
44
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080045/**
46 * \ingroup sync
47 * @brief Cumulative SYNC state
48 */
49class FullState : public State
50{
51public:
52 /**
53 * @brief Default constructor
54 */
55 FullState ();
56 virtual ~FullState ();
57
58 /**
59 * @brief Get time period since last state update
60 *
61 * This value can be used to randomize reconciliation waiting time in SyncApp
62 */
Alexander Afanasyev146a51b2012-03-05 10:47:35 -080063 TimeDurationType
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080064 getTimeFromLastUpdate () const;
Alexander Afanasyevd94542d2012-03-05 08:41:46 -080065
66 /**
67 * @brief Obtain a read-only copy of the digest
68 *
69 * If m_digest is 0, then it is automatically created. On every update and removal, m_digest is reset to 0
70 */
71 DigestConstPtr
72 getDigest ();
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080073
74 // from State
Alexander Afanasyev750d1872012-03-12 15:33:56 -070075 virtual boost::tuple<bool/*inserted*/, bool/*updated*/, SeqNo/*oldSeqNo*/>
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080076 update (NameInfoConstPtr info, const SeqNo &seq);
77
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -070078 virtual bool
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080079 remove (NameInfoConstPtr info);
80
81private:
Alexander Afanasyev146a51b2012-03-05 10:47:35 -080082 TimeType m_lastUpdated; ///< @brief Time when state was updated last time
Alexander Afanasyevd94542d2012-03-05 08:41:46 -080083 DigestPtr m_digest;
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080084};
85
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080086} // Sync
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080087
88#endif // SYNC_STATE_H