blob: 70b54cb439d7aabf1ac2ab6d34fcbe58b50757c9 [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
Zhenkai Zhu1ac6f802012-03-06 17:40:27 -080023#ifndef SYNC_APP_DATA_FETCH_H
24#define SYNC_APP_DATA_FETCH_H
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080025#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 */
Chaoyi Bian3e99d862012-03-07 17:28:32 -080042 AppDataFetch(boost::shared_ptr<CcnxWrapper> ccnxHandle,
43 boost::function<void (std::string)> dataCallback)
44 { m_ccnxHandle = ccnxHandle; m_dataCallback = dataCallback; }
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080045
Chaoyi Bian3e99d862012-03-07 17:28:32 -080046 void setDataCallback(boost::function<void (std::string)> dataCallback)
47 { m_dataCallback = dataCallback; }
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080048
49 /**
Zhenkai Zhub877e3f2012-03-06 14:02:44 -080050 * @brief fetch data for a certain name prefix
Zhenkai Zhu46b26a12012-03-06 13:51:16 -080051 *
52 * @param prefix the prefix for the data
53 * @param startSeq the start of sequence number range (inclusive)
54 * @param endSeq the end of sequence number range (inclusive)
55 */
Chaoyi Bian3e99d862012-03-07 17:28:32 -080056 void fetch(std::string prefix, uint32_t startSeq, uint32_t endSeq);
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080057
58private:
Chaoyi Bian3e99d862012-03-07 17:28:32 -080059 boost::shared_ptr<CcnxWrapper> m_ccnxHandle;
60 boost::function<void (std::string)> m_dataCallback;
Zhenkai Zhu8d935c82012-03-06 10:44:12 -080061};
62
63
64} // Sync
65
Zhenkai Zhu1ac6f802012-03-06 17:40:27 -080066#endif // SYNC_APP_DATA_FETCH_H