r578: no 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.8 2001/02/25 06:32:12 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 #include "wx/wxprec.h"
29
30 #ifndef WX_PRECOMP
31 #include "wx/wx.h"
32 #endif
33
34 #include "ct.h"
35 #include "ctsim.h"
36 #include "docs.h"
37 #include "views.h"
38 #include "threadrecon.h"
39 #include "backgroundmgr.h"
40 #include "backgroundsupr.h"
41
42 #if defined(HAVE_CONFIG_H)
43 #include "config.h"
44 #endif
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 (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.isDone() && ! reconSupervisor.fail()) {
74     Sleep(50);
75     Yield();
76   }
77   if (reconSupervisor.fail())
78   {
79     wxString msg ("Error starting reconstructor supervisor: ");
80     msg += reconSupervisor.getFailMessage().c_str();
81     msg += "\n";
82     wxCommandEvent eventLog (wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
83     eventLog.SetString( msg );
84     wxPostEvent( theApp->getMainFrame(), eventLog ); // send log event
85   }
86
87   while (reconSupervisor.anyWorkersRunning()) {
88     Sleep(50);
89     Yield();
90   }
91
92   return reinterpret_cast<wxThread::ExitCode>(0);
93 }
94
95 void
96 ReconstructorSupervisorThread::OnExit()
97 {
98 }
99
100
101 /////////////////////////////////////////////////////////////////////
102 //
103 // Class ReconstructorSupervisor -- A Background Supervisor
104 //
105 /////////////////////////////////////////////////////////////////////
106
107 ReconstructorSupervisor::ReconstructorSupervisor (ProjectionFileView* pProjView, 
108   int iImageNX, int iImageNY, const char* pszFilterName, double dFilterParam, const char* pszFilterMethod, 
109   int iZeropad, const char* pszFilterGenerationName, const char* pszInterpName, int iInterpParam,
110   const char* pszBackprojectName, const char* const pszLabel)
111     : m_pProjView(pProjView), m_pProjDoc(pProjView->GetDocument()), 
112       m_iImageNX(iImageNX), m_iImageNY(iImageNY), 
113       m_pszFilterName(pszFilterName), m_dFilterParam(dFilterParam), m_pszFilterMethod(pszFilterMethod),
114       m_iZeropad(iZeropad), m_pszFilterGenerationName(pszFilterGenerationName), m_pszInterpName(pszInterpName),
115       m_iInterpParam(iInterpParam), m_pszBackprojectName(pszBackprojectName), m_pszLabel(pszLabel), 
116       BackgroundSupervisor (pProjView->GetFrame(), pProjView->GetDocument(), "Reconstructing", pProjView->GetDocument()->getProjections().nView())
117 {
118   m_vecpChildImageFile.reserve (getNumWorkers());
119   for (unsigned int iThread = 0; iThread < getNumWorkers(); iThread++) {
120     m_vecpChildImageFile[iThread] = new ImageFile (iImageNX, iImageNY);    
121   }
122
123 }
124
125 ReconstructorSupervisor::~ReconstructorSupervisor()
126 {
127   for (int i = 0; i < getNumWorkers(); i++) {
128       delete m_vecpChildImageFile[i];
129       m_vecpChildImageFile[i] = NULL;
130     }    
131
132 }
133
134 BackgroundWorkerThread*
135 ReconstructorSupervisor::createWorker (int iThread, int iStartUnit, int iNumUnits)
136 {
137    ReconstructorWorker* pThread = new ReconstructorWorker (this, iThread, iStartUnit, iNumUnits);
138    pThread->SetParameters (m_pProjView, m_vecpChildImageFile[iThread], m_pszFilterName, m_dFilterParam, 
139      m_pszFilterMethod, m_iZeropad, m_pszFilterGenerationName, m_pszInterpName,
140      m_iInterpParam, m_pszBackprojectName);
141
142    return pThread;
143 }
144
145 void
146 ReconstructorSupervisor::onDone()
147 {
148   wxCriticalSection doneSection;
149   wxCriticalSectionLocker critsect (doneSection);
150
151   ImageFileDocument* pReconDoc = theApp->newImageDoc();
152   if (! pReconDoc) {
153     sys_error (ERR_SEVERE, "Unable to create image file");
154     return;
155   }
156     
157   ImageFile* pImageFile = getImageFile();
158   pReconDoc->setImageFile (pImageFile);
159   if (theApp->getAskDeleteNewDocs())
160     pReconDoc->Modify (true);
161   pReconDoc->UpdateAllViews (m_pProjView);
162   if (ImageFileView* rasterView = pReconDoc->getView()) {
163     rasterView->OnUpdate (rasterView, NULL);
164     rasterView->getFrame()->SetFocus();
165     rasterView->getFrame()->Show(true);
166   }
167   *theApp->getLog() << m_pszLabel << "\n";
168   pImageFile->labelAdd (m_pProjView->GetDocument()->getProjections().getLabel());
169   pImageFile->labelAdd (m_pszLabel, getTimerEnd());
170
171   setDone();
172 }
173
174
175 ImageFile*
176 ReconstructorSupervisor::getImageFile()
177 {
178   ImageFile* pImageFile = new ImageFile (m_iImageNX, m_iImageNY);
179   pImageFile->arrayDataClear();
180   ImageFileArray pArray = pImageFile->getArray();
181   
182   int i;
183   for (i = 0; i < getNumWorkers(); i++) {
184     ImageFileArrayConst pChildArray = m_vecpChildImageFile[i]->getArray();
185     for (int ix = 0; ix < m_iImageNX; ix++)
186       for (int iy = 0; iy < m_iImageNY; iy++)
187         pArray[ix][iy] += pChildArray[ix][iy];
188   }
189   
190   return (pImageFile);
191 }
192
193
194 /////////////////////////////////////////////////////////////////////
195 //
196 // Class ReconstructorWorker -- A worker thread
197 //
198 /////////////////////////////////////////////////////////////////////
199
200 ReconstructorWorker::SetParameters (ProjectionFileView* pProjView, ImageFile* pImageFile, 
201  const char* pszFilterName, double dFilterParam, const char* pszFilterMethod, int iZeropad,
202  const char* pszFilterGenerationName, const char* pszInterpName, int iInterpParam, 
203  const char* pszBackprojectName)
204 {
205    m_pProjView = pProjView;
206    m_pImageFile = pImageFile;
207    m_pszFilterName = pszFilterName;
208    m_dFilterParam = dFilterParam; 
209    m_pszFilterMethod = pszFilterMethod;
210    m_iZeropad = iZeropad;
211    m_pszFilterGenerationName = pszFilterGenerationName;
212    m_pszInterpName = pszInterpName;
213    m_iInterpParam = iInterpParam;
214    m_pszBackprojectName = pszBackprojectName;
215 }
216
217 wxThread::ExitCode
218 ReconstructorWorker::Entry ()
219 {
220   Reconstructor* pReconstructor = new Reconstructor (m_pProjView->GetDocument()->getProjections(), 
221     *m_pImageFile, m_pszFilterName, m_dFilterParam, m_pszFilterMethod, m_iZeropad, 
222     m_pszFilterGenerationName, m_pszInterpName, m_iInterpParam, m_pszBackprojectName, Trace::TRACE_NONE);
223
224   wxCommandEvent eventDone (wxEVT_COMMAND_MENU_SELECTED, BackgroundSupervisor::MSG_WORKER_THREAD_DONE);
225   eventDone.SetInt (m_iThread); // Send back thread# that has finished
226
227   if (pReconstructor->fail()) {
228       wxString msg("Unable to make reconstructor: ");
229       msg += pReconstructor->failMessage().c_str();  
230       wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
231       event.SetString( msg );
232       wxPostEvent( theApp->getMainFrame(), event );
233
234       wxPostEvent (m_pSupervisor, eventDone);
235       return reinterpret_cast<wxThread::ExitCode>(-1);
236   }
237
238   wxCommandEvent eventProgress (wxEVT_COMMAND_MENU_SELECTED, BackgroundSupervisor::MSG_WORKER_THREAD_UNIT_TICK);
239
240   for (int iUnit = 0; iUnit < m_iNumUnits; iUnit++) {
241     if (TestDestroy()) {
242 #ifdef DEBUG
243       if (theApp->getVerboseLogging()) {
244         wxString msg;
245         msg.Printf("Worker thread: Received destroy message at work unit #%d\n", iUnit);  
246         wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
247         event.SetString( msg );
248         wxPostEvent( theApp->getMainFrame(), event ); 
249       }
250 #endif
251       delete pReconstructor;
252       wxPostEvent (m_pSupervisor, eventDone);
253   
254       return reinterpret_cast<wxThread::ExitCode>(-1);
255     }
256     pReconstructor->reconstructView (iUnit + m_iStartUnit, 1);
257     wxPostEvent (m_pSupervisor, eventProgress);
258   }
259   pReconstructor->postProcessing();
260   
261   wxPostEvent (m_pSupervisor, eventDone);
262   
263   delete pReconstructor;
264   return reinterpret_cast<wxThread::ExitCode>(0);
265 }
266
267 void
268 ReconstructorWorker::OnExit ()
269 {
270 }