Changes from code review with Nat
parent
ec998b4c6e
commit
8913ed6692
|
|
@ -140,6 +140,8 @@ LLCoprocedureManager::poolPtr_t LLCoprocedureManager::initializePool(const std::
|
|||
std::string keyName = "PoolSize" + poolName;
|
||||
int size = 0;
|
||||
|
||||
LL_ERRS_IF(poolName.empty(), "CoprocedureManager") << "Poolname must not be empty" << LL_ENDL;
|
||||
|
||||
if (mPropertyQueryFn && !mPropertyQueryFn.empty())
|
||||
{
|
||||
size = mPropertyQueryFn(keyName);
|
||||
|
|
@ -159,9 +161,10 @@ LLCoprocedureManager::poolPtr_t LLCoprocedureManager::initializePool(const std::
|
|||
LL_WARNS() << "LLCoprocedureManager: No setting for \"" << keyName << "\" setting pool size to default of " << size << LL_ENDL;
|
||||
}
|
||||
|
||||
poolPtr_t pool = poolPtr_t(new LLCoprocedurePool(poolName, size));
|
||||
poolPtr_t pool(new LLCoprocedurePool(poolName, size));
|
||||
mPoolMap.insert(poolMap_t::value_type(poolName, pool));
|
||||
|
||||
LL_ERRS_IF(!pool, "CoprocedureManager") << "Unable to create pool named \"" << poolName << "\" FATAL!" << LL_ENDL;
|
||||
return pool;
|
||||
}
|
||||
|
||||
|
|
@ -182,12 +185,6 @@ LLUUID LLCoprocedureManager::enqueueCoprocedure(const std::string &pool, const s
|
|||
targetPool = (*it).second;
|
||||
}
|
||||
|
||||
if (!targetPool)
|
||||
{
|
||||
LL_WARNS() << "LLCoprocedureManager unable to create coprocedure pool named \"" << pool << "\"" << LL_ENDL;
|
||||
return LLUUID::null;
|
||||
}
|
||||
|
||||
return targetPool->enqueueCoprocedure(name, proc);
|
||||
}
|
||||
|
||||
|
|
@ -286,14 +283,12 @@ LLCoprocedurePool::LLCoprocedurePool(const std::string &poolName, size_t size):
|
|||
{
|
||||
for (size_t count = 0; count < mPoolSize; ++count)
|
||||
{
|
||||
LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t httpAdapter =
|
||||
LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t(
|
||||
new LLCoreHttpUtil::HttpCoroutineAdapter( mPoolName + "Adapter", mHTTPPolicy));
|
||||
LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t httpAdapter(new LLCoreHttpUtil::HttpCoroutineAdapter( mPoolName + "Adapter", mHTTPPolicy));
|
||||
|
||||
std::string uploadCoro = LLCoros::instance().launch("LLCoprocedurePool("+mPoolName+")::coprocedureInvokerCoro",
|
||||
std::string pooledCoro = LLCoros::instance().launch("LLCoprocedurePool("+mPoolName+")::coprocedureInvokerCoro",
|
||||
boost::bind(&LLCoprocedurePool::coprocedureInvokerCoro, this, httpAdapter));
|
||||
|
||||
mCoroMapping.insert(CoroAdapterMap_t::value_type(uploadCoro, httpAdapter));
|
||||
mCoroMapping.insert(CoroAdapterMap_t::value_type(pooledCoro, httpAdapter));
|
||||
}
|
||||
|
||||
LL_INFOS() << "Created coprocedure pool named \"" << mPoolName << "\" with " << size << " items." << LL_ENDL;
|
||||
|
|
@ -313,12 +308,9 @@ void LLCoprocedurePool::shutdown(bool hardShutdown)
|
|||
|
||||
for (it = mCoroMapping.begin(); it != mCoroMapping.end(); ++it)
|
||||
{
|
||||
if (!(*it).first.empty())
|
||||
if (hardShutdown)
|
||||
{
|
||||
if (hardShutdown)
|
||||
{
|
||||
LLCoros::instance().kill((*it).first);
|
||||
}
|
||||
LLCoros::instance().kill((*it).first);
|
||||
}
|
||||
if ((*it).second)
|
||||
{
|
||||
|
|
@ -366,7 +358,7 @@ bool LLCoprocedurePool::cancelCoprocedure(const LLUUID &id)
|
|||
}
|
||||
}
|
||||
|
||||
LL_INFOS() << "Coprocedure with Id=" << id.asString() << " was not found." << " in pool \"" << mPoolName << "\"" << LL_ENDL;
|
||||
LL_INFOS() << "Coprocedure with Id=" << id.asString() << " was not found in pool \"" << mPoolName << "\"" << LL_ENDL;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -385,7 +377,7 @@ void LLCoprocedurePool::coprocedureInvokerCoro(LLCoreHttpUtil::HttpCoroutineAdap
|
|||
{
|
||||
QueuedCoproc::ptr_t coproc = mPendingCoprocs.front();
|
||||
mPendingCoprocs.pop_front();
|
||||
mActiveCoprocs.insert(ActiveCoproc_t::value_type(coproc->mId, httpAdapter));
|
||||
ActiveCoproc_t::iterator itActive = mActiveCoprocs.insert(ActiveCoproc_t::value_type(coproc->mId, httpAdapter)).first;
|
||||
|
||||
LL_INFOS() << "Dequeued and invoking coprocedure(" << coproc->mName << ") with id=" << coproc->mId.asString() << " in pool \"" << mPoolName << "\"" << LL_ENDL;
|
||||
|
||||
|
|
@ -405,11 +397,7 @@ void LLCoprocedurePool::coprocedureInvokerCoro(LLCoreHttpUtil::HttpCoroutineAdap
|
|||
|
||||
LL_INFOS() << "Finished coprocedure(" << coproc->mName << ")" << " in pool \"" << mPoolName << "\"" << LL_ENDL;
|
||||
|
||||
ActiveCoproc_t::iterator itActive = mActiveCoprocs.find(coproc->mId);
|
||||
if (itActive != mActiveCoprocs.end())
|
||||
{
|
||||
mActiveCoprocs.erase(itActive);
|
||||
}
|
||||
mActiveCoprocs.erase(itActive);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1430,7 +1430,7 @@ std::string LLUrlEntryExperienceProfile::getLabel( const std::string &url, const
|
|||
return LLTrans::getString("ExperienceNameNull");
|
||||
}
|
||||
|
||||
const LLSD& experience_details = LLExperienceCache::getInstance()->get(experience_id);
|
||||
const LLSD& experience_details = LLExperienceCache::instance().get(experience_id);
|
||||
if(!experience_details.isUndefined())
|
||||
{
|
||||
std::string experience_name_string = experience_details[LLExperienceCache::NAME].asString();
|
||||
|
|
@ -1438,7 +1438,7 @@ std::string LLUrlEntryExperienceProfile::getLabel( const std::string &url, const
|
|||
}
|
||||
|
||||
addObserver(experience_id_string, url, cb);
|
||||
LLExperienceCache::getInstance()->get(experience_id, boost::bind(&LLUrlEntryExperienceProfile::onExperienceDetails, this, _1));
|
||||
LLExperienceCache::instance().get(experience_id, boost::bind(&LLUrlEntryExperienceProfile::onExperienceDetails, this, _1));
|
||||
return LLTrans::getString("LoadingData");
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -357,7 +357,7 @@ void LLFloaterCompileQueue::handleInventory(LLViewerObject *viewer_object,
|
|||
LLScriptQueueData* datap = new LLScriptQueueData(getKey().asUUID(),
|
||||
viewer_object->getID(), itemp);
|
||||
|
||||
LLExperienceCache::getInstance()->fetchAssociatedExperience(itemp->getParentUUID(), itemp->getUUID(),
|
||||
LLExperienceCache::instance().fetchAssociatedExperience(itemp->getParentUUID(), itemp->getUUID(),
|
||||
boost::bind(&LLFloaterCompileQueue::requestAsset, datap, _1));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ public:
|
|||
if(params.size() != 2 || params[1].asString() != "profile")
|
||||
return false;
|
||||
|
||||
LLExperienceCache::getInstance()->get(params[0].asUUID(), boost::bind(&LLExperienceHandler::experienceCallback, this, _1));
|
||||
LLExperienceCache::instance().get(params[0].asUUID(), boost::bind(&LLExperienceHandler::experienceCallback, this, _1));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -288,8 +288,8 @@ BOOL LLFloaterExperienceProfile::postBuild()
|
|||
|
||||
if (mExperienceId.notNull())
|
||||
{
|
||||
LLExperienceCache::getInstance()->fetch(mExperienceId, true);
|
||||
LLExperienceCache::getInstance()->get(mExperienceId, boost::bind(&LLFloaterExperienceProfile::experienceCallback,
|
||||
LLExperienceCache::instance().fetch(mExperienceId, true);
|
||||
LLExperienceCache::instance().get(mExperienceId, boost::bind(&LLFloaterExperienceProfile::experienceCallback,
|
||||
getDerivedHandle<LLFloaterExperienceProfile>(), _1));
|
||||
|
||||
LLViewerRegion* region = gAgent.getRegion();
|
||||
|
|
@ -799,8 +799,8 @@ void LLFloaterExperienceProfile::onSaveComplete( const LLSD& content )
|
|||
}
|
||||
|
||||
refreshExperience(*it);
|
||||
LLExperienceCache::getInstance()->insert(*it);
|
||||
LLExperienceCache::getInstance()->fetch(id, true);
|
||||
LLExperienceCache::instance().insert(*it);
|
||||
LLExperienceCache::instance().fetch(id, true);
|
||||
|
||||
if(mSaveCompleteAction==VIEW)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3699,7 +3699,7 @@ bool LLPanelRegionExperiences::refreshFromRegion(LLViewerRegion* region)
|
|||
mTrusted->loading();
|
||||
mTrusted->setReadonly(!allow_modify);
|
||||
|
||||
LLExperienceCache::getInstance()->getRegionExperiences(boost::bind(&LLPanelRegionExperiences::regionCapabilityQuery, region, _1),
|
||||
LLExperienceCache::instance().getRegionExperiences(boost::bind(&LLPanelRegionExperiences::regionCapabilityQuery, region, _1),
|
||||
boost::bind(&LLPanelRegionExperiences::infoCallback, getDerivedHandle<LLPanelRegionExperiences>(), _1));
|
||||
|
||||
return LLPanelRegionInfo::refreshFromRegion(region);
|
||||
|
|
@ -3727,7 +3727,7 @@ BOOL LLPanelRegionExperiences::sendUpdate()
|
|||
content["blocked"]=addIds(mBlocked);
|
||||
content["trusted"]=addIds(mTrusted);
|
||||
|
||||
LLExperienceCache::getInstance()->setRegionExperiences(boost::bind(&LLPanelRegionExperiences::regionCapabilityQuery, region, _1),
|
||||
LLExperienceCache::instance().setRegionExperiences(boost::bind(&LLPanelRegionExperiences::regionCapabilityQuery, region, _1),
|
||||
content, boost::bind(&LLPanelRegionExperiences::infoCallback, getDerivedHandle<LLPanelRegionExperiences>(), _1));
|
||||
|
||||
return TRUE;
|
||||
|
|
|
|||
|
|
@ -268,7 +268,7 @@ void LLFloaterReporter::getExperienceInfo(const LLUUID& experience_id)
|
|||
|
||||
if (LLUUID::null != mExperienceID)
|
||||
{
|
||||
const LLSD& experience = LLExperienceCache::getInstance()->get(mExperienceID);
|
||||
const LLSD& experience = LLExperienceCache::instance().get(mExperienceID);
|
||||
std::stringstream desc;
|
||||
|
||||
if(experience.isDefined())
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@ void LLPanelExperienceListEditor::onItems()
|
|||
columns[0]["value"] = getString("loading");
|
||||
mItems->addElement(item);
|
||||
|
||||
LLExperienceCache::getInstance()->get(experience, boost::bind(&LLPanelExperienceListEditor::experienceDetailsCallback,
|
||||
LLExperienceCache::instance().get(experience, boost::bind(&LLPanelExperienceListEditor::experienceDetailsCallback,
|
||||
getDerivedHandle<LLPanelExperienceListEditor>(), _1));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ void LLPanelExperienceLog::refresh()
|
|||
}
|
||||
const LLSD event = dayArray[i];
|
||||
LLUUID id = event[LLExperienceCache::EXPERIENCE_ID].asUUID();
|
||||
const LLSD& experience = LLExperienceCache::getInstance()->get(id);
|
||||
const LLSD& experience = LLExperienceCache::instance().get(id);
|
||||
if(experience.isUndefined()){
|
||||
waiting = true;
|
||||
waiting_id = id;
|
||||
|
|
@ -168,7 +168,7 @@ void LLPanelExperienceLog::refresh()
|
|||
{
|
||||
mEventList->deleteAllItems();
|
||||
mEventList->setCommentText(getString("loading"));
|
||||
LLExperienceCache::getInstance()->get(waiting_id, boost::bind(&LLPanelExperienceLog::refresh, this));
|
||||
LLExperienceCache::instance().get(waiting_id, boost::bind(&LLPanelExperienceLog::refresh, this));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ void LLPanelExperiencePicker::find()
|
|||
std::string text = getChild<LLUICtrl>(TEXT_EDIT)->getValue().asString();
|
||||
mQueryID.generate();
|
||||
|
||||
LLExperienceCache::getInstance()->findExperienceByName(text, mCurrentPage,
|
||||
LLExperienceCache::instance().findExperienceByName(text, mCurrentPage,
|
||||
boost::bind(&LLPanelExperiencePicker::findResults, getDerivedHandle<LLPanelExperiencePicker>(), mQueryID, _1));
|
||||
|
||||
getChild<LLScrollListCtrl>(LIST_RESULTS)->deleteAllItems();
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ void LLPanelGroupExperiences::activate()
|
|||
return;
|
||||
}
|
||||
|
||||
LLExperienceCache::getInstance()->getGroupExperiences(getGroupID(),
|
||||
LLExperienceCache::instance().getGroupExperiences(getGroupID(),
|
||||
boost::bind(&LLPanelGroupExperiences::groupExperiencesResults, getDerivedHandle<LLPanelGroupExperiences>(), _1));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1325,7 +1325,7 @@ void LLLiveLSLEditor::buildExperienceList()
|
|||
position = ADD_TOP;
|
||||
}
|
||||
|
||||
const LLSD& experience = LLExperienceCache::getInstance()->get(id);
|
||||
const LLSD& experience = LLExperienceCache::instance().get(id);
|
||||
if(experience.isUndefined())
|
||||
{
|
||||
mExperiences->add(getString("loading"), id, position);
|
||||
|
|
@ -1344,7 +1344,7 @@ void LLLiveLSLEditor::buildExperienceList()
|
|||
|
||||
if(!foundAssociated )
|
||||
{
|
||||
const LLSD& experience = LLExperienceCache::getInstance()->get(associated);
|
||||
const LLSD& experience = LLExperienceCache::instance().get(associated);
|
||||
if(experience.isDefined())
|
||||
{
|
||||
std::string experience_name_string = experience[LLExperienceCache::NAME].asString();
|
||||
|
|
@ -1365,7 +1365,7 @@ void LLLiveLSLEditor::buildExperienceList()
|
|||
if(last.notNull())
|
||||
{
|
||||
mExperiences->setEnabled(FALSE);
|
||||
LLExperienceCache::getInstance()->get(last, boost::bind(&LLLiveLSLEditor::buildExperienceList, this));
|
||||
LLExperienceCache::instance().get(last, boost::bind(&LLLiveLSLEditor::buildExperienceList, this));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -2038,7 +2038,7 @@ void LLLiveLSLEditor::loadAsset()
|
|||
|
||||
if(item)
|
||||
{
|
||||
LLExperienceCache::getInstance()->fetchAssociatedExperience(item->getParentUUID(), item->getUUID(),
|
||||
LLExperienceCache::instance().fetchAssociatedExperience(item->getParentUUID(), item->getUUID(),
|
||||
boost::bind(&LLLiveLSLEditor::setAssociatedExperience, getDerivedHandle<LLLiveLSLEditor>(), _1));
|
||||
|
||||
bool isGodlike = gAgent.isGodlike();
|
||||
|
|
|
|||
|
|
@ -328,7 +328,7 @@ void LLSidepanelItemInfo::refreshFromItem(LLViewerInventoryItem* item)
|
|||
tb->setText(getString("loading_experience"));
|
||||
tb->setVisible(TRUE);
|
||||
|
||||
LLExperienceCache::getInstance()->fetchAssociatedExperience(item->getParentUUID(), item->getUUID(),
|
||||
LLExperienceCache::instance().fetchAssociatedExperience(item->getParentUUID(), item->getUUID(),
|
||||
boost::bind(&LLSidepanelItemInfo::setAssociatedExperience, getDerivedHandle<LLSidepanelItemInfo>(), _1));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2822,7 +2822,7 @@ void LLStartUp::initNameCache()
|
|||
void LLStartUp::initExperiences()
|
||||
{
|
||||
// Should trigger loading the cache.
|
||||
LLExperienceCache::getInstance()->setCapabilityQuery(
|
||||
LLExperienceCache::instance().setCapabilityQuery(
|
||||
boost::bind(&LLAgent::getRegionCapability, &gAgent, _1));
|
||||
|
||||
LLExperienceLog::instance().initialize();
|
||||
|
|
|
|||
|
|
@ -6653,7 +6653,7 @@ void process_script_question(LLMessageSystem *msg, void **user_data)
|
|||
else if(experienceid.notNull())
|
||||
{
|
||||
payload["experience"]=experienceid;
|
||||
LLExperienceCache::getInstance()->get(experienceid, boost::bind(process_script_experience_details, _1, args, payload));
|
||||
LLExperienceCache::instance().get(experienceid, boost::bind(process_script_experience_details, _1, args, payload));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue