r617: *** empty log message ***
[ctsim.git] / src / threadrecon.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          threadrecon.cpp
5 **   Purpose:       Threaded reconstruction class
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  February 2001
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2001 Kevin Rosenberg
11 **
12 **  $Id: threadrecon.cpp,v 1.22 2001/03/07 21:18:50 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28
29 #include "wx/wxprec.h"
30
31 #ifndef WX_PRECOMP
32 #include "wx/wx.h"
33 #endif
34
35 #include "ct.h"
36 #include "ctsim.h"
37 #include "docs.h"
38 #include "views.h"
39 #include "threadrecon.h"
40 #include "backgroundmgr.h"
41 #include "backgroundsupr.h"
42
43 #ifdef HAVE_WXTHREADS
44
45
46
47
48 /////////////////////////////////////////////////////////////////////
49 //
50 // Class ReconstructorSupervisorThread -- Thread for Background Supervisor
51 //
52 /////////////////////////////////////////////////////////////////////
53
54 ReconstructorSupervisorThread::ReconstructorSupervisorThread (ProjectionFileView* pProjView, int iNX, int iNY, 
55    const char* pszFilterName, double dFilterParam, const char* pszFilterMethod, int iZeropad, 
56    const char* pszFilterGenerationName, const char* pszInterpName, int iInterpParam, 
57    const char* pszBackprojectName, const char* const pszLabel)
58 : m_pProjView(pProjView), m_iNX(iNX), m_iNY(iNY), m_strFilterName(pszFilterName), m_dFilterParam(dFilterParam), 
59   m_strFilterMethod(pszFilterMethod), m_iZeropad(iZeropad), m_strFilterGenerationName(pszFilterGenerationName), 
60   m_strInterpName(pszInterpName), m_iInterpParam(iInterpParam), m_strBackprojectName(pszBackprojectName), m_strLabel(pszLabel),
61   SupervisorThread()
62 {
63 }
64
65 wxThread::ExitCode
66 ReconstructorSupervisorThread::Entry()
67 {
68   ReconstructorSupervisor reconSupervisor (this, m_pProjView, m_iNX, m_iNY, 
69    m_strFilterName.c_str(), m_dFilterParam, m_strFilterMethod.c_str(), m_iZeropad, m_strFilterGenerationName.c_str(), 
70    m_strInterpName.c_str(), m_iInterpParam, m_strBackprojectName.c_str(), m_strLabel.c_str());
71
72   reconSupervisor.start();
73   while (! reconSupervisor.workersDone() && ! reconSupervisor.fail() && ! reconSupervisor.cancelled()) {
74     Sleep(100);
75   }
76   if (reconSupervisor.fail())
77   {
78     wxString msg ("Error starting reconstructor supervisor: ");
79     msg += reconSupervisor.getFailMessage().c_str();
80     msg += "\n";
81     wxCommandEvent eventLog (wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
82     eventLog.SetString( msg );
83     wxPostEvent( theApp->getMainFrame(), eventLog ); // send log event
84   }
85   if (! reconSupervisor.cancelled())
86           reconSupervisor.onDone();
87   reconSupervisor.deleteWorkers();
88
89   return static_cast<wxThread::ExitCode>(0);
90 }
91
92 void
93 ReconstructorSupervisorThread::OnExit()
94 {
95 }
96
97
98 /////////////////////////////////////////////////////////////////////
99 //
100 // Class ReconstructorSupervisor -- A Background Supervisor
101 //
102 /////////////////////////////////////////////////////////////////////
103
104 ReconstructorSupervisor::ReconstructorSupervisor (SupervisorThread* pThread, ProjectionFileView* pProjView, 
105   int iImageNX, int iImageNY, const char* pszFilterName, double dFilterParam, const char* pszFilterMethod, 
106   int iZeropad, const char* pszFilterGenerationName, const char* pszInterpName, int iInterpParam,
107   const char* pszBackprojectName, const char* const pszLabel)
108     : BackgroundSupervisor (pThread, pProjView->GetFrame(), pProjView->GetDocument(), "Reconstructing", pProjView->GetDocument()->getProjections().nView()),
109       m_pProjView(pProjView), m_pProjDoc(pProjView->GetDocument()), 
110       m_iImageNX(iImageNX), m_iImageNY(iImageNY), 
111       m_pszFilterName(pszFilterName), m_dFilterParam(dFilterParam), m_pszFilterMethod(pszFilterMethod),
112       m_iZeropad(iZeropad), m_pszFilterGenerationName(pszFilterGenerationName), m_pszInterpName(pszInterpName),
113       m_iInterpParam(iInterpParam), m_pszBackprojectName(pszBackprojectName), m_pszLabel(pszLabel) 
114 {
115   m_vecpChildImageFile.reserve (getNumWorkers());
116   for (int iThread = 0; iThread < getNumWorkers(); iThread++) {
117     m_vecpChildImageFile[iThread] = new ImageFile (m_iImageNX, m_iImageNY);    
118   }
119
120 }
121
122 ReconstructorSupervisor::~ReconstructorSupervisor()
123 {
124   for (int i = 0; i < getNumWorkers(); i++) {
125       delete m_vecpChildImageFile[i];
126       m_vecpChildImageFile[i] = NULL;
127     }
128 }
129
130 BackgroundWorkerThread*
131 ReconstructorSupervisor::createWorker (int iThread, int iStartUnit, int iNumUnits)
132 {
133    ReconstructorWorker* pThread = new ReconstructorWorker (this, iThread, iStartUnit, iNumUnits);
134    pThread->SetParameters (m_pProjView, m_vecpChildImageFile[iThread], m_pszFilterName, m_dFilterParam, 
135      m_pszFilterMethod, m_iZeropad, m_pszFilterGenerationName, m_pszInterpName,
136      m_iInterpParam, m_pszBackprojectName);
137
138    return pThread;
139 }
140
141 void
142 ReconstructorSupervisor::onDone()
143 {
144   wxCriticalSection doneSection;
145   wxCriticalSectionLocker critsect (doneSection);
146
147   ImageFile* pImageFile = getImageFile();
148   pImageFile->labelAdd (m_pProjView->GetDocument()->getProjections().getLabel());
149   pImageFile->labelAdd (m_pszLabel, getTimerEnd());
150
151   wxCommandEvent eventLog (wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
152   wxString msg (m_pszLabel);
153   msg += "\n";
154   eventLog.SetString( msg );
155   wxPostEvent( theApp->getMainFrame(), eventLog ); // send log event
156
157   wxCommandEvent newImageEvent (wxEVT_COMMAND_MENU_SELECTED, NEW_IMAGEFILE_EVENT);
158   newImageEvent.SetClientData (pImageFile);
159   wxPostEvent (theApp->getMainFrame(), newImageEvent);
160
161   setDone();
162 }
163
164
165 ImageFile*
166 ReconstructorSupervisor::getImageFile()
167 {
168   ImageFile* pImageFile = new ImageFile (m_iImageNX, m_iImageNY);
169   pImageFile->arrayDataClear();
170   ImageFileArray pArray = pImageFile->getArray();
171   
172   int i;
173   for (i = 0; i < getNumWorkers(); i++) {
174     ImageFileArrayConst pChildArray = m_vecpChildImageFile[i]->getArray();
175     for (int ix = 0; ix < m_iImageNX; ix++)
176       for (int iy = 0; iy < m_iImageNY; iy++)
177         pArray[ix][iy] += pChildArray[ix][iy];
178   }
179   
180   return (pImageFile);
181 }
182
183
184 /////////////////////////////////////////////////////////////////////
185 //
186 // Class ReconstructorWorker -- A worker thread
187 //
188 /////////////////////////////////////////////////////////////////////
189
190 void
191 ReconstructorWorker::SetParameters (ProjectionFileView* pProjView, ImageFile* pImageFile, 
192  const char* pszFilterName, double dFilterParam, const char* pszFilterMethod, int iZeropad,
193  const char* pszFilterGenerationName, const char* pszInterpName, int iInterpParam, 
194  const char* pszBackprojectName)
195 {
196    m_pProjView = pProjView;
197    m_pImageFile = pImageFile;
198    m_pszFilterName = pszFilterName;
199    m_dFilterParam = dFilterParam; 
200    m_pszFilterMethod = pszFilterMethod;
201    m_iZeropad = iZeropad;
202    m_pszFilterGenerationName = pszFilterGenerationName;
203    m_pszInterpName = pszInterpName;
204    m_iInterpParam = iInterpParam;
205    m_pszBackprojectName = pszBackprojectName;
206 }
207
208 wxThread::ExitCode
209 ReconstructorWorker::Entry ()
210 {
211   Reconstructor* pReconstructor = new Reconstructor (m_pProjView->GetDocument()->getProjections(), 
212     *m_pImageFile, m_pszFilterName, m_dFilterParam, m_pszFilterMethod, m_iZeropad, 
213     m_pszFilterGenerationName, m_pszInterpName, m_iInterpParam, m_pszBackprojectName, Trace::TRACE_NONE);
214
215   bool bFail = pReconstructor->fail();
216   std::string failMsg;
217   if (bFail) {
218       failMsg = "Unable to make reconstructor: ";
219       failMsg += pReconstructor->failMessage().c_str();  
220       wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
221       event.SetString( failMsg.c_str() );
222       wxPostEvent( theApp->getMainFrame(), event );
223   }
224   else
225   {
226     wxCommandEvent eventProgress (wxEVT_COMMAND_MENU_SELECTED, BackgroundSupervisor::MSG_WORKER_THREAD_UNIT_TICK);
227     for (int iUnit = 0; iUnit < m_iNumUnits; iUnit++) {
228       if (TestDestroy()) {
229 #ifdef DEBUG
230         if (theApp->getVerboseLogging()) {
231           wxString msg;
232           msg.Printf("Worker thread: Received destroy message at work unit #%d\n", iUnit);  
233           wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
234           event.SetString( msg );
235           wxPostEvent( theApp->getMainFrame(), event ); 
236         }
237 #endif
238         break;
239       }
240       pReconstructor->reconstructView (iUnit + m_iStartUnit, 1);
241       m_pSupervisor->onWorkerUnitTick();
242     }
243     pReconstructor->postProcessing();
244   }
245   delete pReconstructor;
246
247   if (bFail) {
248         m_pSupervisor->onWorkerFail (m_iThread, failMsg);
249   } else {
250         m_pSupervisor->onWorkerDone (m_iThread);
251   }
252
253   while (! TestDestroy())
254     Sleep(100);
255
256   return reinterpret_cast<wxThread::ExitCode>(0);
257 }
258
259 void
260 ReconstructorWorker::OnExit ()
261 {
262 }
263
264 #endif // HAVE_WXTHREADS