blob: 85ffbd672d26186be9360271f9c054f1e4c6a0d6 [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
161
162int
163CcnxWrapper::publishData (const string &name, const string &dataBuffer, int freshness)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800164{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700165 recursive_mutex::scoped_lock lock(m_mutex);
166 if (!m_running)
167 return -1;
168
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700169 // cout << "Publish: " << name << endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800170 ccn_charbuf *pname = ccn_charbuf_create();
171 ccn_charbuf *signed_info = ccn_charbuf_create();
172 ccn_charbuf *content = ccn_charbuf_create();
173
174 ccn_name_from_uri(pname, name.c_str());
175 ccn_signed_info_create(signed_info,
176 getPublicKeyDigest(),
177 getPublicKeyDigestLength(),
178 NULL,
179 CCN_CONTENT_DATA,
180 freshness,
181 NULL,
182 m_keyLoactor);
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800183 if(ccn_encode_ContentObject(content, pname, signed_info,
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800184 dataBuffer.c_str(), dataBuffer.length (),
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800185 NULL, getPrivateKey()) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800186 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("encode content failed"));
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800187
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800188 if (ccn_put(m_handle, content->buf, content->length) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800189 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800190
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800191 ccn_charbuf_destroy (&pname);
192 ccn_charbuf_destroy (&signed_info);
193 ccn_charbuf_destroy (&content);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700194 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800195}
196
197
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800198static ccn_upcall_res
199incomingInterest(ccn_closure *selfp,
200 ccn_upcall_kind kind,
201 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800202{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800203 CcnxWrapper::InterestCallback *f = static_cast<CcnxWrapper::InterestCallback*> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800204
205 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800206 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800207 case CCN_UPCALL_FINAL: // effective in unit tests
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800208 delete f;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800209 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800210 return CCN_UPCALL_RESULT_OK;
211
212 case CCN_UPCALL_INTEREST:
213 break;
214
215 default:
216 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800217 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800218
Chaoyi Bian93d43102012-03-07 14:28:56 -0800219 string interest;
Chaoyi Bian02dba3c2012-03-07 21:45:22 -0800220 for (int i = 0; i < info->interest_comps->n - 1; i++)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800221 {
222 char *comp;
223 size_t size;
224 interest += "/";
225 ccn_name_comp_get(info->interest_ccnb, info->interest_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800226 string compStr(comp, size);
227 interest += compStr;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800228 }
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800229 (*f) (interest);
Chaoyi Bian93d43102012-03-07 14:28:56 -0800230 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800231}
232
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800233static ccn_upcall_res
234incomingData(ccn_closure *selfp,
235 ccn_upcall_kind kind,
236 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800237{
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700238 //CcnxWrapper::DataCallback *f = static_cast<CcnxWrapper::DataCallback*> (selfp->data);
239 ClosurePass *cp = static_cast<ClosurePass *> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800240
241 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800242 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800243 case CCN_UPCALL_FINAL: // effecitve in unit tests
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700244 delete cp;
245 cp = NULL;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800246 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800247 return CCN_UPCALL_RESULT_OK;
248
249 case CCN_UPCALL_CONTENT:
250 break;
251
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700252 case CCN_UPCALL_INTEREST_TIMED_OUT: {
253 if (cp != NULL && cp->getRetry() > 0) {
254 cp->decRetry();
255 return CCN_UPCALL_RESULT_REEXPRESS;
256 }
257 return CCN_UPCALL_RESULT_OK;
258 }
259
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800260 default:
261 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800262 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800263
264 char *pcontent;
265 size_t len;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800266 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 -0800267 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("decode ContentObject failed"));
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800268
Chaoyi Bian4194b742012-03-08 17:21:35 -0800269 string name;
270 for (int i = 0; i < info->content_comps->n - 1; i++)
271 {
272 char *comp;
273 size_t size;
274 name += "/";
275 ccn_name_comp_get(info->content_ccnb, info->content_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800276 string compStr(comp, size);
277 name += compStr;
Chaoyi Bian4194b742012-03-08 17:21:35 -0800278 }
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700279
280 cp->runCallback(name, pcontent, len);
281
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800282 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800283}
284
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700285int CcnxWrapper::sendInterest (const string &strInterest, const DataCallback &dataCallback, int retry)
286{
287 DataClosurePass * pass = new DataClosurePass(STRING_FORM, retry, dataCallback);
288 sendInterest(strInterest, pass);
289}
290
291int CcnxWrapper::sendInterestForRawData (const string &strInterest, const RawDataCallback &rawDataCallback, int retry)
292{
293 RawDataClosurePass * pass = new RawDataClosurePass(RAW_DATA, retry, rawDataCallback);
294 sendInterest(strInterest, pass);
295}
296
297int CcnxWrapper::sendInterest (const string &strInterest, void *dataPass)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800298{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700299 recursive_mutex::scoped_lock lock(m_mutex);
300 if (!m_running)
301 return -1;
302
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700303 // std::cout << "Send interests for " << strInterest << std::endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800304 ccn_charbuf *pname = ccn_charbuf_create();
305 ccn_closure *dataClosure = new ccn_closure;
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800306
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800307 ccn_name_from_uri (pname, strInterest.c_str());
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700308 dataClosure->data = dataPass;
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800309
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800310 dataClosure->p = &incomingData;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800311 if (ccn_express_interest (m_handle, pname, dataClosure, NULL) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800312 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("express interest failed"));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800313
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800314 ccn_charbuf_destroy (&pname);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700315 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800316}
317
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800318int CcnxWrapper::setInterestFilter (const string &prefix, const InterestCallback &interestCallback)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800319{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700320 recursive_mutex::scoped_lock lock(m_mutex);
321 if (!m_running)
322 return -1;
323
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800324 ccn_charbuf *pname = ccn_charbuf_create();
325 ccn_closure *interestClosure = new ccn_closure;
326
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800327 ccn_name_from_uri (pname, prefix.c_str());
328 interestClosure->data = new InterestCallback (interestCallback); // should be removed when closure is removed
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800329 interestClosure->p = &incomingInterest;
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700330 int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
331 if (ret < 0)
332 {
333 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
334 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800335
336 ccn_charbuf_destroy(&pname);
337}
338
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700339void
340CcnxWrapper::clearInterestFilter (const std::string &prefix)
341{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700342 recursive_mutex::scoped_lock lock(m_mutex);
343 if (!m_running)
344 return;
345
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700346 std::cout << "clearInterestFilter" << std::endl;
347 ccn_charbuf *pname = ccn_charbuf_create();
348
349 ccn_name_from_uri (pname, prefix.c_str());
350 int ret = ccn_set_interest_filter (m_handle, pname, 0);
351 if (ret < 0)
352 {
353 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
354 }
355
356 ccn_charbuf_destroy(&pname);
357}
358
Zhenkai Zhu80af0e02012-05-31 15:49:07 -0700359DataClosurePass::DataClosurePass (CallbackType type, int retry, const CcnxWrapper::DataCallback &dataCallback): ClosurePass(type, retry), m_callback(NULL)
360{
361 m_callback = new CcnxWrapper::DataCallback (dataCallback);
362}
363
364DataClosurePass::~DataClosurePass ()
365{
366 delete m_callback;
367 m_callback = NULL;
368}
369
370void
371DataClosurePass::runCallback(std::string name, const char *data, size_t len)
372{
373 string content(data, len);
374 if (m_callback != NULL) {
375 (*m_callback)(name, content);
376 }
377}
378
379
380RawDataClosurePass::RawDataClosurePass (CallbackType type, int retry, const CcnxWrapper::RawDataCallback &rawDataCallback): ClosurePass(type, retry), m_callback(NULL)
381{
382 m_callback = new CcnxWrapper::RawDataCallback (rawDataCallback);
383}
384
385RawDataClosurePass::~RawDataClosurePass ()
386{
387 delete m_callback;
388 m_callback = NULL;
389}
390
391void
392RawDataClosurePass::runCallback(std::string name, const char *data, size_t len)
393{
394 if (m_callback != NULL) {
395 (*m_callback)(name, data, len);
396 }
397}
398
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800399}