blob: d0a6376a0f7ef364932c2b422696f9847fc7fa30 [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
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -070052 m_handle = ccn_create();
53 connectCcnd();
Alexander Afanasyev2c180772012-03-13 23:58:46 -070054 initKeyStore ();
55 createKeyLocator ();
Alexander Afanasyev1285b382012-03-08 16:40:27 -080056 m_thread = thread (&CcnxWrapper::ccnLoop, this);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080057}
58
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -070059void
60CcnxWrapper::connectCcnd()
61{
Zhenkai Zhu71bc0ba2012-10-05 14:37:44 -070062 ccn_disconnect (m_handle);
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -070063 _LOG_DEBUG("<<< connecting to ccnd");
64 if (ccn_connect(m_handle, NULL) < 0)
65 {
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -070066 _LOG_DEBUG("<<< connecting to ccnd failed");
67 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("connection to ccnd failed"));
68 }
Zhenkai Zhu71bc0ba2012-10-05 14:37:44 -070069 if (!m_registeredInterests.empty())
70 {
71 for (map<std::string, InterestCallback>::const_iterator it = m_registeredInterests.begin(); it != m_registeredInterests.end(); ++it)
72 {
73 setInterestFilter(it->first, it->second);
74 _LOG_DEBUG("<<< registering interest filter for: " << it->first);
75 }
76 }
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -070077}
78
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080079CcnxWrapper::~CcnxWrapper()
80{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070081 // std::cout << "CcnxWrapper::~CcnxWrapper()" << std::endl;
82 {
83 recursive_mutex::scoped_lock lock(m_mutex);
84 m_running = false;
85 }
86
87 m_thread.join ();
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080088 ccn_disconnect (m_handle);
Alexander Afanasyev2c180772012-03-13 23:58:46 -070089 ccn_destroy (&m_handle);
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080090 ccn_charbuf_destroy (&m_keyLoactor);
91 ccn_keystore_destroy (&m_keyStore);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080092}
93
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080094/// @cond include_hidden
95
96void
97CcnxWrapper::createKeyLocator ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080098{
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080099 m_keyLoactor = ccn_charbuf_create();
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800100 ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_KeyLocator, CCN_DTAG);
101 ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_Key, CCN_DTAG);
102 int res = ccn_append_pubkey_blob (m_keyLoactor, ccn_keystore_public_key(m_keyStore));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800103 if (res >= 0)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800104 {
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800105 ccn_charbuf_append_closer (m_keyLoactor); /* </Key> */
106 ccn_charbuf_append_closer (m_keyLoactor); /* </KeyLocator> */
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800107 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800108}
109
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800110const ccn_pkey*
111CcnxWrapper::getPrivateKey ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800112{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800113 return ccn_keystore_private_key (m_keyStore);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800114}
115
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800116const unsigned char*
117CcnxWrapper::getPublicKeyDigest ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800118{
119 return ccn_keystore_public_key_digest(m_keyStore);
120}
121
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800122ssize_t
123CcnxWrapper::getPublicKeyDigestLength ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800124{
125 return ccn_keystore_public_key_digest_length(m_keyStore);
126}
127
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800128void
129CcnxWrapper::initKeyStore ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800130{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800131 m_keyStore = ccn_keystore_create ();
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800132 string keyStoreFile = string(getenv("HOME")) + string("/.ccnx/.ccnx_keystore");
133 if (ccn_keystore_init (m_keyStore, (char *)keyStoreFile.c_str(), (char*)"Th1s1sn0t8g00dp8ssw0rd.") < 0)
134 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str(keyStoreFile.c_str()));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800135}
136
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800137void
138CcnxWrapper::ccnLoop ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800139{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700140 _LOG_FUNCTION (this);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800141
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700142 while (m_running)
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700143 {
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700144 try
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700145 {
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700146#ifdef _DEBUG_WRAPPER_
147 std::cout << m_c << flush;
148#endif
149 int res = 0;
150 {
151 recursive_mutex::scoped_lock lock (m_mutex);
152 res = ccn_run (m_handle, 0);
153 }
154
155 if (!m_running) break;
156
157 if (res < 0)
158 BOOST_THROW_EXCEPTION (CcnxOperationException()
159 << errmsg_info_str("ccn_run returned error"));
160
161
162 pollfd pfds[1];
163 {
164 recursive_mutex::scoped_lock lock (m_mutex);
165
166 pfds[0].fd = ccn_get_connection_fd (m_handle);
167 pfds[0].events = POLLIN;
168 if (ccn_output_is_pending (m_handle))
169 pfds[0].events |= POLLOUT;
170 }
171
172 int ret = poll (pfds, 1, 1);
173 if (ret < 0)
174 {
175 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("ccnd socket failed (probably ccnd got stopped)"));
176 }
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800177 }
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700178 catch (CcnxOperationException e)
179 {
180 // probably ccnd has been stoped
181 // try reconnect with sleep
182 int interval = 1;
183 int maxInterval = 32;
184 while (m_running)
185 {
186 try
187 {
188 sleep(1);
189 connectCcnd();
190 _LOG_DEBUG("reconnect to ccnd succeeded");
191 break;
192 }
193 catch (CcnxOperationException e)
194 {
195 sleep(interval);
196 // do exponential backup for reconnect interval
197 if (interval < maxInterval)
198 {
199 interval *= 2;
200 }
201 }
202 }
203 }
204 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800205}
206
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800207/// @endcond
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700208int
209CcnxWrapper::publishStringData (const string &name, const string &dataBuffer, int freshness) {
210 publishRawData(name, dataBuffer.c_str(), dataBuffer.length(), freshness);
211}
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800212
213int
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700214CcnxWrapper::publishRawData (const string &name, const char *buf, size_t len, int freshness)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800215{
Zhenkai Zhudc70a292012-06-01 14:00:59 -0700216
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700217 recursive_mutex::scoped_lock lock(m_mutex);
218 if (!m_running)
219 return -1;
220
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700221 // cout << "Publish: " << name << endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800222 ccn_charbuf *pname = ccn_charbuf_create();
223 ccn_charbuf *signed_info = ccn_charbuf_create();
224 ccn_charbuf *content = ccn_charbuf_create();
225
226 ccn_name_from_uri(pname, name.c_str());
227 ccn_signed_info_create(signed_info,
228 getPublicKeyDigest(),
229 getPublicKeyDigestLength(),
230 NULL,
231 CCN_CONTENT_DATA,
232 freshness,
233 NULL,
234 m_keyLoactor);
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800235 if(ccn_encode_ContentObject(content, pname, signed_info,
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700236 (const unsigned char *)buf, len,
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800237 NULL, getPrivateKey()) < 0)
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700238 {
239 // BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("encode content failed"));
240 _LOG_ERROR("<<< Encode content failed " << name);
241 }
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800242
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800243 if (ccn_put(m_handle, content->buf, content->length) < 0)
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700244 {
245 // BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
246 _LOG_ERROR("<<< ccnput content failed " << name);
247 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800248
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800249 ccn_charbuf_destroy (&pname);
250 ccn_charbuf_destroy (&signed_info);
251 ccn_charbuf_destroy (&content);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700252 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800253}
254
255
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800256static ccn_upcall_res
257incomingInterest(ccn_closure *selfp,
258 ccn_upcall_kind kind,
259 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800260{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800261 CcnxWrapper::InterestCallback *f = static_cast<CcnxWrapper::InterestCallback*> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800262
263 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800264 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800265 case CCN_UPCALL_FINAL: // effective in unit tests
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800266 delete f;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800267 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800268 return CCN_UPCALL_RESULT_OK;
269
270 case CCN_UPCALL_INTEREST:
271 break;
272
273 default:
274 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800275 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800276
Chaoyi Bian93d43102012-03-07 14:28:56 -0800277 string interest;
Chaoyi Bian02dba3c2012-03-07 21:45:22 -0800278 for (int i = 0; i < info->interest_comps->n - 1; i++)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800279 {
280 char *comp;
281 size_t size;
282 interest += "/";
283 ccn_name_comp_get(info->interest_ccnb, info->interest_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800284 string compStr(comp, size);
285 interest += compStr;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800286 }
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800287 (*f) (interest);
Zhenkai Zhu71bc0ba2012-10-05 14:37:44 -0700288 _LOG_DEBUG("<<< processed interest: " << interest);
Chaoyi Bian93d43102012-03-07 14:28:56 -0800289 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800290}
291
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800292static ccn_upcall_res
293incomingData(ccn_closure *selfp,
294 ccn_upcall_kind kind,
295 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800296{
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700297 ClosurePass *cp = static_cast<ClosurePass *> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800298
299 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800300 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800301 case CCN_UPCALL_FINAL: // effecitve in unit tests
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700302 delete cp;
303 cp = NULL;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800304 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800305 return CCN_UPCALL_RESULT_OK;
306
307 case CCN_UPCALL_CONTENT:
308 break;
309
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700310 case CCN_UPCALL_INTEREST_TIMED_OUT: {
311 if (cp != NULL && cp->getRetry() > 0) {
312 cp->decRetry();
313 return CCN_UPCALL_RESULT_REEXPRESS;
314 }
315 return CCN_UPCALL_RESULT_OK;
316 }
317
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800318 default:
319 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800320 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800321
322 char *pcontent;
323 size_t len;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800324 if (ccn_content_get_value(info->content_ccnb, info->pco->offset[CCN_PCO_E], info->pco, (const unsigned char **)&pcontent, &len) < 0)
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700325 {
326 // BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("decode ContentObject failed"));
327 _LOG_ERROR("<<< Decode content failed ");
328 }
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800329
Chaoyi Bian4194b742012-03-08 17:21:35 -0800330 string name;
331 for (int i = 0; i < info->content_comps->n - 1; i++)
332 {
333 char *comp;
334 size_t size;
335 name += "/";
336 ccn_name_comp_get(info->content_ccnb, info->content_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800337 string compStr(comp, size);
338 name += compStr;
Chaoyi Bian4194b742012-03-08 17:21:35 -0800339 }
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700340
341 cp->runCallback(name, pcontent, len);
342
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800343 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800344}
345
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700346int CcnxWrapper::sendInterestForString (const string &strInterest, const StringDataCallback &strDataCallback, int retry)
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700347{
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700348 DataClosurePass * pass = new DataClosurePass(STRING_FORM, retry, strDataCallback);
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700349 sendInterest(strInterest, pass);
350}
351
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700352int CcnxWrapper::sendInterest (const string &strInterest, const RawDataCallback &rawDataCallback, int retry)
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700353{
354 RawDataClosurePass * pass = new RawDataClosurePass(RAW_DATA, retry, rawDataCallback);
355 sendInterest(strInterest, pass);
356}
357
358int CcnxWrapper::sendInterest (const string &strInterest, void *dataPass)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800359{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700360 recursive_mutex::scoped_lock lock(m_mutex);
361 if (!m_running)
362 return -1;
363
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700364 // std::cout << "Send interests for " << strInterest << std::endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800365 ccn_charbuf *pname = ccn_charbuf_create();
366 ccn_closure *dataClosure = new ccn_closure;
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800367
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800368 ccn_name_from_uri (pname, strInterest.c_str());
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700369 dataClosure->data = dataPass;
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800370
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800371 dataClosure->p = &incomingData;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800372 if (ccn_express_interest (m_handle, pname, dataClosure, NULL) < 0)
Zhenkai Zhu26cd6e32012-10-05 13:10:58 -0700373 {
374 // BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("express interest failed"));
375 _LOG_ERROR("<<< Express interest failed: " << strInterest);
376 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800377
Zhenkai Zhu71bc0ba2012-10-05 14:37:44 -0700378 _LOG_DEBUG("<<< Sending interest: " << strInterest);
379
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800380 ccn_charbuf_destroy (&pname);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700381 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800382}
383
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800384int CcnxWrapper::setInterestFilter (const string &prefix, const InterestCallback &interestCallback)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800385{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700386 recursive_mutex::scoped_lock lock(m_mutex);
387 if (!m_running)
388 return -1;
389
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800390 ccn_charbuf *pname = ccn_charbuf_create();
391 ccn_closure *interestClosure = new ccn_closure;
392
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800393 ccn_name_from_uri (pname, prefix.c_str());
394 interestClosure->data = new InterestCallback (interestCallback); // should be removed when closure is removed
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800395 interestClosure->p = &incomingInterest;
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700396 int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
397 if (ret < 0)
398 {
399 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
400 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800401
Zhenkai Zhu71bc0ba2012-10-05 14:37:44 -0700402 m_registeredInterests.insert(pair<std::string, InterestCallback>(prefix, interestCallback));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800403 ccn_charbuf_destroy(&pname);
404}
405
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700406void
407CcnxWrapper::clearInterestFilter (const std::string &prefix)
408{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700409 recursive_mutex::scoped_lock lock(m_mutex);
410 if (!m_running)
411 return;
412
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700413 std::cout << "clearInterestFilter" << std::endl;
414 ccn_charbuf *pname = ccn_charbuf_create();
415
416 ccn_name_from_uri (pname, prefix.c_str());
417 int ret = ccn_set_interest_filter (m_handle, pname, 0);
418 if (ret < 0)
419 {
420 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
421 }
422
Zhenkai Zhu71bc0ba2012-10-05 14:37:44 -0700423 m_registeredInterests.erase(prefix);
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700424 ccn_charbuf_destroy(&pname);
425}
426
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700427DataClosurePass::DataClosurePass (CallbackType type, int retry, const CcnxWrapper::StringDataCallback &strDataCallback): ClosurePass(type, retry), m_callback(NULL)
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700428{
Zhenkai Zhu1cb29292012-05-31 22:54:34 -0700429 m_callback = new CcnxWrapper::StringDataCallback (strDataCallback);
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700430}
431
432DataClosurePass::~DataClosurePass ()
433{
434 delete m_callback;
435 m_callback = NULL;
436}
437
438void
439DataClosurePass::runCallback(std::string name, const char *data, size_t len)
440{
441 string content(data, len);
442 if (m_callback != NULL) {
443 (*m_callback)(name, content);
444 }
445}
446
447
448RawDataClosurePass::RawDataClosurePass (CallbackType type, int retry, const CcnxWrapper::RawDataCallback &rawDataCallback): ClosurePass(type, retry), m_callback(NULL)
449{
450 m_callback = new CcnxWrapper::RawDataCallback (rawDataCallback);
451}
452
453RawDataClosurePass::~RawDataClosurePass ()
454{
455 delete m_callback;
456 m_callback = NULL;
457}
458
459void
460RawDataClosurePass::runCallback(std::string name, const char *data, size_t len)
461{
462 if (m_callback != NULL) {
463 (*m_callback)(name, data, len);
464 }
465}
466
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800467}