Skip to content
Snippets Groups Projects
Commit d3db9dd2 authored by Aimee Linden's avatar Aimee Linden
Browse files

DEV-52379 FIXED (Supplementary) Viewer is not successfully caching object geometry

Encapsulated building of the cache filename into a help function to prevent code
 duplication.

Reviewed by Tofu.
parent 0847d29e
No related branches found
No related tags found
No related merge requests found
...@@ -79,6 +79,8 @@ ...@@ -79,6 +79,8 @@
// format changes. JC // format changes. JC
const U32 INDRA_OBJECT_CACHE_VERSION = 14; const U32 INDRA_OBJECT_CACHE_VERSION = 14;
// Format string used to construct filename for the object cache
static const char OBJECT_CACHE_FILENAME[] = "objects_%d_%d.slc";
extern BOOL gNoRender; extern BOOL gNoRender;
...@@ -323,13 +325,25 @@ LLViewerRegion::~LLViewerRegion() ...@@ -323,13 +325,25 @@ LLViewerRegion::~LLViewerRegion()
delete mEventPoll; delete mEventPoll;
LLHTTPSender::clearSender(mHost); LLHTTPSender::clearSender(mHost);
saveCache(); saveObjectCache();
std::for_each(mObjectPartition.begin(), mObjectPartition.end(), DeletePointer()); std::for_each(mObjectPartition.begin(), mObjectPartition.end(), DeletePointer());
} }
void LLViewerRegion::loadCache() const std::string LLViewerRegion::getObjectCacheFilename(U64 mHandle) const
{
std::string filename;
U32 region_x, region_y;
grid_from_region_handle(mHandle, &region_x, &region_y);
filename = gDirUtilp->getExpandedFilename(LL_PATH_CACHE,
llformat(OBJECT_CACHE_FILENAME, region_x, region_y));
return filename;
}
void LLViewerRegion::loadObjectCache()
{ {
if (mCacheLoaded) if (mCacheLoaded)
{ {
...@@ -341,9 +355,8 @@ void LLViewerRegion::loadCache() ...@@ -341,9 +355,8 @@ void LLViewerRegion::loadCache()
LLVOCacheEntry *entry; LLVOCacheEntry *entry;
std::string filename; std::string filename = getObjectCacheFilename(mHandle);
filename = gDirUtilp->getExpandedFilename(LL_PATH_CACHE,"") + gDirUtilp->getDirDelimiter() + LL_DEBUGS("ObjectCache") << filename << LL_ENDL;
llformat("objects_%d_%d.slc",U32(mHandle>>32)/REGION_WIDTH_UNITS, U32(mHandle)/REGION_WIDTH_UNITS );
LLFILE* fp = LLFile::fopen(filename, "rb"); /* Flawfinder: ignore */ LLFILE* fp = LLFile::fopen(filename, "rb"); /* Flawfinder: ignore */
if (!fp) if (!fp)
...@@ -414,7 +427,7 @@ void LLViewerRegion::loadCache() ...@@ -414,7 +427,7 @@ void LLViewerRegion::loadCache()
} }
void LLViewerRegion::saveCache() void LLViewerRegion::saveObjectCache()
{ {
if (!mCacheLoaded) if (!mCacheLoaded)
{ {
...@@ -427,9 +440,8 @@ void LLViewerRegion::saveCache() ...@@ -427,9 +440,8 @@ void LLViewerRegion::saveCache()
return; return;
} }
std::string filename; std::string filename = getObjectCacheFilename(mHandle);
filename = gDirUtilp->getExpandedFilename(LL_PATH_CACHE,"") + gDirUtilp->getDirDelimiter() + LL_DEBUGS("ObjectCache") << filename << LL_ENDL;
llformat("objects_%d_%d.slc", U32(mHandle>>32)/REGION_WIDTH_UNITS, U32(mHandle)/REGION_WIDTH_UNITS );
LLFILE* fp = LLFile::fopen(filename, "wb"); /* Flawfinder: ignore */ LLFILE* fp = LLFile::fopen(filename, "wb"); /* Flawfinder: ignore */
if (!fp) if (!fp)
...@@ -1454,7 +1466,7 @@ void LLViewerRegion::unpackRegionHandshake() ...@@ -1454,7 +1466,7 @@ void LLViewerRegion::unpackRegionHandshake()
// Now that we have the name, we can load the cache file // Now that we have the name, we can load the cache file
// off disk. // off disk.
loadCache(); loadObjectCache();
// After loading cache, signal that simulator can start // After loading cache, signal that simulator can start
// sending data. // sending data.
......
...@@ -99,9 +99,8 @@ public: ...@@ -99,9 +99,8 @@ public:
~LLViewerRegion(); ~LLViewerRegion();
// Call this after you have the region name and handle. // Call this after you have the region name and handle.
void loadCache(); void loadObjectCache();
void saveObjectCache();
void saveCache();
void sendMessage(); // Send the current message to this region's simulator void sendMessage(); // Send the current message to this region's simulator
void sendReliableMessage(); // Send the current message to this region's simulator void sendReliableMessage(); // Send the current message to this region's simulator
...@@ -330,6 +329,9 @@ public: ...@@ -330,6 +329,9 @@ public:
LLDynamicArray<LLUUID> mMapAvatarIDs; LLDynamicArray<LLUUID> mMapAvatarIDs;
private: private:
// determine the cache filename for the region from the region handle
const std::string LLViewerRegion::getObjectCacheFilename(U64 mHandle) const;
// The surfaces and other layers // The surfaces and other layers
LLSurface* mLandp; LLSurface* mLandp;
...@@ -404,7 +406,7 @@ private: ...@@ -404,7 +406,7 @@ private:
// Cache ID is unique per-region, across renames, moving locations, // Cache ID is unique per-region, across renames, moving locations,
// etc. // etc.
LLUUID mCacheID; LLUUID mCacheID;
typedef std::map<std::string, std::string> CapabilityMap; typedef std::map<std::string, std::string> CapabilityMap;
CapabilityMap mCapabilities; CapabilityMap mCapabilities;
......
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