Skip to content
Snippets Groups Projects
Commit e1532afb authored by Richard Nelson's avatar Richard Nelson
Browse files
parents 802a063a 11005a9d
No related branches found
No related tags found
No related merge requests found
...@@ -313,8 +313,10 @@ LLSDParser::LLSDParser() ...@@ -313,8 +313,10 @@ LLSDParser::LLSDParser()
LLSDParser::~LLSDParser() LLSDParser::~LLSDParser()
{ } { }
LLFastTimer::DeclareTimer FTM_SD_PARSE("LLSD Parsing");
S32 LLSDParser::parse(std::istream& istr, LLSD& data, S32 max_bytes) S32 LLSDParser::parse(std::istream& istr, LLSD& data, S32 max_bytes)
{ {
LLFastTimer _(FTM_SD_PARSE);
mCheckLimits = (LLSDSerialize::SIZE_UNLIMITED == max_bytes) ? false : true; mCheckLimits = (LLSDSerialize::SIZE_UNLIMITED == max_bytes) ? false : true;
mMaxBytesLeft = max_bytes; mMaxBytesLeft = max_bytes;
return doParse(istr, data); return doParse(istr, data);
......
...@@ -354,6 +354,7 @@ static unsigned get_till_eol(std::istream& input, char *buf, unsigned bufsize) ...@@ -354,6 +354,7 @@ static unsigned get_till_eol(std::istream& input, char *buf, unsigned bufsize)
return count; return count;
} }
LLFastTimer::DeclareTimer FTM_SD_PARSE_READ_STREAM("LLSD Read Stream");
S32 LLSDXMLParser::Impl::parse(std::istream& input, LLSD& data) S32 LLSDXMLParser::Impl::parse(std::istream& input, LLSD& data)
{ {
XML_Status status; XML_Status status;
...@@ -373,10 +374,13 @@ S32 LLSDXMLParser::Impl::parse(std::istream& input, LLSD& data) ...@@ -373,10 +374,13 @@ S32 LLSDXMLParser::Impl::parse(std::istream& input, LLSD& data)
{ {
break; break;
} }
count = get_till_eol(input, (char *)buffer, BUFFER_SIZE); { LLFastTimer _(FTM_SD_PARSE_READ_STREAM);
if (!count)
{ count = get_till_eol(input, (char *)buffer, BUFFER_SIZE);
break; if (!count)
{
break;
}
} }
status = XML_ParseBuffer(mParser, count, false); status = XML_ParseBuffer(mParser, count, false);
......
...@@ -1034,8 +1034,11 @@ void LLInventoryItem::asLLSD( LLSD& sd ) const ...@@ -1034,8 +1034,11 @@ void LLInventoryItem::asLLSD( LLSD& sd ) const
sd[INV_CREATION_DATE_LABEL] = (S32) mCreationDate; sd[INV_CREATION_DATE_LABEL] = (S32) mCreationDate;
} }
LLFastTimer::DeclareTimer FTM_INVENTORY_SD_DESERIALIZE("Inventory SD Deserialize");
bool LLInventoryItem::fromLLSD(const LLSD& sd) bool LLInventoryItem::fromLLSD(const LLSD& sd)
{ {
LLFastTimer _(FTM_INVENTORY_SD_DESERIALIZE);
mInventoryType = LLInventoryType::IT_NONE; mInventoryType = LLInventoryType::IT_NONE;
mAssetUUID.setNull(); mAssetUUID.setNull();
std::string w; std::string w;
......
...@@ -2040,8 +2040,10 @@ void LLFolderView::removeItemID(const LLUUID& id) ...@@ -2040,8 +2040,10 @@ void LLFolderView::removeItemID(const LLUUID& id)
mItemMap.erase(id); mItemMap.erase(id);
} }
LLFastTimer::DeclareTimer FTM_GET_ITEM_BY_ID("Get FolderViewItem by ID");
LLFolderViewItem* LLFolderView::getItemByID(const LLUUID& id) LLFolderViewItem* LLFolderView::getItemByID(const LLUUID& id)
{ {
LLFastTimer _(FTM_GET_ITEM_BY_ID);
if (id == getListener()->getUUID()) if (id == getListener()->getUUID())
{ {
return this; return this;
......
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