blob: 7a25c8bc9888287d059cc739ea3e5105bb9fd68e [file] [log] [blame]
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
Alexander Afanasyev8722d872014-07-02 13:00:29 -07003 * Copyright (c) 2012-2014 University of California, Los Angeles
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -08004 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -07005 * This file is part of ChronoSync, synchronization library for distributed realtime
6 * applications for NDN.
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -08007 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -07008 * ChronoSync is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation, either
10 * version 3 of the License, or (at your option) any later version.
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080011 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -070012 * ChronoSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080015 *
Alexander Afanasyev8722d872014-07-02 13:00:29 -070016 * You should have received a copy of the GNU General Public License along with
17 * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author Zhenkai Zhu <http://irl.cs.ucla.edu/~zhenkai/>
20 * @author Chaoyi Bian <bcy@pku.edu.cn>
21 * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html>
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080022 */
23
24#include "sync-full-leaf.h"
25#include <boost/ref.hpp>
26
27using namespace boost;
28
29namespace Sync {
30
31FullLeaf::FullLeaf (NameInfoConstPtr info, const SeqNo &seq)
32 : Leaf (info, seq)
33{
34 updateDigest ();
35}
36
37void
38FullLeaf::updateDigest ()
39{
40 m_digest.reset ();
Alexander Afanasyeve4e2bf72012-03-12 12:44:54 -070041 m_digest << getInfo ()->getDigest () << *getSeq ().getDigest ();
Alexander Afanasyev1fbdcdd2012-03-05 23:14:33 -080042 m_digest.finalize ();
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080043}
44
45// from Leaf
46void
47FullLeaf::setSeq (const SeqNo &seq)
48{
49 Leaf::setSeq (seq);
50 updateDigest ();
51}
52
53} // Sync