aboutsummaryrefslogtreecommitdiffstats
path: root/Input
diff options
context:
space:
mode:
authorAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-27 16:27:57 +0200
committerAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-27 16:27:57 +0200
commite57e3f656fce06c7867906d014270a0fe8fba175 (patch)
tree21833d84b5225c2f72c1cb87d56aa08f5646b80d /Input
parentbd809fc04c3f9c36f8d145999e5a008ffd90a10b (diff)
restore adaptation logic and android correction
Change-Id: I20358214b0c1debc544e9e4b08c1cfd84aff4611 Signed-off-by: Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>
Diffstat (limited to 'Input')
-rw-r--r--Input/DASHReceiver.cpp4
-rw-r--r--Input/ICNConnectionConsumerApi.cpp17
-rw-r--r--Input/ICNConnectionConsumerApi.h2
-rw-r--r--Input/MediaObject.cpp2
4 files changed, 11 insertions, 14 deletions
diff --git a/Input/DASHReceiver.cpp b/Input/DASHReceiver.cpp
index c1f1acc6..f559f298 100644
--- a/Input/DASHReceiver.cpp
+++ b/Input/DASHReceiver.cpp
@@ -207,7 +207,7 @@ void DASHReceiver::NotifySegmentDownloaded ()
void DASHReceiver::DownloadInitSegmentWithoutLock ()
{
- int rep = std::stoi(this->mpdWrapper->getRepresentationIDWithoutLock(type).c_str());
+ int rep = atoi(this->mpdWrapper->getRepresentationIDWithoutLock(type).c_str());
if (this->InitSegmentExists(rep))
return;
@@ -224,7 +224,7 @@ void DASHReceiver::DownloadInitSegmentWithoutLock ()
void DASHReceiver::DownloadInitSegment ()
{
- int rep = std::stoi(this->mpdWrapper->getRepresentationID(type).c_str());
+ int rep = atoi(this->mpdWrapper->getRepresentationID(type).c_str());
if (this->InitSegmentExists(rep))
return;
diff --git a/Input/ICNConnectionConsumerApi.cpp b/Input/ICNConnectionConsumerApi.cpp
index 04b378df..d5048cba 100644
--- a/Input/ICNConnectionConsumerApi.cpp
+++ b/Input/ICNConnectionConsumerApi.cpp
@@ -56,25 +56,22 @@ ICNConnectionConsumerApi::ICNConnectionConsumerApi(double alpha, float beta, flo
InitializeConditionVariable (&this->contentRetrieved);
InitializeCriticalSection (&this->monitorMutex);
this->hTTPClientConnection = new libl4::http::HTTPClientConnection();
- //this->myConsumer = new ConsumerSocket(ccnx::Name(), TransportProtocolAlgorithms::RAAQM);
- //this->myConsumer->setSocketOption(RaaqmTransportOptions::GAMMA_VALUE, (int)gamma);
-
+ libl4::transport::ConsumerSocket &c = this->hTTPClientConnection->getConsumer();
bool configFile = false;
//CHECK if we are not going to override the configuration file. (if !autotune)
- if(FILE *fp = fopen("/usr/etc/consumer.conf", "r"))
+ if(FILE *fp = fopen("/usr/local/etc/hicn-consumer.conf", "r"))
{
fclose(fp);
configFile = true;
}
if(!configFile)
{
-// qDebug("beta %f, drop %f", this->beta, this->drop);
- // this->myConsumer->setSocketOption(RaaqmTransportOptions::BETA_VALUE, this->beta);
- // this->myConsumer->setSocketOption(RaaqmTransportOptions::DROP_FACTOR, this->drop);
+ qDebug("beta %f, drop %f", this->beta, this->drop);
+
+ c.setSocketOption(libl4::transport::RaaqmTransportOptions::BETA_VALUE, this->beta);
+ c.setSocketOption(libl4::transport::RaaqmTransportOptions::DROP_FACTOR, this->drop);
}
- //this->myConsumer->setSocketOption(RateEstimationOptions::RATE_ESTIMATION_OBSERVER, this);
- //this->myConsumer->setSocketOption(ConsumerCallbacksOptions::CONTENT_RETRIEVED, (ConsumerContentCallback) bind(&ICNConnectionConsumerApi::processPayload, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3));
- //this->myConsumer->setSocketOption(ConsumerCallbacksOptions::CONTENT_OBJECT_TO_VERIFY, (ConsumerContentObjectVerificationCallback)bind(&ICNConnectionConsumerApi::onPacket, this, std::placeholders::_1, std::placeholders::_2));
+ c.setSocketOption(int(libl4::transport::RateEstimationOptions::RATE_ESTIMATION_OBSERVER), (libl4::transport::IcnObserver * )this);
#ifdef NO_GUI
if(this->icnAlpha != 20)
this->icnRateBased = true;
diff --git a/Input/ICNConnectionConsumerApi.h b/Input/ICNConnectionConsumerApi.h
index 0ee5cba7..240ebcaa 100644
--- a/Input/ICNConnectionConsumerApi.h
+++ b/Input/ICNConnectionConsumerApi.h
@@ -56,7 +56,7 @@ namespace libdash {
namespace framework {
namespace input {
-class ICNConnectionConsumerApi : public IICNConnection {
+class ICNConnectionConsumerApi : public IICNConnection, public libl4::transport::IcnObserver{
public:
ICNConnectionConsumerApi(double alpha, float beta, float drop);
virtual ~ICNConnectionConsumerApi();
diff --git a/Input/MediaObject.cpp b/Input/MediaObject.cpp
index f479a886..b2dde357 100644
--- a/Input/MediaObject.cpp
+++ b/Input/MediaObject.cpp
@@ -28,7 +28,7 @@ MediaObject::MediaObject(ISegment *segment, IRepresentation *rep, bool withFeedB
InitializeCriticalSection (&this->stateLock);
this->representationBandwidth = rep->GetBandwidth();
this->representationHeight = rep->GetHeight();
- this->representationId = std::stoi(rep->GetId());
+ this->representationId = atoi(rep->GetId().c_str());
}
MediaObject::~MediaObject()