X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fbackgroundsupr.h;h=8d310a479f9325cccfe51a3e42a66376424cf0f3;hp=ada1550f8c4e6ca85d314c75907ca2de55b4815a;hb=f13a8c004b8f182b42d9e4df2bcd7c7f030bf1ad;hpb=d77c9d135405e077047ef3426a54470c144cdd34 diff --git a/src/backgroundsupr.h b/src/backgroundsupr.h index ada1550..8d310a4 100644 --- a/src/backgroundsupr.h +++ b/src/backgroundsupr.h @@ -7,9 +7,7 @@ ** Date Started: February 2001 ** ** This is part of the CTSim program -** Copyright (C) 1983-2001 Kevin Rosenberg -** -** $Id: backgroundsupr.h,v 1.9 2001/03/05 17:26:46 kevin Exp $ +** Copyright (C) 1983-2009 Kevin Rosenberg ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -46,36 +44,35 @@ public: }; -// Pure virtual class for BackgroundSupervisor that can communication -// with BackgroundManager via messages +// Pure virtual class for BackgroundSupervisor that can communication with BackgroundManager via messages class BackgroundWorkerThread; class BackgroundProcessingDocument; class BackgroundSupervisor : public wxEvtHandler { private: DECLARE_DYNAMIC_CLASS(BackgroundSupervisor) - + SupervisorThread* m_pMyThread; - wxFrame* m_pParentFrame; + wxWindow* m_pParentFrame; BackgroundProcessingDocument* m_pDocument; - const std::string m_strProcessTitle; - + const wxString m_strProcessTitle; + const unsigned int m_iTotalUnits; int m_iNumThreads; - bool m_bDone; + volatile bool m_bDone; volatile bool m_bFail; - std::string m_strFailMessage; - bool m_bCancelled; + wxString m_strFailMessage; + volatile bool m_bCancelled; volatile int m_iRunning; - unsigned int m_iUnitsDone; + volatile unsigned int m_iUnitsDone; Timer* m_pTimer; - bool m_bWorkersDeleted; + volatile bool m_bWorkersDeleted; + volatile bool m_bBackgroundManagerAdded; typedef std::vector ThreadContainer; ThreadContainer m_vecpThreads; wxCriticalSection m_critsectThreads; - public: enum { MSG_BACKGROUND_SUPERVISOR_ADD = 7500, // sends to BackgroundManager and Document @@ -89,7 +86,7 @@ public: MSG_WORKER_THREAD_FAIL = 7507, // sent by workers when they fail }; - BackgroundSupervisor (SupervisorThread* pMyThread, wxFrame* pParentFrame, BackgroundProcessingDocument* pDocument, const char* const pszProcessTitle, + BackgroundSupervisor (SupervisorThread* pMyThread, wxWindow* pParentFrame, BackgroundProcessingDocument* pDocument, wxChar const* pszProcessTitle, int iTotalUnits); BackgroundSupervisor () @@ -103,20 +100,21 @@ public: bool start(); virtual void onDone() {}; - + virtual void onCancel(); - virtual void onWorkerFail(int iThread, std::string strFailMessage); + virtual void onWorkerFail(int iThread, const wxString& strFailMessage); virtual void onWorkerUnitTick(); virtual void onWorkerDone(int iThread); void deleteWorkers(); + void ackRemoveBackgroundManager(); bool workersDone() const { return m_iRunning == 0; } bool workersDeleted() const { return m_bWorkersDeleted; } bool isDone() const {return m_bDone;} void setDone() { m_bDone = true; } bool fail() const {return m_bFail;} - const std::string& getFailMessage() const { return m_strFailMessage; } + const wxString& getFailMessage() const { return m_strFailMessage; } bool cancelled() const {return m_bCancelled;} int getNumWorkers() const { return m_iNumThreads; }