blob: 7fbbfa60c8e24490f404e0720e0be2b50c673c43 [file] [log] [blame]
Zhenkai Zhu6cc2c812012-03-05 19:48:46 -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>
Chaoyi Bian3e1eb162012-04-03 16:59:32 -070019 * Chaoyi Bian <bcy@pku.edu.cn>
Zhenkai Zhu6cc2c812012-03-05 19:48:46 -080020 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080022
23#include "sync-ccnx-wrapper.h"
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070024#include "sync-log.h"
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080025#include <poll.h>
Zhenkai Zhu009ff792012-03-09 12:37:52 -080026#include <boost/throw_exception.hpp>
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070027#include <boost/date_time/posix_time/posix_time.hpp>
28
Chaoyi Bian95a58c32012-03-09 15:43:59 -080029typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str;
Alexander Afanasyev387ac952012-03-11 23:49:27 -070030typedef boost::error_info<struct tag_errmsg, int> errmsg_info_int;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080031
32using namespace std;
33using namespace boost;
34
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070035INIT_LOGGER ("CcnxWrapper");
36
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080037namespace Sync {
38
Alexander Afanasyev2247b302012-03-14 14:11:54 -070039#ifdef _DEBUG_WRAPPER_
40CcnxWrapper::CcnxWrapper(char c)
41#else
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080042CcnxWrapper::CcnxWrapper()
Alexander Afanasyev2247b302012-03-14 14:11:54 -070043#endif
Alexander Afanasyev1285b382012-03-08 16:40:27 -080044 : m_handle (0)
45 , m_keyStore (0)
46 , m_keyLoactor (0)
47 , m_running (true)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080048{
Alexander Afanasyev2247b302012-03-14 14:11:54 -070049#ifdef _DEBUG_WRAPPER_
50 m_c = c;
51#endif
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070052 m_handle = ccn_create ();
Alexander Afanasyev2c180772012-03-13 23:58:46 -070053 initKeyStore ();
54 createKeyLocator ();
Chaoyi Bian95a58c32012-03-09 15:43:59 -080055 if (ccn_connect(m_handle, NULL) < 0)
56 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("connection to ccnd failed"));
Alexander Afanasyev1285b382012-03-08 16:40:27 -080057 m_thread = thread (&CcnxWrapper::ccnLoop, this);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080058}
59
60CcnxWrapper::~CcnxWrapper()
61{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070062 // std::cout << "CcnxWrapper::~CcnxWrapper()" << std::endl;
63 {
64 recursive_mutex::scoped_lock lock(m_mutex);
65 m_running = false;
66 }
67
68 m_thread.join ();
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080069 ccn_disconnect (m_handle);
Alexander Afanasyev2c180772012-03-13 23:58:46 -070070 ccn_destroy (&m_handle);
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080071 ccn_charbuf_destroy (&m_keyLoactor);
72 ccn_keystore_destroy (&m_keyStore);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080073}
74
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080075/// @cond include_hidden
76
77void
78CcnxWrapper::createKeyLocator ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080079{
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080080 m_keyLoactor = ccn_charbuf_create();
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080081 ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_KeyLocator, CCN_DTAG);
82 ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_Key, CCN_DTAG);
83 int res = ccn_append_pubkey_blob (m_keyLoactor, ccn_keystore_public_key(m_keyStore));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080084 if (res >= 0)
Alexander Afanasyev1285b382012-03-08 16:40:27 -080085 {
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080086 ccn_charbuf_append_closer (m_keyLoactor); /* </Key> */
87 ccn_charbuf_append_closer (m_keyLoactor); /* </KeyLocator> */
Alexander Afanasyev1285b382012-03-08 16:40:27 -080088 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080089}
90
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080091const ccn_pkey*
92CcnxWrapper::getPrivateKey ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080093{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080094 return ccn_keystore_private_key (m_keyStore);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080095}
96
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080097const unsigned char*
98CcnxWrapper::getPublicKeyDigest ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080099{
100 return ccn_keystore_public_key_digest(m_keyStore);
101}
102
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800103ssize_t
104CcnxWrapper::getPublicKeyDigestLength ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800105{
106 return ccn_keystore_public_key_digest_length(m_keyStore);
107}
108
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800109void
110CcnxWrapper::initKeyStore ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800111{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800112 m_keyStore = ccn_keystore_create ();
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800113 string keyStoreFile = string(getenv("HOME")) + string("/.ccnx/.ccnx_keystore");
114 if (ccn_keystore_init (m_keyStore, (char *)keyStoreFile.c_str(), (char*)"Th1s1sn0t8g00dp8ssw0rd.") < 0)
115 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str(keyStoreFile.c_str()));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800116}
117
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800118void
119CcnxWrapper::ccnLoop ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800120{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700121 _LOG_FUNCTION (this);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800122
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800123 while (m_running)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800124 {
Alexander Afanasyev2247b302012-03-14 14:11:54 -0700125#ifdef _DEBUG_WRAPPER_
126 std::cout << m_c << flush;
127#endif
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700128 int res = 0;
129 {
130 recursive_mutex::scoped_lock lock (m_mutex);
131 res = ccn_run (m_handle, 0);
Alexander Afanasyev2247b302012-03-14 14:11:54 -0700132
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700133 }
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700134
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700135 if (!m_running) break;
136
137 if (res < 0)
138 BOOST_THROW_EXCEPTION (CcnxOperationException()
139 << errmsg_info_str("ccn_run returned error"));
140
Alexander Afanasyev2247b302012-03-14 14:11:54 -0700141
142 pollfd pfds[1];
143 {
144 recursive_mutex::scoped_lock lock (m_mutex);
145
146 pfds[0].fd = ccn_get_connection_fd (m_handle);
147 pfds[0].events = POLLIN;
148 if (ccn_output_is_pending (m_handle))
149 pfds[0].events |= POLLOUT;
150 }
151
152 int ret = poll (pfds, 1, 1);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700153 if (ret < 0)
154 {
155 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("ccnd socket failed (probably ccnd got stopped)"));
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800156 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800157 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800158}
159
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800160/// @endcond
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700161int
162CcnxWrapper::publishStringData (const string &name, const string &dataBuffer, int freshness) {
163 publishRawData(name, dataBuffer.c_str(), dataBuffer.length(), freshness);
164}
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800165
166int
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700167CcnxWrapper::publishRawData (const string &name, const char *buf, size_t len, int freshness)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800168{
Zhenkai Zhudc70a292012-06-01 14:00:59 -0700169
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700170 recursive_mutex::scoped_lock lock(m_mutex);
171 if (!m_running)
172 return -1;
173
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700174 // cout << "Publish: " << name << endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800175 ccn_charbuf *pname = ccn_charbuf_create();
176 ccn_charbuf *signed_info = ccn_charbuf_create();
177 ccn_charbuf *content = ccn_charbuf_create();
178
179 ccn_name_from_uri(pname, name.c_str());
180 ccn_signed_info_create(signed_info,
181 getPublicKeyDigest(),
182 getPublicKeyDigestLength(),
183 NULL,
184 CCN_CONTENT_DATA,
185 freshness,
186 NULL,
187 m_keyLoactor);
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800188 if(ccn_encode_ContentObject(content, pname, signed_info,
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700189 (const unsigned char *)buf, len,
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800190 NULL, getPrivateKey()) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800191 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("encode content failed"));
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800192
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800193 if (ccn_put(m_handle, content->buf, content->length) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800194 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800195
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800196 ccn_charbuf_destroy (&pname);
197 ccn_charbuf_destroy (&signed_info);
198 ccn_charbuf_destroy (&content);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700199 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800200}
201
202
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800203static ccn_upcall_res
204incomingInterest(ccn_closure *selfp,
205 ccn_upcall_kind kind,
206 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800207{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800208 CcnxWrapper::InterestCallback *f = static_cast<CcnxWrapper::InterestCallback*> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800209
210 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800211 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800212 case CCN_UPCALL_FINAL: // effective in unit tests
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800213 delete f;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800214 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800215 return CCN_UPCALL_RESULT_OK;
216
217 case CCN_UPCALL_INTEREST:
218 break;
219
220 default:
221 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800222 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800223
Chaoyi Bian93d43102012-03-07 14:28:56 -0800224 string interest;
Chaoyi Bian02dba3c2012-03-07 21:45:22 -0800225 for (int i = 0; i < info->interest_comps->n - 1; i++)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800226 {
227 char *comp;
228 size_t size;
229 interest += "/";
230 ccn_name_comp_get(info->interest_ccnb, info->interest_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800231 string compStr(comp, size);
232 interest += compStr;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800233 }
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800234 (*f) (interest);
Chaoyi Bian93d43102012-03-07 14:28:56 -0800235 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800236}
237
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800238static ccn_upcall_res
239incomingData(ccn_closure *selfp,
240 ccn_upcall_kind kind,
241 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800242{
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700243 ClosurePass *cp = static_cast<ClosurePass *> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800244
245 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800246 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800247 case CCN_UPCALL_FINAL: // effecitve in unit tests
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700248 delete cp;
249 cp = NULL;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800250 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800251 return CCN_UPCALL_RESULT_OK;
252
253 case CCN_UPCALL_CONTENT:
254 break;
255
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700256 case CCN_UPCALL_INTEREST_TIMED_OUT: {
257 if (cp != NULL && cp->getRetry() > 0) {
258 cp->decRetry();
259 return CCN_UPCALL_RESULT_REEXPRESS;
260 }
261 return CCN_UPCALL_RESULT_OK;
262 }
263
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800264 default:
265 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800266 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800267
268 char *pcontent;
269 size_t len;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800270 if (ccn_content_get_value(info->content_ccnb, info->pco->offset[CCN_PCO_E], info->pco, (const unsigned char **)&pcontent, &len) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800271 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("decode ContentObject failed"));
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800272
Chaoyi Bian4194b742012-03-08 17:21:35 -0800273 string name;
274 for (int i = 0; i < info->content_comps->n - 1; i++)
275 {
276 char *comp;
277 size_t size;
278 name += "/";
279 ccn_name_comp_get(info->content_ccnb, info->content_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800280 string compStr(comp, size);
281 name += compStr;
Chaoyi Bian4194b742012-03-08 17:21:35 -0800282 }
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700283
284 cp->runCallback(name, pcontent, len);
285
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800286 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800287}
288
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700289int CcnxWrapper::sendInterestForString (const string &strInterest, const StringDataCallback &strDataCallback, int retry)
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700290{
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700291 DataClosurePass * pass = new DataClosurePass(STRING_FORM, retry, strDataCallback);
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700292 sendInterest(strInterest, pass);
293}
294
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700295int CcnxWrapper::sendInterest (const string &strInterest, const RawDataCallback &rawDataCallback, int retry)
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700296{
297 RawDataClosurePass * pass = new RawDataClosurePass(RAW_DATA, retry, rawDataCallback);
298 sendInterest(strInterest, pass);
299}
300
301int CcnxWrapper::sendInterest (const string &strInterest, void *dataPass)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800302{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700303 recursive_mutex::scoped_lock lock(m_mutex);
304 if (!m_running)
305 return -1;
306
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700307 // std::cout << "Send interests for " << strInterest << std::endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800308 ccn_charbuf *pname = ccn_charbuf_create();
309 ccn_closure *dataClosure = new ccn_closure;
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800310
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800311 ccn_name_from_uri (pname, strInterest.c_str());
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700312 dataClosure->data = dataPass;
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800313
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800314 dataClosure->p = &incomingData;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800315 if (ccn_express_interest (m_handle, pname, dataClosure, NULL) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800316 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("express interest failed"));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800317
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800318 ccn_charbuf_destroy (&pname);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700319 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800320}
321
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800322int CcnxWrapper::setInterestFilter (const string &prefix, const InterestCallback &interestCallback)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800323{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700324 recursive_mutex::scoped_lock lock(m_mutex);
325 if (!m_running)
326 return -1;
327
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800328 ccn_charbuf *pname = ccn_charbuf_create();
329 ccn_closure *interestClosure = new ccn_closure;
330
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800331 ccn_name_from_uri (pname, prefix.c_str());
332 interestClosure->data = new InterestCallback (interestCallback); // should be removed when closure is removed
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800333 interestClosure->p = &incomingInterest;
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700334 int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
335 if (ret < 0)
336 {
337 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
338 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800339
340 ccn_charbuf_destroy(&pname);
341}
342
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700343void
344CcnxWrapper::clearInterestFilter (const std::string &prefix)
345{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700346 recursive_mutex::scoped_lock lock(m_mutex);
347 if (!m_running)
348 return;
349
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700350 std::cout << "clearInterestFilter" << std::endl;
351 ccn_charbuf *pname = ccn_charbuf_create();
352
353 ccn_name_from_uri (pname, prefix.c_str());
354 int ret = ccn_set_interest_filter (m_handle, pname, 0);
355 if (ret < 0)
356 {
357 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
358 }
359
360 ccn_charbuf_destroy(&pname);
361}
362
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700363DataClosurePass::DataClosurePass (CallbackType type, int retry, const CcnxWrapper::StringDataCallback &strDataCallback): ClosurePass(type, retry), m_callback(NULL)
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700364{
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700365 m_callback = new CcnxWrapper::StringDataCallback (strDataCallback);
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700366}
367
368DataClosurePass::~DataClosurePass ()
369{
370 delete m_callback;
371 m_callback = NULL;
372}
373
374void
375DataClosurePass::runCallback(std::string name, const char *data, size_t len)
376{
377 string content(data, len);
378 if (m_callback != NULL) {
379 (*m_callback)(name, content);
380 }
381}
382
383
384RawDataClosurePass::RawDataClosurePass (CallbackType type, int retry, const CcnxWrapper::RawDataCallback &rawDataCallback): ClosurePass(type, retry), m_callback(NULL)
385{
386 m_callback = new CcnxWrapper::RawDataCallback (rawDataCallback);
387}
388
389RawDataClosurePass::~RawDataClosurePass ()
390{
391 delete m_callback;
392 m_callback = NULL;
393}
394
395void
396RawDataClosurePass::runCallback(std::string name, const char *data, size_t len)
397{
398 if (m_callback != NULL) {
399 (*m_callback)(name, data, len);
400 }
401}
402
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800403}