Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
Alexander Afanasyev | 8722d87 | 2014-07-02 13:00:29 -0700 | [diff] [blame] | 3 | * Copyright (c) 2012-2014 University of California, Los Angeles |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 4 | * |
Alexander Afanasyev | 8722d87 | 2014-07-02 13:00:29 -0700 | [diff] [blame] | 5 | * This file is part of ChronoSync, synchronization library for distributed realtime |
| 6 | * applications for NDN. |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 7 | * |
Alexander Afanasyev | 8722d87 | 2014-07-02 13:00:29 -0700 | [diff] [blame] | 8 | * 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 Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 11 | * |
Alexander Afanasyev | 8722d87 | 2014-07-02 13:00:29 -0700 | [diff] [blame] | 12 | * 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 Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 15 | * |
Alexander Afanasyev | 8722d87 | 2014-07-02 13:00:29 -0700 | [diff] [blame] | 16 | * 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 Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 22 | */ |
Alexander Afanasyev | e00ffbe | 2012-03-05 00:01:36 -0800 | [diff] [blame] | 23 | |
| 24 | #include "sync-diff-leaf.h" |
Alexander Afanasyev | 87c9b5d | 2012-03-07 17:23:21 -0800 | [diff] [blame] | 25 | #include <boost/throw_exception.hpp> |
Yingdi Yu | 7c64e5c | 2014-04-30 14:06:37 -0700 | [diff] [blame] | 26 | typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info; |
Alexander Afanasyev | e00ffbe | 2012-03-05 00:01:36 -0800 | [diff] [blame] | 27 | |
Alexander Afanasyev | c103019 | 2012-03-08 22:21:28 -0800 | [diff] [blame] | 28 | using namespace Sync::Error; |
| 29 | |
Alexander Afanasyev | e00ffbe | 2012-03-05 00:01:36 -0800 | [diff] [blame] | 30 | namespace Sync { |
| 31 | |
| 32 | DiffLeaf::DiffLeaf (NameInfoConstPtr info, const SeqNo &seq) |
| 33 | : Leaf (info, seq) |
| 34 | , m_op (UPDATE) |
| 35 | { |
| 36 | } |
| 37 | |
| 38 | DiffLeaf::DiffLeaf (NameInfoConstPtr info) |
| 39 | : Leaf (info, SeqNo (0,0)) |
| 40 | , m_op (REMOVE) |
| 41 | { |
| 42 | } |
| 43 | |
Alexander Afanasyev | 87c9b5d | 2012-03-07 17:23:21 -0800 | [diff] [blame] | 44 | std::ostream & |
| 45 | operator << (std::ostream &os, Operation op) |
| 46 | { |
| 47 | switch (op) |
| 48 | { |
| 49 | case UPDATE: |
| 50 | os << "update"; |
| 51 | break; |
| 52 | case REMOVE: |
| 53 | os << "remove"; |
| 54 | break; |
| 55 | } |
| 56 | return os; |
| 57 | } |
| 58 | |
| 59 | std::istream & |
| 60 | operator >> (std::istream &is, Operation &op) |
| 61 | { |
| 62 | std::string operation; |
| 63 | is >> operation; |
| 64 | if (operation == "update") |
| 65 | op = UPDATE; |
| 66 | else if (operation == "remove") |
| 67 | op = REMOVE; |
| 68 | else |
| 69 | BOOST_THROW_EXCEPTION (SyncDiffLeafOperationParseError () << errmsg_info (operation)); |
| 70 | |
| 71 | return is; |
| 72 | } |
| 73 | |
| 74 | |
Alexander Afanasyev | e00ffbe | 2012-03-05 00:01:36 -0800 | [diff] [blame] | 75 | } |