akmhoque | 66e6618 | 2014-02-21 17:56:03 -0600 | [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> |
| 19 | * Chaoyi Bian <bcy@pku.edu.cn> |
| 20 | * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 21 | */ |
| 22 | |
| 23 | #ifndef SYNC_FULL_STATE_H |
| 24 | #define SYNC_FULL_STATE_H |
| 25 | |
| 26 | #include <ndn-cpp-dev/util/time.hpp> |
| 27 | #include "sync-state.h" |
| 28 | |
| 29 | namespace Sync { |
| 30 | |
| 31 | class FullState; |
| 32 | typedef boost::shared_ptr<FullState> FullStatePtr; |
| 33 | typedef boost::shared_ptr<FullState> FullStateConstPtr; |
| 34 | |
| 35 | |
| 36 | /** |
| 37 | * \ingroup sync |
| 38 | * @brief Cumulative SYNC state |
| 39 | */ |
| 40 | class FullState : public State |
| 41 | { |
| 42 | public: |
| 43 | /** |
| 44 | * @brief Default constructor |
| 45 | */ |
| 46 | FullState (); |
| 47 | virtual ~FullState (); |
| 48 | |
| 49 | /** |
| 50 | * @brief Get time period since last state update |
| 51 | * |
| 52 | * This value can be used to randomize reconciliation waiting time in SyncApp |
| 53 | */ |
akmhoque | 05d5fcf | 2014-04-15 14:58:45 -0500 | [diff] [blame^] | 54 | ndn::time::system_clock::Duration |
akmhoque | 66e6618 | 2014-02-21 17:56:03 -0600 | [diff] [blame] | 55 | getTimeFromLastUpdate () const; |
| 56 | |
| 57 | /** |
| 58 | * @brief Obtain a read-only copy of the digest |
| 59 | * |
| 60 | * If m_digest is 0, then it is automatically created. On every update and removal, m_digest is reset to 0 |
| 61 | */ |
| 62 | DigestConstPtr |
| 63 | getDigest (); |
| 64 | |
| 65 | // from State |
| 66 | virtual boost::tuple<bool/*inserted*/, bool/*updated*/, SeqNo/*oldSeqNo*/> |
| 67 | update (NameInfoConstPtr info, const SeqNo &seq); |
| 68 | |
| 69 | virtual bool |
| 70 | remove (NameInfoConstPtr info); |
| 71 | |
| 72 | private: |
akmhoque | 05d5fcf | 2014-04-15 14:58:45 -0500 | [diff] [blame^] | 73 | ndn::time::system_clock::TimePoint m_lastUpdated; ///< @brief Time when state was updated last time |
akmhoque | 66e6618 | 2014-02-21 17:56:03 -0600 | [diff] [blame] | 74 | DigestPtr m_digest; |
| 75 | }; |
| 76 | |
| 77 | } // Sync |
| 78 | |
| 79 | #endif // SYNC_STATE_H |