Skip to content
Snippets Groups Projects
Commit e764a2a5 authored by Monty Brandenberg's avatar Monty Brandenberg
Browse files

SH-4407 Tuning to get new code working as well.

Do some runtime code avoidance and skip unnecessary libcurl and
syscall invocations.
parent f84a8104
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,8 @@ namespace LLCore ...@@ -41,7 +41,8 @@ namespace LLCore
HttpLibcurl::HttpLibcurl(HttpService * service) HttpLibcurl::HttpLibcurl(HttpService * service)
: mService(service), : mService(service),
mPolicyCount(0), mPolicyCount(0),
mMultiHandles(NULL) mMultiHandles(NULL),
mActiveHandles(NULL)
{} {}
...@@ -77,6 +78,9 @@ void HttpLibcurl::shutdown() ...@@ -77,6 +78,9 @@ void HttpLibcurl::shutdown()
delete [] mMultiHandles; delete [] mMultiHandles;
mMultiHandles = NULL; mMultiHandles = NULL;
delete [] mActiveHandles;
mActiveHandles = NULL;
} }
mPolicyCount = 0; mPolicyCount = 0;
...@@ -90,9 +94,12 @@ void HttpLibcurl::start(int policy_count) ...@@ -90,9 +94,12 @@ void HttpLibcurl::start(int policy_count)
mPolicyCount = policy_count; mPolicyCount = policy_count;
mMultiHandles = new CURLM * [mPolicyCount]; mMultiHandles = new CURLM * [mPolicyCount];
mActiveHandles = new int [mPolicyCount];
for (int policy_class(0); policy_class < mPolicyCount; ++policy_class) for (int policy_class(0); policy_class < mPolicyCount; ++policy_class)
{ {
mMultiHandles[policy_class] = curl_multi_init(); mMultiHandles[policy_class] = curl_multi_init();
mActiveHandles[policy_class] = 0;
} }
} }
...@@ -110,8 +117,10 @@ HttpService::ELoopSpeed HttpLibcurl::processTransport() ...@@ -110,8 +117,10 @@ HttpService::ELoopSpeed HttpLibcurl::processTransport()
// Give libcurl some cycles to do I/O & callbacks // Give libcurl some cycles to do I/O & callbacks
for (int policy_class(0); policy_class < mPolicyCount; ++policy_class) for (int policy_class(0); policy_class < mPolicyCount; ++policy_class)
{ {
if (! mMultiHandles[policy_class]) if (! mActiveHandles[policy_class] || ! mMultiHandles[policy_class])
{
continue; continue;
}
int running(0); int running(0);
CURLMcode status(CURLM_CALL_MULTI_PERFORM); CURLMcode status(CURLM_CALL_MULTI_PERFORM);
...@@ -191,6 +200,7 @@ void HttpLibcurl::addOp(HttpOpRequest * op) ...@@ -191,6 +200,7 @@ void HttpLibcurl::addOp(HttpOpRequest * op)
// On success, make operation active // On success, make operation active
mActiveOps.insert(op); mActiveOps.insert(op);
++mActiveHandles[op->mReqPolicy];
} }
...@@ -212,6 +222,7 @@ bool HttpLibcurl::cancel(HttpHandle handle) ...@@ -212,6 +222,7 @@ bool HttpLibcurl::cancel(HttpHandle handle)
// Drop references // Drop references
mActiveOps.erase(it); mActiveOps.erase(it);
--mActiveHandles[op->mReqPolicy];
op->release(); op->release();
return true; return true;
...@@ -273,6 +284,7 @@ bool HttpLibcurl::completeRequest(CURLM * multi_handle, CURL * handle, CURLcode ...@@ -273,6 +284,7 @@ bool HttpLibcurl::completeRequest(CURLM * multi_handle, CURL * handle, CURLcode
// Deactivate request // Deactivate request
mActiveOps.erase(it); mActiveOps.erase(it);
--mActiveHandles[op->mReqPolicy];
op->mCurlActive = false; op->mCurlActive = false;
// Set final status of request if it hasn't failed by other mechanisms yet // Set final status of request if it hasn't failed by other mechanisms yet
...@@ -334,19 +346,9 @@ int HttpLibcurl::getActiveCount() const ...@@ -334,19 +346,9 @@ int HttpLibcurl::getActiveCount() const
int HttpLibcurl::getActiveCountInClass(int policy_class) const int HttpLibcurl::getActiveCountInClass(int policy_class) const
{ {
int count(0); llassert_always(policy_class < mPolicyCount);
for (active_set_t::const_iterator iter(mActiveOps.begin()); return mActiveHandles ? mActiveHandles[policy_class] : 0;
mActiveOps.end() != iter;
++iter)
{
if ((*iter)->mReqPolicy == policy_class)
{
++count;
}
}
return count;
} }
......
...@@ -133,6 +133,7 @@ class HttpLibcurl ...@@ -133,6 +133,7 @@ class HttpLibcurl
active_set_t mActiveOps; active_set_t mActiveOps;
int mPolicyCount; int mPolicyCount;
CURLM ** mMultiHandles; // One handle per policy class CURLM ** mMultiHandles; // One handle per policy class
int * mActiveHandles; // Active count per policy class
}; // end class HttpLibcurl }; // end class HttpLibcurl
} // end namespace LLCore } // end namespace LLCore
......
...@@ -212,6 +212,14 @@ HttpService::ELoopSpeed HttpPolicy::processReadyQueue() ...@@ -212,6 +212,14 @@ HttpService::ELoopSpeed HttpPolicy::processReadyQueue()
for (int policy_class(0); policy_class < mClasses.size(); ++policy_class) for (int policy_class(0); policy_class < mClasses.size(); ++policy_class)
{ {
ClassState & state(*mClasses[policy_class]); ClassState & state(*mClasses[policy_class]);
HttpRetryQueue & retryq(state.mRetryQueue);
HttpReadyQueue & readyq(state.mReadyQueue);
if (retryq.empty() && readyq.empty())
{
continue;
}
const bool throttle_enabled(state.mOptions.mThrottleRate > 0L); const bool throttle_enabled(state.mOptions.mThrottleRate > 0L);
const bool throttle_current(throttle_enabled && now < state.mThrottleEnd); const bool throttle_current(throttle_enabled && now < state.mThrottleEnd);
...@@ -225,9 +233,6 @@ HttpService::ELoopSpeed HttpPolicy::processReadyQueue() ...@@ -225,9 +233,6 @@ HttpService::ELoopSpeed HttpPolicy::processReadyQueue()
int active(transport.getActiveCountInClass(policy_class)); int active(transport.getActiveCountInClass(policy_class));
int needed(state.mOptions.mConnectionLimit - active); // Expect negatives here int needed(state.mOptions.mConnectionLimit - active); // Expect negatives here
HttpRetryQueue & retryq(state.mRetryQueue);
HttpReadyQueue & readyq(state.mReadyQueue);
if (needed > 0) if (needed > 0)
{ {
// First see if we have any retries... // First see if we have any retries...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment