summaryrefslogtreecommitdiff
path: root/indra/llmessage
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2010-05-04 16:20:02 -0700
committerJames Cook <james@lindenlab.com>2010-05-04 16:20:02 -0700
commit5838494c504257e6fff9ea39c309fd4162dfdf60 (patch)
treedcf6ee4464c16b96f8a9da588b8b3969a5cfb77d /indra/llmessage
parent831dd9ca40f199f2a9e89eee56d12e217ced0cc4 (diff)
DEV-49633 WIP, Display name cache uses "Expires" headers for timeouts
Diffstat (limited to 'indra/llmessage')
-rw-r--r--indra/llmessage/llavatarnamecache.cpp56
-rw-r--r--indra/llmessage/llhttpclient.cpp2
2 files changed, 45 insertions, 13 deletions
diff --git a/indra/llmessage/llavatarnamecache.cpp b/indra/llmessage/llavatarnamecache.cpp
index 919159b4ba..560d0f48cf 100644
--- a/indra/llmessage/llavatarnamecache.cpp
+++ b/indra/llmessage/llavatarnamecache.cpp
@@ -167,14 +167,38 @@ private:
// need to store agent ids that are part of this request in case of
// an error, so we can flag them as unavailable
std::vector<LLUUID> mAgentIDs;
+
+ // Need the headers to look up Expires: and Retry-After:
+ LLSD mHeaders;
public:
LLAvatarNameResponder(const std::vector<LLUUID>& agent_ids)
- : mAgentIDs(agent_ids)
+ : mAgentIDs(agent_ids),
+ mHeaders()
{ }
+ /*virtual*/ void completedHeader(U32 status, const std::string& reason,
+ const LLSD& headers)
+ {
+ mHeaders = headers;
+ }
+
/*virtual*/ void result(const LLSD& content)
{
+ const F64 DEFAULT_EXPIRES = 24.0 * 60.0 * 60.0;
+ F64 now = LLFrameTimer::getTotalSeconds();
+
+ // With no expiration info, default to a day
+ F64 expires = now + DEFAULT_EXPIRES;
+
+ // Allow the header to override the default
+ LLSD expires_header = mHeaders["expires"];
+ if (expires_header.isDefined())
+ {
+ LLDate expires_date = expires_header.asDate();
+ expires = expires_date.secondsSinceEpoch();
+ }
+
LLSD agents = content["agents"];
LLSD::array_const_iterator it = agents.beginArray();
for ( ; it != agents.endArray(); ++it)
@@ -185,6 +209,20 @@ public:
LLAvatarName av_name;
av_name.fromLLSD(row);
+ // *TODO: Remove this once People API starts passing "Expires:"
+ // headers.
+ // Prefer per-row data for expiration times
+ LLSD expires_row = row["display_name_expires"];
+ if (expires_row.isDefined())
+ {
+ LLDate expires_date = expires_row.asDate();
+ av_name.mExpires = expires_date.secondsSinceEpoch();
+ }
+ else
+ {
+ av_name.mExpires = expires;
+ }
+
// Some avatars don't have explicit display names set
if (av_name.mDisplayName.empty())
{
@@ -196,18 +234,12 @@ public:
}
}
- // This is called for both successful and failed requests, and is
- // called _after_ result() above.
- /*virtual*/ void completedHeader(U32 status, const std::string& reason,
- const LLSD& headers)
+ /*virtual*/ void error(U32 status, const std::string& reason)
{
- // Only care about headers when there is an error
- if (isGoodStatus(status)) return;
-
// We're going to construct a dummy record and cache it for a while,
// either briefly for a 503 Service Unavailable, or longer for other
// errors.
- F64 retry_timestamp = errorRetryTimestamp(status, headers);
+ F64 retry_timestamp = errorRetryTimestamp(status);
// *NOTE: "??" starts trigraphs in C/C++, escape the question marks.
const std::string DUMMY_NAME("\?\?\?");
@@ -230,16 +262,16 @@ public:
// Return time to retry a request that generated an error, based on
// error type and headers. Return value is seconds-since-epoch.
- F64 errorRetryTimestamp(S32 status, const LLSD& headers)
+ F64 errorRetryTimestamp(S32 status)
{
- LLSD expires = headers["expires"];
+ LLSD expires = mHeaders["expires"];
if (expires.isDefined())
{
LLDate expires_date = expires.asDate();
return expires_date.secondsSinceEpoch();
}
- LLSD retry_after = headers["retry-after"];
+ LLSD retry_after = mHeaders["retry-after"];
if (retry_after.isDefined())
{
// does the header use the delta-seconds type?
diff --git a/indra/llmessage/llhttpclient.cpp b/indra/llmessage/llhttpclient.cpp
index dd56e18caf..bd05c5d2c4 100644
--- a/indra/llmessage/llhttpclient.cpp
+++ b/indra/llmessage/llhttpclient.cpp
@@ -79,8 +79,8 @@ namespace
{
if (mResponder.get())
{
- mResponder->completedRaw(mStatus, mReason, channels, buffer);
mResponder->completedHeader(mStatus, mReason, mHeaderOutput);
+ mResponder->completedRaw(mStatus, mReason, channels, buffer);
}
}
virtual void header(const std::string& header, const std::string& value)