diff options
| author | prep <prep@lindenlab.com> | 2013-02-28 16:23:18 -0500 | 
|---|---|---|
| committer | prep <prep@lindenlab.com> | 2013-02-28 16:23:18 -0500 | 
| commit | 105c286bf3906a17d4c8560573e81b09fc29086b (patch) | |
| tree | 362d3d99cc51cfea3cf5a4389a327b80b7e0ae9d | |
| parent | c9feefb714291fc80f9eadfda2e1ec5f68ad0a84 (diff) | |
| parent | ecb3d1d64d035f22c6d85864131cae6a1108fc68 (diff) | |
merge
| -rwxr-xr-x | indra/newview/llappearancemgr.cpp | 25 | ||||
| -rwxr-xr-x | indra/newview/llappearancemgr.h | 3 | 
2 files changed, 28 insertions, 0 deletions
| diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 48a2ab0eb2..6c3858b947 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -3165,6 +3165,27 @@ public:  	LLPointer<LLHTTPRetryPolicy> mRetryPolicy;  }; +LLSD LLAppearanceMgr::dumpCOF() const +{ +	LLSD result = LLSD::emptyArray(); +	 +	LLInventoryModel::cat_array_t cat_array; +	LLInventoryModel::item_array_t item_array; +	gInventory.collectDescendents(getCOF(),cat_array,item_array,LLInventoryModel::EXCLUDE_TRASH); +	for (S32 i=0; i<item_array.count(); i++) +	{ +		const LLViewerInventoryItem* inv_item = item_array.get(i).get(); +		LLSD item; +		item["item_id"] = inv_item->getUUID(); +		item["linked_item_id"] = inv_item->getLinkedUUID(); +		item["name"] = inv_item->getName(); +		item["description"] = inv_item->getActualDescription(); +		item["type"] = inv_item->getActualType(); +		result.append(item); +	} +	return result; +} +  void LLAppearanceMgr::requestServerAppearanceUpdate(LLCurl::ResponderPtr responder_ptr)  {  	if (gAgentAvatarp->isEditingAppearance())  @@ -3196,6 +3217,10 @@ void LLAppearanceMgr::requestServerAppearanceUpdate(LLCurl::ResponderPtr respond  	{  		body["cof_version"] = cof_version+999;  	} +	if (gSavedSettings.getBOOL("DebugAvatarAppearanceMessage")) +	{ +		body["debug_cof"] = dumpCOF(); 	 +	}  	LL_DEBUGS("Avatar") << "request url " << url << " my_cof_version " << cof_version << llendl;  	//LLCurl::ResponderPtr responder_ptr; diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h index b35504eb1f..84e08db4c8 100755 --- a/indra/newview/llappearancemgr.h +++ b/indra/newview/llappearancemgr.h @@ -94,6 +94,9 @@ public:  	const LLUUID getCOF() const;  	S32 getCOFVersion() const; +	// Debugging - get truncated LLSD summary of COF contents. +	LLSD dumpCOF() const; +  	// COF version of last viewer-initiated appearance update request.  	S32 mLastUpdateRequestCOFVersion;  	S32 getLastUpdateRequestCOFVersion() const; | 
