blob: 35a0b7cc8eeec7e4394fcee35022a5ab93066218 [file] [log] [blame]
Zhenkai Zhu8d935c82012-03-06 10:44:12 -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_LEAF_H
24#define SYNC_LEAF_H
25#include "sync-ccnx-wrapper.h"
26#include <boost/function.hpp>
27#include <boost/shared_ptr.hpp>
28
29namespace Sync {
30
31/**
32 * \ingroup sync
33 * @brief fetch application data, by default it will try to fetch every piece
34 * of data
35 */
36class AppDataFetch
37{
38public:
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080039 /**
40 * @param dataCallback the callback function to process data
41 */
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080042 AppDataFetch(boost::function<void (boost::shared_ptr<DataBuffer>)>
43 dataCallback);
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080044
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080045 void setDataCallback(boost::function<void (boost::shared_ptr<DataBuffer>)>
46 dataCallback) {m_dataCallback = dataCallback;}
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080047
48 /**
Zhenkai Zhub877e3f2012-03-06 14:02:44 -080049 * @brief fetch data for a certain name prefix
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080050 *
51 * @param prefix the prefix for the data
52 * @param startSeq the start of sequence number range (inclusive)
53 * @param endSeq the end of sequence number range (inclusive)
54 */
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080055 void fetch(string prefix, long startSeq, long endSeq);
56
57private:
58 boost::shared_ptr<CcnxWrapper> ccnxHandle;
59 boost::shared_ptr<boost::function<void (boost::shared_ptr<DataBuffer>)>
60 m_dataCallback;
61};
62
63
64} // Sync
65
66#endif // SYNC_LEAF_H