1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/OpenGl/OpenGl_ResourceCleaner.cxx

211 lines
6.4 KiB
C++
Executable File

// File: OpenGl_ResourceCleaner.cxx
// Created: 18.03.11 9:40:00
// Author: Anton POLETAEV
#include <OpenGl_ResourceCleaner.hxx>
#include <OpenGl_ResourceVBO.hxx>
//=======================================================================
//function : OpenGl_ResourceCleaner
//purpose : Constructor
//=======================================================================
OpenGl_ResourceCleaner::OpenGl_ResourceCleaner()
{
mySharedContexts.Clear();
mySharedQueue.Clear();
myInstanceQueue.Clear();
}
//=======================================================================
//function : AppendContext
//purpose : Append given OpenGl context to the OpenGl_ResourceCleaner
// control list
//=======================================================================
void OpenGl_ResourceCleaner::AppendContext(GLCONTEXT theContext, Standard_Boolean isShared)
{
// appending shared context
if (isShared)
{
mySharedContexts.Add(theContext);
}
else
{
// if context is already in the list
if (myInstanceQueue.IsBound(theContext))
{
QueueOfResources *aQueue = &myInstanceQueue.ChangeFind(theContext);
aQueue->Clear();
}
else
{
// context is not in the list - create empty queue for it and add queue to the list
QueueOfResources aQueue;
aQueue.Clear();
myInstanceQueue.Bind(theContext, aQueue);
}
}
}
//=======================================================================
//function : AddResource
//purpose : Tell the OpenGl_ResourceCleaner to clean up the OpenGl
// memory resource
//=======================================================================
Standard_Boolean OpenGl_ResourceCleaner::AddResource(GLCONTEXT theContext, Handle_OpenGl_Resource theResource)
{
// if context found in the shared list
if (mySharedContexts.Contains(theContext))
{
mySharedQueue.Push(theResource);
return Standard_True;
}
// if not, then it might be found in the non-shared list
else if (myInstanceQueue.IsBound(theContext))
{
QueueOfResources * aQueue = &myInstanceQueue.ChangeFind(theContext);
aQueue->Push(theResource);
return Standard_True;
}
// context is not under OpenGl_ResourceCleaner control, do not tell to clean the resource
return Standard_False;
}
//=======================================================================
//function : Clear
//purpose : Cancel clean procedure for all the resources added to the
// OpenGl_ResourceCleaner
//=======================================================================
void OpenGl_ResourceCleaner::Clear()
{
mySharedQueue.Clear();
DataMapOfContextsResources::Iterator anIter(myInstanceQueue);
// remove the resources from the list
for (anIter.Reset(); anIter.More(); anIter.Next())
{
QueueOfResources * aQueue = &anIter.ChangeValue();
aQueue->Clear();
}
}
//=======================================================================
//function : Clear
//purpose : Cancel clean procedure for all the resources of the specific
// OpenGl context which were added to the OpenGl_ResourceCleaner
//=======================================================================
Standard_Boolean OpenGl_ResourceCleaner::Clear(GLCONTEXT theContext)
{
// check if the context in the the control list
if (myInstanceQueue.IsBound(theContext))
{
QueueOfResources * aQueue = &myInstanceQueue.ChangeFind(theContext);
aQueue->Clear();
return Standard_True;
}
return Standard_False;
}
//=======================================================================
//function : ClearShared
//purpose : Cancel clean procedure for all of the shared resources
//=======================================================================
void OpenGl_ResourceCleaner::ClearShared()
{
mySharedQueue.Clear();
}
//=======================================================================
//function : Cleanup
//purpose : Clear the unused resources for active OpenGl context
//=======================================================================
void OpenGl_ResourceCleaner::Cleanup()
{
GLCONTEXT aContext = GET_GL_CONTEXT();
// if we have active context, we can delete the resources
if (aContext != NULL)
// if the context is found in shared list
if (mySharedContexts.Contains(aContext))
{
while(mySharedQueue.Size() > 0)
{
mySharedQueue.Front()->Clean(); // delete resource memory
mySharedQueue.Pop();
}
}
// if the context is found in non-shared list
else if (myInstanceQueue.IsBound(aContext))
{
QueueOfResources * aQueue = &myInstanceQueue.ChangeFind(aContext);
while(aQueue->Size() > 0)
{
aQueue->Front()->Clean(); // delete resource memory
aQueue->Pop();
}
}
}
//=======================================================================
//function : RemoveContext
//purpose : Remove the OpenGl context from the OpenGl_ResourceCleaner list
//=======================================================================
void OpenGl_ResourceCleaner::RemoveContext(GLCONTEXT theContext)
{
// if context can be found in shared list try to remove it
// if it wasn't in there, try to remove it from non-shared list
if (!mySharedContexts.Remove(theContext))
myInstanceQueue.UnBind(theContext);
// if no contexts in shared list, then there is no need to clean
// the resources on redraw
if (mySharedContexts.Size() == 0)
mySharedQueue.Clear();
}
//=======================================================================
//function : GetSharedContext
//purpose : Get any of shared contexts from the OpenGl_ResourceCleaner list
//=======================================================================
GLCONTEXT OpenGl_ResourceCleaner::GetSharedContext() const
{
if(mySharedContexts.Size() > 0)
{
MapOfContexts::Iterator anIter(mySharedContexts);
anIter.Reset();
return anIter.Value();
}
return 0;
}
//=======================================================================
//function : GetInstance
//purpose : Get the global instance of OpenGl_ResourceCleaner
//=======================================================================
OpenGl_ResourceCleaner* OpenGl_ResourceCleaner::GetInstance()
{
// the static instance entity
static OpenGl_ResourceCleaner* anInstance = NULL;
if (anInstance == NULL)
anInstance = new OpenGl_ResourceCleaner;
return anInstance;
}