r600: *** 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.17 2001/03/04 03:14:47 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.isDone() && ! reconSupervisor.fail()) {
74     Sleep(100);
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.workersDeleted()) {
88     Sleep(50);
89     reconSupervisor.ProcessPendingEvents();
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 (SupervisorThread* pThread, 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 (pThread, 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 (m_iImageNX, m_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 BackgroundWorkerThread*
134 ReconstructorSupervisor::createWorker (int iThread, int iStartUnit, int iNumUnits)
135 {
136    ReconstructorWorker* pThread = new ReconstructorWorker (this, iThread, iStartUnit, iNumUnits);
137    pThread->SetParameters (m_pProjView, m_vecpChildImageFile[iThread], m_pszFilterName, m_dFilterParam, 
138      m_pszFilterMethod, m_iZeropad, m_pszFilterGenerationName, m_pszInterpName,
139      m_iInterpParam, m_pszBackprojectName);
140
141    return pThread;
142 }
143
144 void
145 ReconstructorSupervisor::onDone()
146 {
147   wxCriticalSection doneSection;
148   wxCriticalSectionLocker critsect (doneSection);
149
150   ImageFile* pImageFile = getImageFile();
151   pImageFile->labelAdd (m_pProjView->GetDocument()->getProjections().getLabel());
152   pImageFile->labelAdd (m_pszLabel, getTimerEnd());
153   //  *theApp->getLog() << m_pszLabel << "\n";
154
155   wxCommandEvent newImageEvent (wxEVT_COMMAND_MENU_SELECTED, NEW_IMAGEFILE_EVENT);
156   newImageEvent.SetClientData (pImageFile);
157   wxPostEvent (theApp->getMainFrame(), newImageEvent);
158
159   setDone();
160 }
161
162
163 ImageFile*
164 ReconstructorSupervisor::getImageFile()
165 {
166   ImageFile* pImageFile = new ImageFile (m_iImageNX, m_iImageNY);
167   pImageFile->arrayDataClear();
168   ImageFileArray pArray = pImageFile->getArray();
169   
170   int i;
171   for (i = 0; i < getNumWorkers(); i++) {
172     ImageFileArrayConst pChildArray = m_vecpChildImageFile[i]->getArray();
173     for (int ix = 0; ix < m_iImageNX; ix++)
174       for (int iy = 0; iy < m_iImageNY; iy++)
175         pArray[ix][iy] += pChildArray[ix][iy];
176   }
177   
178   return (pImageFile);
179 }
180
181
182 /////////////////////////////////////////////////////////////////////
183 //
184 // Class ReconstructorWorker -- A worker thread
185 //
186 /////////////////////////////////////////////////////////////////////
187
188 void
189 ReconstructorWorker::SetParameters (ProjectionFileView* pProjView, ImageFile* pImageFile, 
190  const char* pszFilterName, double dFilterParam, const char* pszFilterMethod, int iZeropad,
191  const char* pszFilterGenerationName, const char* pszInterpName, int iInterpParam, 
192  const char* pszBackprojectName)
193 {
194    m_pProjView = pProjView;
195    m_pImageFile = pImageFile;
196    m_pszFilterName = pszFilterName;
197    m_dFilterParam = dFilterParam; 
198    m_pszFilterMethod = pszFilterMethod;
199    m_iZeropad = iZeropad;
200    m_pszFilterGenerationName = pszFilterGenerationName;
201    m_pszInterpName = pszInterpName;
202    m_iInterpParam = iInterpParam;
203    m_pszBackprojectName = pszBackprojectName;
204 }
205
206 wxThread::ExitCode
207 ReconstructorWorker::Entry ()
208 {
209   Reconstructor* pReconstructor = new Reconstructor (m_pProjView->GetDocument()->getProjections(), 
210     *m_pImageFile, m_pszFilterName, m_dFilterParam, m_pszFilterMethod, m_iZeropad, 
211     m_pszFilterGenerationName, m_pszInterpName, m_iInterpParam, m_pszBackprojectName, Trace::TRACE_NONE);
212
213   bool bFail = pReconstructor->fail();
214   wxString failMsg;
215   if (bFail) {
216       failMsg = "Unable to make reconstructor: ";
217       failMsg += pReconstructor->failMessage().c_str();  
218       wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
219       event.SetString( failMsg );
220       wxPostEvent( theApp->getMainFrame(), event );
221   }
222   else
223   {
224     wxCommandEvent eventProgress (wxEVT_COMMAND_MENU_SELECTED, BackgroundSupervisor::MSG_WORKER_THREAD_UNIT_TICK);
225     for (int iUnit = 0; iUnit < m_iNumUnits; iUnit++) {
226       if (TestDestroy()) {
227 #ifdef DEBUG
228         if (theApp->getVerboseLogging()) {
229           wxString msg;
230           msg.Printf("Worker thread: Received destroy message at work unit #%d\n", iUnit);  
231           wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT );
232           event.SetString( msg );
233           wxPostEvent( theApp->getMainFrame(), event ); 
234         }
235 #endif
236         break;
237       }
238       pReconstructor->reconstructView (iUnit + m_iStartUnit, 1);
239       m_pSupervisor->AddPendingEvent (eventProgress);
240     }
241     pReconstructor->postProcessing();
242   }
243   delete pReconstructor;
244
245   if (bFail) {
246     wxCommandEvent eventFail (wxEVT_COMMAND_MENU_SELECTED, BackgroundSupervisor::MSG_WORKER_THREAD_FAIL);
247     eventFail.SetInt (m_iThread); // Send back thread# that has finished
248     eventFail.SetString (failMsg);
249     wxPostEvent (m_pSupervisor, eventFail);
250   } else {
251     wxCommandEvent eventDone (wxEVT_COMMAND_MENU_SELECTED, BackgroundSupervisor::MSG_WORKER_THREAD_DONE);
252     eventDone.SetInt (m_iThread); // Send back thread# that has finished
253     wxPostEvent (m_pSupervisor, eventDone);
254   }
255
256   while (! TestDestroy())
257     Sleep(100);
258
259   return reinterpret_cast<wxThread::ExitCode>(0);
260 }
261
262 void
263 ReconstructorWorker::OnExit ()
264 {
265 }
266
267 #endif // HAVE_WXTHREADS