blob: e911e2e26e652731a4afdbd271d506a5d7f3fb08 [file] [log] [blame]
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2012 University of California, Los Angeles
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
* 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
* Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#include "sync-ccnx-wrapper.h"
#include <poll.h>
#include <boost/throw_exception.hpp>
typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str;
typedef boost::error_info<struct tag_errmsg, int> errmsg_info_int;
using namespace std;
using namespace boost;
namespace Sync {
CcnxWrapper::CcnxWrapper()
: m_handle (0)
, m_keyStore (0)
, m_keyLoactor (0)
, m_running (true)
{
m_handle = ccn_create();
if (ccn_connect(m_handle, NULL) < 0)
BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("connection to ccnd failed"));
initKeyStore();
createKeyLocator();
m_thread = thread (&CcnxWrapper::ccnLoop, this);
}
CcnxWrapper::~CcnxWrapper()
{
m_running = false;
m_thread.join();
ccn_disconnect (m_handle);
ccn_destroy (&m_handle);
ccn_charbuf_destroy (&m_keyLoactor);
ccn_keystore_destroy (&m_keyStore);
}
/// @cond include_hidden
void
CcnxWrapper::createKeyLocator ()
{
m_keyLoactor = ccn_charbuf_create();
ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_KeyLocator, CCN_DTAG);
ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_Key, CCN_DTAG);
int res = ccn_append_pubkey_blob (m_keyLoactor, ccn_keystore_public_key(m_keyStore));
if (res >= 0)
{
ccn_charbuf_append_closer (m_keyLoactor); /* </Key> */
ccn_charbuf_append_closer (m_keyLoactor); /* </KeyLocator> */
}
}
const ccn_pkey*
CcnxWrapper::getPrivateKey ()
{
return ccn_keystore_private_key (m_keyStore);
}
const unsigned char*
CcnxWrapper::getPublicKeyDigest ()
{
return ccn_keystore_public_key_digest(m_keyStore);
}
ssize_t
CcnxWrapper::getPublicKeyDigestLength ()
{
return ccn_keystore_public_key_digest_length(m_keyStore);
}
void
CcnxWrapper::initKeyStore ()
{
m_keyStore = ccn_keystore_create ();
string keyStoreFile = string(getenv("HOME")) + string("/.ccnx/.ccnx_keystore");
if (ccn_keystore_init (m_keyStore, (char *)keyStoreFile.c_str(), (char*)"Th1s1sn0t8g00dp8ssw0rd.") < 0)
BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str(keyStoreFile.c_str()));
}
void
CcnxWrapper::ccnLoop ()
{
pollfd pfds[1];
int res = ccn_run(m_handle, 0);
pfds[0].fd = ccn_get_connection_fd(m_handle);
pfds[0].events = POLLIN;
while (m_running)
{
if (res >= 0)
{
int ret = poll(pfds, 1, 100);
if (ret >= 0)
{
recursive_mutex::scoped_lock lock(m_mutex);
res = ccn_run(m_handle, 0);
}
}
}
}
/// @endcond
int
CcnxWrapper::publishData (const string &name, const string &dataBuffer, int freshness)
{
// cout << "Publish: " << name << endl;
ccn_charbuf *pname = ccn_charbuf_create();
ccn_charbuf *signed_info = ccn_charbuf_create();
ccn_charbuf *content = ccn_charbuf_create();
ccn_name_from_uri(pname, name.c_str());
ccn_signed_info_create(signed_info,
getPublicKeyDigest(),
getPublicKeyDigestLength(),
NULL,
CCN_CONTENT_DATA,
freshness,
NULL,
m_keyLoactor);
if(ccn_encode_ContentObject(content, pname, signed_info,
dataBuffer.c_str(), dataBuffer.length (),
NULL, getPrivateKey()) < 0)
BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("encode content failed"));
recursive_mutex::scoped_lock lock(m_mutex);
if (ccn_put(m_handle, content->buf, content->length) < 0)
BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
ccn_charbuf_destroy (&pname);
ccn_charbuf_destroy (&signed_info);
ccn_charbuf_destroy (&content);
}
static ccn_upcall_res
incomingInterest(ccn_closure *selfp,
ccn_upcall_kind kind,
ccn_upcall_info *info)
{
CcnxWrapper::InterestCallback *f = static_cast<CcnxWrapper::InterestCallback*> (selfp->data);
switch (kind)
{
case CCN_UPCALL_FINAL: // effective in unit tests
delete f;
delete selfp;
return CCN_UPCALL_RESULT_OK;
case CCN_UPCALL_INTEREST:
break;
default:
return CCN_UPCALL_RESULT_OK;
}
string interest;
for (int i = 0; i < info->interest_comps->n - 1; i++)
{
char *comp;
size_t size;
interest += "/";
ccn_name_comp_get(info->interest_ccnb, info->interest_comps, i, (const unsigned char **)&comp, &size);
string compStr(comp, size);
interest += compStr;
}
(*f) (interest);
return CCN_UPCALL_RESULT_OK;
}
static ccn_upcall_res
incomingData(ccn_closure *selfp,
ccn_upcall_kind kind,
ccn_upcall_info *info)
{
CcnxWrapper::DataCallback *f = static_cast<CcnxWrapper::DataCallback*> (selfp->data);
switch (kind)
{
case CCN_UPCALL_FINAL: // effecitve in unit tests
delete f;
delete selfp;
return CCN_UPCALL_RESULT_OK;
case CCN_UPCALL_CONTENT:
break;
default:
return CCN_UPCALL_RESULT_OK;
}
char *pcontent;
size_t len;
if (ccn_content_get_value(info->content_ccnb, info->pco->offset[CCN_PCO_E], info->pco, (const unsigned char **)&pcontent, &len) < 0)
BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("decode ContentObject failed"));
string content(pcontent, len);
string name;
for (int i = 0; i < info->content_comps->n - 1; i++)
{
char *comp;
size_t size;
name += "/";
ccn_name_comp_get(info->content_ccnb, info->content_comps, i, (const unsigned char **)&comp, &size);
string compStr(comp, size);
name += compStr;
}
(*f) (name, content);
return CCN_UPCALL_RESULT_OK;
}
int CcnxWrapper::sendInterest (const string &strInterest, const DataCallback &dataCallback)
{
ccn_charbuf *pname = ccn_charbuf_create();
ccn_closure *dataClosure = new ccn_closure;
ccn_name_from_uri (pname, strInterest.c_str());
dataClosure->data = new DataCallback (dataCallback); // should be removed when closure is removed
dataClosure->p = &incomingData;
recursive_mutex::scoped_lock lock(m_mutex);
if (ccn_express_interest (m_handle, pname, dataClosure, NULL) < 0)
BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("express interest failed"));
ccn_charbuf_destroy (&pname);
}
int CcnxWrapper::setInterestFilter (const string &prefix, const InterestCallback &interestCallback)
{
ccn_charbuf *pname = ccn_charbuf_create();
ccn_closure *interestClosure = new ccn_closure;
ccn_name_from_uri (pname, prefix.c_str());
interestClosure->data = new InterestCallback (interestCallback); // should be removed when closure is removed
interestClosure->p = &incomingInterest;
int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
if (ret < 0)
{
BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
}
ccn_charbuf_destroy(&pname);
}
}