Skip to content
Snippets Groups Projects
Commit 76dd1716 authored by James Cook's avatar James Cook
Browse files

DEV-40528 Viewer 2 floods server with AvatarPropertiesRequest messages causing...

DEV-40528 Viewer 2 floods server with AvatarPropertiesRequest messages causing database load.  Icon cache was only being used to provide images more quickly, not to suppress network traffic.  Made it suppress network traffic, which may result in stale icons occasionally.  Converted online/offline tooltip to use LLAvatarTracker.  Will port to viewer-2-qa-1.  Reviewed with Richard.
parent a744ffce
No related branches found
No related tags found
No related merge requests found
...@@ -32,9 +32,10 @@ ...@@ -32,9 +32,10 @@
#include "llviewerprecompiledheaders.h" #include "llviewerprecompiledheaders.h"
#include "llavatariconctrl.h"
#include "llagent.h" #include "llagent.h"
#include "llavatarconstants.h" #include "llavatarconstants.h"
#include "llavatariconctrl.h"
#include "llcallingcard.h" // for LLAvatarTracker #include "llcallingcard.h" // for LLAvatarTracker
#include "llavataractions.h" #include "llavataractions.h"
#include "llimview.h" #include "llimview.h"
...@@ -139,25 +140,37 @@ void LLAvatarIconCtrl::setValue(const LLSD& value) ...@@ -139,25 +140,37 @@ void LLAvatarIconCtrl::setValue(const LLSD& value)
{ {
if (value.isUUID()) if (value.isUUID())
{ {
LLAvatarPropertiesProcessor* app =
LLAvatarPropertiesProcessor::getInstance();
if (mAvatarId.notNull()) if (mAvatarId.notNull())
{ {
LLAvatarPropertiesProcessor::getInstance()->removeObserver(mAvatarId, this); app->removeObserver(mAvatarId, this);
} }
if (mAvatarId != value.asUUID()) if (mAvatarId != value.asUUID())
{ {
LLAvatarPropertiesProcessor::getInstance()->addObserver(value.asUUID(), this);
LLAvatarPropertiesProcessor::getInstance()->sendAvatarPropertiesRequest(value.asUUID());
mAvatarId = value.asUUID(); mAvatarId = value.asUUID();
// Check if cache already contains image_id for that avatar // *BUG: This will return stale icons if a user changes their
avatar_image_map_t::iterator it; // profile picture. Also, the online/offline tooltips will be
// out of date. However, otherwise we send too many upstream
// AvatarPropertiesRequest messages.
//
// *TODO: Implement a timeout on the icon cache, perhaps a day?,
// and make the cache update if a user views the full-profile for
// an avatar.
it = sImagesCache.find(mAvatarId); // Check if cache already contains image_id for that avatar
avatar_image_map_t::iterator it = sImagesCache.find(mAvatarId);
if (it != sImagesCache.end()) if (it != sImagesCache.end())
{ {
updateFromCache(it->second); updateFromCache(it->second);
} }
else
{
app->addObserver(value.asUUID(), this);
app->sendAvatarPropertiesRequest(value.asUUID());
}
} }
} }
...@@ -181,21 +194,34 @@ void LLAvatarIconCtrl::updateFromCache(LLAvatarIconCtrl::LLImagesCacheItem data) ...@@ -181,21 +194,34 @@ void LLAvatarIconCtrl::updateFromCache(LLAvatarIconCtrl::LLImagesCacheItem data)
LLIconCtrl::setValue("default_profile_picture.j2c"); LLIconCtrl::setValue("default_profile_picture.j2c");
} }
// Update color of status symbol and tool tip // Can only see online status of friends
if (data.flags & AVATAR_ONLINE) if (LLAvatarTracker::instance().isBuddy(mAvatarId))
{ {
mStatusSymbol->setColor(LLColor4::green); if (LLAvatarTracker::instance().isBuddyOnline(mAvatarId))
if (mDrawTooltip)
{ {
setToolTip((LLStringExplicit)"Online"); // Update color of status symbol and tool tip
mStatusSymbol->setColor(LLColor4::green);
if (mDrawTooltip)
{
setToolTip((LLStringExplicit)"Online");
}
}
else
{
mStatusSymbol->setColor(LLColor4::grey);
if (mDrawTooltip)
{
setToolTip((LLStringExplicit)"Offline");
}
} }
} }
else else
{ {
// Not a buddy, no information
mStatusSymbol->setColor(LLColor4::grey); mStatusSymbol->setColor(LLColor4::grey);
if (mDrawTooltip) if (mDrawTooltip)
{ {
setToolTip((LLStringExplicit)"Offline"); setToolTip((LLStringExplicit)"");
} }
} }
} }
......
...@@ -320,6 +320,12 @@ const LLRelationship* LLAvatarTracker::getBuddyInfo(const LLUUID& id) const ...@@ -320,6 +320,12 @@ const LLRelationship* LLAvatarTracker::getBuddyInfo(const LLUUID& id) const
return get_ptr_in_map(mBuddyInfo, id); return get_ptr_in_map(mBuddyInfo, id);
} }
bool LLAvatarTracker::isBuddy(const LLUUID& id) const
{
LLRelationship* info = get_ptr_in_map(mBuddyInfo, id);
return (info != NULL);
}
// online status // online status
void LLAvatarTracker::setBuddyOnline(const LLUUID& id, bool is_online) void LLAvatarTracker::setBuddyOnline(const LLUUID& id, bool is_online)
{ {
......
...@@ -125,6 +125,9 @@ class LLAvatarTracker ...@@ -125,6 +125,9 @@ class LLAvatarTracker
// get full info // get full info
const LLRelationship* getBuddyInfo(const LLUUID& id) const; const LLRelationship* getBuddyInfo(const LLUUID& id) const;
// Is this person a friend/buddy/calling card holder?
bool isBuddy(const LLUUID& id) const;
// online status // online status
void setBuddyOnline(const LLUUID& id, bool is_online); void setBuddyOnline(const LLUUID& id, bool is_online);
bool isBuddyOnline(const LLUUID& id) const; bool isBuddyOnline(const LLUUID& id) const;
......
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