summaryrefslogtreecommitdiff
path: root/indra/newview/llfloatermemleak.cpp
diff options
context:
space:
mode:
authorAnsariel <ansariel.hiller@phoenixviewer.com>2024-05-22 21:25:21 +0200
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-22 22:40:26 +0300
commite2e37cced861b98de8c1a7c9c0d3a50d2d90e433 (patch)
tree1bb897489ce524986f6196201c10ac0d8861aa5f /indra/newview/llfloatermemleak.cpp
parent069ea06848f766466f1a281144c82a0f2bd79f3a (diff)
Fix line endlings
Diffstat (limited to 'indra/newview/llfloatermemleak.cpp')
-rw-r--r--indra/newview/llfloatermemleak.cpp460
1 files changed, 230 insertions, 230 deletions
diff --git a/indra/newview/llfloatermemleak.cpp b/indra/newview/llfloatermemleak.cpp
index 68425116c6..cd5bea1be4 100644
--- a/indra/newview/llfloatermemleak.cpp
+++ b/indra/newview/llfloatermemleak.cpp
@@ -1,230 +1,230 @@
-/**
- * @file llfloatermemleak.cpp
- * @brief LLFloatermemleak class definition
- *
- * $LicenseInfo:firstyear=2007&license=viewerlgpl$
- * Second Life Viewer Source Code
- * Copyright (C) 2010, Linden Research, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation;
- * version 2.1 of the License only.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
- * $/LicenseInfo$
- */
-
-#include "llviewerprecompiledheaders.h"
-
-#include "llfloatermemleak.h"
-
-#include "lluictrlfactory.h"
-#include "llbutton.h"
-#include "llspinctrl.h"
-#include "llresmgr.h"
-
-#include "llmath.h"
-#include "llviewerwindow.h"
-
-U32 LLFloaterMemLeak::sMemLeakingSpeed = 0 ; //bytes leaked per frame
-U32 LLFloaterMemLeak::sMaxLeakedMem = 0 ; //maximum allowed leaked memory
-U32 LLFloaterMemLeak::sTotalLeaked = 0 ;
-S32 LLFloaterMemLeak::sStatus = LLFloaterMemLeak::STOP ;
-bool LLFloaterMemLeak::sbAllocationFailed = false ;
-
-extern bool gSimulateMemLeak;
-
-LLFloaterMemLeak::LLFloaterMemLeak(const LLSD& key)
- : LLFloater(key)
-{
- setTitle("Memory Leaking Simulation Floater");
- mCommitCallbackRegistrar.add("MemLeak.ChangeLeakingSpeed", boost::bind(&LLFloaterMemLeak::onChangeLeakingSpeed, this));
- mCommitCallbackRegistrar.add("MemLeak.ChangeMaxMemLeaking", boost::bind(&LLFloaterMemLeak::onChangeMaxMemLeaking, this));
- mCommitCallbackRegistrar.add("MemLeak.Start", boost::bind(&LLFloaterMemLeak::onClickStart, this));
- mCommitCallbackRegistrar.add("MemLeak.Stop", boost::bind(&LLFloaterMemLeak::onClickStop, this));
- mCommitCallbackRegistrar.add("MemLeak.Release", boost::bind(&LLFloaterMemLeak::onClickRelease, this));
- mCommitCallbackRegistrar.add("MemLeak.Close", boost::bind(&LLFloaterMemLeak::onClickClose, this));
-}
-//----------------------------------------------
-
-bool LLFloaterMemLeak::postBuild(void)
-{
- F32 a, b ;
- a = getChild<LLUICtrl>("leak_speed")->getValue().asReal();
- if(a > (F32)(0xFFFFFFFF))
- {
- sMemLeakingSpeed = 0xFFFFFFFF ;
- }
- else
- {
- sMemLeakingSpeed = (U32)a ;
- }
- b = getChild<LLUICtrl>("max_leak")->getValue().asReal();
- if(b > (F32)0xFFF)
- {
- sMaxLeakedMem = 0xFFFFFFFF ;
- }
- else
- {
- sMaxLeakedMem = ((U32)b) << 20 ;
- }
-
- sbAllocationFailed = false ;
- return true ;
-}
-LLFloaterMemLeak::~LLFloaterMemLeak()
-{
- release() ;
-
- sMemLeakingSpeed = 0 ; //bytes leaked per frame
- sMaxLeakedMem = 0 ; //maximum allowed leaked memory
-}
-
-void LLFloaterMemLeak::release()
-{
- if(mLeakedMem.empty())
- {
- return ;
- }
-
- for(S32 i = 0 ; i < (S32)mLeakedMem.size() ; i++)
- {
- delete[] mLeakedMem[i] ;
- }
- mLeakedMem.clear() ;
-
- sStatus = STOP ;
- sTotalLeaked = 0 ;
- sbAllocationFailed = false ;
- gSimulateMemLeak = false;
-}
-
-void LLFloaterMemLeak::stop()
-{
- sStatus = STOP ;
- sbAllocationFailed = true ;
-}
-
-void LLFloaterMemLeak::idle()
-{
- if(STOP == sStatus)
- {
- return ;
- }
-
- sbAllocationFailed = false ;
-
- if(RELEASE == sStatus)
- {
- release() ;
- return ;
- }
-
- char* p = NULL ;
- if(sMemLeakingSpeed > 0 && sTotalLeaked < sMaxLeakedMem)
- {
- p = new char[sMemLeakingSpeed] ;
-
- if(p)
- {
- mLeakedMem.push_back(p) ;
- sTotalLeaked += sMemLeakingSpeed ;
- }
- }
- if(!p)
- {
- stop();
- }
-}
-
-//----------------------
-void LLFloaterMemLeak::onChangeLeakingSpeed()
-{
- F32 tmp ;
- tmp =getChild<LLUICtrl>("leak_speed")->getValue().asReal();
-
- if(tmp > (F32)0xFFFFFFFF)
- {
- sMemLeakingSpeed = 0xFFFFFFFF ;
- }
- else
- {
- sMemLeakingSpeed = (U32)tmp ;
- }
-
-}
-
-void LLFloaterMemLeak::onChangeMaxMemLeaking()
-{
-
- F32 tmp ;
- tmp =getChild<LLUICtrl>("max_leak")->getValue().asReal();
- if(tmp > (F32)0xFFF)
- {
- sMaxLeakedMem = 0xFFFFFFFF ;
- }
- else
- {
- sMaxLeakedMem = ((U32)tmp) << 20 ;
- }
-
-}
-
-void LLFloaterMemLeak::onClickStart()
-{
- sStatus = START ;
- gSimulateMemLeak = true;
-}
-
-void LLFloaterMemLeak::onClickStop()
-{
- sStatus = STOP ;
-}
-
-void LLFloaterMemLeak::onClickRelease()
-{
- sStatus = RELEASE ;
-}
-
-void LLFloaterMemLeak::onClickClose()
-{
- setVisible(false);
-}
-
-void LLFloaterMemLeak::draw()
-{
- //show total memory leaked
- if(sTotalLeaked > 0)
- {
- std::string bytes_string;
- LLResMgr::getInstance()->getIntegerString(bytes_string, sTotalLeaked >> 10 );
- getChild<LLUICtrl>("total_leaked_label")->setTextArg("[SIZE]", bytes_string);
- }
- else
- {
- getChild<LLUICtrl>("total_leaked_label")->setTextArg("[SIZE]", LLStringExplicit("0"));
- }
-
- if(sbAllocationFailed)
- {
- getChild<LLUICtrl>("note_label_1")->setTextArg("[NOTE1]", LLStringExplicit("Memory leaking simulation stops. Reduce leaking speed or"));
- getChild<LLUICtrl>("note_label_2")->setTextArg("[NOTE2]", LLStringExplicit("increase max leaked memory, then press Start to continue."));
- }
- else
- {
- getChild<LLUICtrl>("note_label_1")->setTextArg("[NOTE1]", LLStringExplicit(""));
- getChild<LLUICtrl>("note_label_2")->setTextArg("[NOTE2]", LLStringExplicit(""));
- }
-
- LLFloater::draw();
-}
+/**
+ * @file llfloatermemleak.cpp
+ * @brief LLFloatermemleak class definition
+ *
+ * $LicenseInfo:firstyear=2007&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2010, Linden Research, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
+ * $/LicenseInfo$
+ */
+
+#include "llviewerprecompiledheaders.h"
+
+#include "llfloatermemleak.h"
+
+#include "lluictrlfactory.h"
+#include "llbutton.h"
+#include "llspinctrl.h"
+#include "llresmgr.h"
+
+#include "llmath.h"
+#include "llviewerwindow.h"
+
+U32 LLFloaterMemLeak::sMemLeakingSpeed = 0 ; //bytes leaked per frame
+U32 LLFloaterMemLeak::sMaxLeakedMem = 0 ; //maximum allowed leaked memory
+U32 LLFloaterMemLeak::sTotalLeaked = 0 ;
+S32 LLFloaterMemLeak::sStatus = LLFloaterMemLeak::STOP ;
+bool LLFloaterMemLeak::sbAllocationFailed = false ;
+
+extern bool gSimulateMemLeak;
+
+LLFloaterMemLeak::LLFloaterMemLeak(const LLSD& key)
+ : LLFloater(key)
+{
+ setTitle("Memory Leaking Simulation Floater");
+ mCommitCallbackRegistrar.add("MemLeak.ChangeLeakingSpeed", boost::bind(&LLFloaterMemLeak::onChangeLeakingSpeed, this));
+ mCommitCallbackRegistrar.add("MemLeak.ChangeMaxMemLeaking", boost::bind(&LLFloaterMemLeak::onChangeMaxMemLeaking, this));
+ mCommitCallbackRegistrar.add("MemLeak.Start", boost::bind(&LLFloaterMemLeak::onClickStart, this));
+ mCommitCallbackRegistrar.add("MemLeak.Stop", boost::bind(&LLFloaterMemLeak::onClickStop, this));
+ mCommitCallbackRegistrar.add("MemLeak.Release", boost::bind(&LLFloaterMemLeak::onClickRelease, this));
+ mCommitCallbackRegistrar.add("MemLeak.Close", boost::bind(&LLFloaterMemLeak::onClickClose, this));
+}
+//----------------------------------------------
+
+bool LLFloaterMemLeak::postBuild(void)
+{
+ F32 a, b ;
+ a = getChild<LLUICtrl>("leak_speed")->getValue().asReal();
+ if(a > (F32)(0xFFFFFFFF))
+ {
+ sMemLeakingSpeed = 0xFFFFFFFF ;
+ }
+ else
+ {
+ sMemLeakingSpeed = (U32)a ;
+ }
+ b = getChild<LLUICtrl>("max_leak")->getValue().asReal();
+ if(b > (F32)0xFFF)
+ {
+ sMaxLeakedMem = 0xFFFFFFFF ;
+ }
+ else
+ {
+ sMaxLeakedMem = ((U32)b) << 20 ;
+ }
+
+ sbAllocationFailed = false ;
+ return true ;
+}
+LLFloaterMemLeak::~LLFloaterMemLeak()
+{
+ release() ;
+
+ sMemLeakingSpeed = 0 ; //bytes leaked per frame
+ sMaxLeakedMem = 0 ; //maximum allowed leaked memory
+}
+
+void LLFloaterMemLeak::release()
+{
+ if(mLeakedMem.empty())
+ {
+ return ;
+ }
+
+ for(S32 i = 0 ; i < (S32)mLeakedMem.size() ; i++)
+ {
+ delete[] mLeakedMem[i] ;
+ }
+ mLeakedMem.clear() ;
+
+ sStatus = STOP ;
+ sTotalLeaked = 0 ;
+ sbAllocationFailed = false ;
+ gSimulateMemLeak = false;
+}
+
+void LLFloaterMemLeak::stop()
+{
+ sStatus = STOP ;
+ sbAllocationFailed = true ;
+}
+
+void LLFloaterMemLeak::idle()
+{
+ if(STOP == sStatus)
+ {
+ return ;
+ }
+
+ sbAllocationFailed = false ;
+
+ if(RELEASE == sStatus)
+ {
+ release() ;
+ return ;
+ }
+
+ char* p = NULL ;
+ if(sMemLeakingSpeed > 0 && sTotalLeaked < sMaxLeakedMem)
+ {
+ p = new char[sMemLeakingSpeed] ;
+
+ if(p)
+ {
+ mLeakedMem.push_back(p) ;
+ sTotalLeaked += sMemLeakingSpeed ;
+ }
+ }
+ if(!p)
+ {
+ stop();
+ }
+}
+
+//----------------------
+void LLFloaterMemLeak::onChangeLeakingSpeed()
+{
+ F32 tmp ;
+ tmp =getChild<LLUICtrl>("leak_speed")->getValue().asReal();
+
+ if(tmp > (F32)0xFFFFFFFF)
+ {
+ sMemLeakingSpeed = 0xFFFFFFFF ;
+ }
+ else
+ {
+ sMemLeakingSpeed = (U32)tmp ;
+ }
+
+}
+
+void LLFloaterMemLeak::onChangeMaxMemLeaking()
+{
+
+ F32 tmp ;
+ tmp =getChild<LLUICtrl>("max_leak")->getValue().asReal();
+ if(tmp > (F32)0xFFF)
+ {
+ sMaxLeakedMem = 0xFFFFFFFF ;
+ }
+ else
+ {
+ sMaxLeakedMem = ((U32)tmp) << 20 ;
+ }
+
+}
+
+void LLFloaterMemLeak::onClickStart()
+{
+ sStatus = START ;
+ gSimulateMemLeak = true;
+}
+
+void LLFloaterMemLeak::onClickStop()
+{
+ sStatus = STOP ;
+}
+
+void LLFloaterMemLeak::onClickRelease()
+{
+ sStatus = RELEASE ;
+}
+
+void LLFloaterMemLeak::onClickClose()
+{
+ setVisible(false);
+}
+
+void LLFloaterMemLeak::draw()
+{
+ //show total memory leaked
+ if(sTotalLeaked > 0)
+ {
+ std::string bytes_string;
+ LLResMgr::getInstance()->getIntegerString(bytes_string, sTotalLeaked >> 10 );
+ getChild<LLUICtrl>("total_leaked_label")->setTextArg("[SIZE]", bytes_string);
+ }
+ else
+ {
+ getChild<LLUICtrl>("total_leaked_label")->setTextArg("[SIZE]", LLStringExplicit("0"));
+ }
+
+ if(sbAllocationFailed)
+ {
+ getChild<LLUICtrl>("note_label_1")->setTextArg("[NOTE1]", LLStringExplicit("Memory leaking simulation stops. Reduce leaking speed or"));
+ getChild<LLUICtrl>("note_label_2")->setTextArg("[NOTE2]", LLStringExplicit("increase max leaked memory, then press Start to continue."));
+ }
+ else
+ {
+ getChild<LLUICtrl>("note_label_1")->setTextArg("[NOTE1]", LLStringExplicit(""));
+ getChild<LLUICtrl>("note_label_2")->setTextArg("[NOTE2]", LLStringExplicit(""));
+ }
+
+ LLFloater::draw();
+}