1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00
occt/samples/qt/FuncDemo/src/FThread.cpp
luz paz 7b5e532f83 0031939: Coding - correction of spelling errors in comments [part 7]
Fix various typos

Fixed via codespell v2.1.dev
2021-01-20 21:27:44 +03:00

141 lines
3.4 KiB
C++

#include "FThread.h"
#include "graphwidget.h"
#include "BaseDriver.h"
#include <TFunction_Function.hxx>
#include <TFunction_IFunction.hxx>
#include <TFunction_Driver.hxx>
#include <TFunction_GraphNode.hxx>
#include <TDataStd_Tick.hxx>
#include <TDF_ListIteratorOfLabelList.hxx>
FThread::FThread(QObject* parent):QThread(parent),thread_index(0)
{
}
FThread::~FThread()
{
}
void FThread::setIterator(const TFunction_Iterator& theItr)
{
this->itr = theItr;
}
void FThread::setLogbook(const Handle(TFunction_Logbook)& theLog)
{
this->log = theLog;
}
void FThread::setGraph(GraphWidget* theGraph)
{
this->graph = theGraph;
}
void FThread::setThreadIndex(const int theIndex)
{
this->thread_index = theIndex;
}
void FThread::setMutex(Standard_Mutex* pmutex)
{
this->pmutex = pmutex;
}
// Returns any free (not executed yet) function
TDF_Label FThread::getFreeFunction()
{
TDF_Label L;
TDF_ListIteratorOfLabelList itrl(itr.Current());
for (; itrl.More(); itrl.Next())
{
if (itr.GetStatus(itrl.Value()) == TFunction_ES_NotExecuted)
{
L = itrl.Value();
itr.SetStatus(L, TFunction_ES_Executing);
break;
}
}
return L;
}
void FThread::run()
{
while (itr.More())
{
// Take current function,
// choose one and set its status to "executing".
TDF_Label L;
for (; itr.More(); itr.Next())
{
L = getFreeFunction();
if (L.IsNull())
#ifdef __GNUC__
sleep(0.001);
#else
::Sleep(100);
#endif
else
break;
}
// Nothing to compute? Finish.
if (L.IsNull())
{
graph->setFinished();
return;
}
// Check a Tick attribute - a marker of skipped for execution functions.
// It is used only for visual presentation of skipped (not modified) functions.
Handle(TDataStd_Tick) tick;
if (L.FindAttribute(TDataStd_Tick::GetID(), tick))
L.ForgetAttribute(tick);
// Execute the function
Handle(TFunction_Driver) D = TFunction_IFunction(L).GetDriver(thread_index);
const bool must = D->MustExecute(log);
if (must)
{
// Usage of mutex for execution of Open CASCADE code.
// It makes the execution more reliable...
if (!Handle(BaseDriver)::DownCast(D).IsNull())
Handle(BaseDriver)::DownCast(D)->SetMutex(pmutex);
// Execute the driver.
const int ret = D->Execute(log);
if (ret == 0)
{
// Successfully executed!
itr.SetStatus(L, TFunction_ES_Succeeded);
TDF_LabelList res;
D->Results(res);
TDF_ListIteratorOfLabelList itrr(res);
for (; itrr.More(); itrr.Next())
{
log->SetImpacted(itrr.Value());
}
}
else
{
// Failed...
itr.SetStatus(L, TFunction_ES_Failed);
graph->setFinished();
return;
}
}
else if (itr.GetStatus(L) == TFunction_ES_Executing)
{
itr.SetStatus(L, TFunction_ES_Succeeded);
TDataStd_Tick::Set(L);
}
}// while (More())
graph->setFinished();
}