summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2016-04-05 17:01:15 -0400
committerOz Linden <oz@lindenlab.com>2016-04-05 17:01:15 -0400
commitf0107eb8aae46a928b0b3e6564cc4ed3031e1271 (patch)
tree436ccb3c6dce4f72119780915b6e4a67e46623c5
parentaca2085e0e136178733d6fee91aab39bd2c58cbe (diff)
fix merge error that broke reading avatar complexity reports from simulator
-rw-r--r--indra/newview/llavatarrenderinfoaccountant.cpp113
1 files changed, 46 insertions, 67 deletions
diff --git a/indra/newview/llavatarrenderinfoaccountant.cpp b/indra/newview/llavatarrenderinfoaccountant.cpp
index 2be3e8546f..5431daca32 100644
--- a/indra/newview/llavatarrenderinfoaccountant.cpp
+++ b/indra/newview/llavatarrenderinfoaccountant.cpp
@@ -103,89 +103,68 @@ void LLAvatarRenderInfoAccountant::avatarRenderInfoGetCoro(std::string url, U64
if (result.has(KEY_AGENTS))
{
- const LLSD & avatar_render_info = result[KEY_AGENTS];
- if (avatar_render_info.isMap())
+ const LLSD & agents = result[KEY_AGENTS];
+ if (agents.isMap())
{
- if ( avatar_render_info.has(KEY_REPORTING_COMPLEXITY_LIMIT)
- && avatar_render_info.has(KEY_OVER_COMPLEXITY_LIMIT))
+ for (LLSD::map_const_iterator agent_iter = agents.beginMap();
+ agent_iter != agents.endMap();
+ agent_iter++
+ )
{
- U32 reporting = avatar_render_info[KEY_REPORTING_COMPLEXITY_LIMIT].asInteger();
- U32 overlimit = avatar_render_info[KEY_OVER_COMPLEXITY_LIMIT].asInteger();
-
- LL_DEBUGS("AvatarRenderInfo") << "complexity limit: "<<reporting<<" reporting, "<<overlimit<<" over limit"<<LL_ENDL;
-
- LLAvatarRenderNotifier::getInstance()->updateNotificationRegion(reporting, overlimit);
- }
-
- if (avatar_render_info.has(KEY_AGENTS))
- {
- const LLSD & agents = avatar_render_info[KEY_AGENTS];
- if (agents.isMap())
+ LLUUID target_agent_id = LLUUID(agent_iter->first);
+ LLViewerObject* avatarp = gObjectList.findObject(target_agent_id);
+ if (avatarp && avatarp->isAvatar())
{
- for (LLSD::map_const_iterator agent_iter = agents.beginMap();
- agent_iter != agents.endMap();
- agent_iter++
- )
+ const LLSD & agent_info_map = agent_iter->second;
+ if (agent_info_map.isMap())
{
- LLUUID target_agent_id = LLUUID(agent_iter->first);
- LLViewerObject* avatarp = gObjectList.findObject(target_agent_id);
- if (avatarp && avatarp->isAvatar())
- {
- const LLSD & agent_info_map = agent_iter->second;
- if (agent_info_map.isMap())
- {
- LL_DEBUGS("AvatarRenderInfo") << " Agent " << target_agent_id
- << ": " << agent_info_map << LL_ENDL;
-
- if (agent_info_map.has(KEY_WEIGHT))
- {
- ((LLVOAvatar *) avatarp)->setReportedVisualComplexity(agent_info_map[KEY_WEIGHT].asInteger());
- }
- }
- else
- {
- LL_WARNS("AvatarRenderInfo") << "agent entry invalid"
- << " agent " << target_agent_id
- << " map " << agent_info_map
- << LL_ENDL;
- }
- }
- else
+ LL_DEBUGS("AvatarRenderInfo") << " Agent " << target_agent_id
+ << ": " << agent_info_map << LL_ENDL;
+
+ if (agent_info_map.has(KEY_WEIGHT))
{
- LL_DEBUGS("AvatarRenderInfo") << "Unknown agent " << target_agent_id << LL_ENDL;
+ ((LLVOAvatar *) avatarp)->setReportedVisualComplexity(agent_info_map[KEY_WEIGHT].asInteger());
}
- } // for agent_iter
+ }
+ else
+ {
+ LL_WARNS("AvatarRenderInfo") << "agent entry invalid"
+ << " agent " << target_agent_id
+ << " map " << agent_info_map
+ << LL_ENDL;
+ }
}
else
{
- LL_WARNS("AvatarRenderInfo") << "malformed get response agents avatar_render_info is not map" << LL_ENDL;
+ LL_DEBUGS("AvatarRenderInfo") << "Unknown agent " << target_agent_id << LL_ENDL;
}
- } // has "agents"
- else if (avatar_render_info.has(KEY_ERROR))
- {
- const LLSD & error = avatar_render_info[KEY_ERROR];
- LL_WARNS("AvatarRenderInfo") << "Avatar render info GET error: "
- << error[KEY_IDENTIFIER]
- << ": " << error[KEY_MESSAGE]
- << LL_ENDL;
- }
- else
- {
- LL_WARNS("AvatarRenderInfo") << "no agent key in get response" << LL_ENDL;
- }
+ } // for agent_iter
}
else
{
- LL_WARNS("AvatarRenderInfo") << "malformed get response is not map" << LL_ENDL;
+ LL_WARNS("AvatarRenderInfo") << "malformed get response '" << KEY_AGENTS << "' is not map" << LL_ENDL;
}
} // has "agents"
- else if (result.has(KEY_ERROR))
+ else
+ {
+ LL_INFOS("AvatarRenderInfo") << "no '"<< KEY_AGENTS << "' key in get response" << LL_ENDL;
+ }
+
+ if ( result.has(KEY_REPORTING_COMPLEXITY_LIMIT)
+ && result.has(KEY_OVER_COMPLEXITY_LIMIT))
+ {
+ U32 reporting = result[KEY_REPORTING_COMPLEXITY_LIMIT].asInteger();
+ U32 overlimit = result[KEY_OVER_COMPLEXITY_LIMIT].asInteger();
+
+ LL_DEBUGS("AvatarRenderInfo") << "complexity limit: "<<reporting<<" reporting, "<<overlimit<<" over limit"<<LL_ENDL;
+
+ LLAvatarRenderNotifier::getInstance()->updateNotificationRegion(reporting, overlimit);
+ }
+ else
{
- const LLSD & error = result[KEY_ERROR];
- LL_WARNS() << "Avatar render info GET error: "
- << error[KEY_IDENTIFIER]
- << ": " << error[KEY_MESSAGE]
- << " from region " << regionp->getName()
+ LL_WARNS("AvatarRenderInfo")
+ << "response is missing either '" << KEY_REPORTING_COMPLEXITY_LIMIT
+ << "' or '" << KEY_OVER_COMPLEXITY_LIMIT << "'"
<< LL_ENDL;
}