1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "itkMultiThreader.h"
namespace itkSTLThreadTestImpl
{
static int done = 0;
static int numberOfIterations = 10;
static itk::MutexLock::Pointer sharedMutex = 0;
static ITK_THREAD_RETURN_TYPE Runner(void*);
static int Thread(int);
} // namespace itkSTLThreadTestImpl
int itkSTLThreadTest(int argc, char* argv[])
{
// Choose a number of threads.
int numThreads = 10;
if(argc > 1)
{
int nt = atoi(argv[1]);
if(nt > 1)
{
numThreads = nt;
}
}
// Choose a number of iterations (0 is infinite).
if(argc > 2)
{
int ni = atoi(argv[2]);
if(ni >= 0)
{
itkSTLThreadTestImpl::numberOfIterations = ni;
}
}
// Enforce limit on number of threads.
if(numThreads > ITK_MAX_THREADS)
{
numThreads = ITK_MAX_THREADS;
}
// Report what we'll do.
std::cout << "Using " << numThreads << " threads.\n";
if(itkSTLThreadTestImpl::numberOfIterations)
{
std::cout << "Using " << itkSTLThreadTestImpl::numberOfIterations
<< " iterations.\n";
}
else
{
std::cout << "Using infinite iterations.\n";
}
// Create result array. Assume failure.
int* results = new int[numThreads];
int i;
for(i=0; i < numThreads; ++i)
{
results[i] = 0;
}
// Create and execute the threads.
itk::MultiThreader::Pointer threader = itk::MultiThreader::New();
itkSTLThreadTestImpl::sharedMutex = itk::MutexLock::New();
threader->SetSingleMethod(itkSTLThreadTestImpl::Runner, results);
threader->SetNumberOfThreads(numThreads);
threader->SingleMethodExecute();
// Report results.
int result = 0;
for(i=0; i < numThreads; ++i)
{
if(!results[i])
{
std::cerr << "Thread " << i << " failed." << std::endl;
result = 1;
}
}
delete[] results;
// Test other methods for coverage.
std::cout << "Done with primary test. Testing more methods..."
<< std::endl;
threader->SetGlobalMaximumNumberOfThreads(1);
threader->SetGlobalDefaultNumberOfThreads(1);
std::cout << "threader->GetGlobalMaximumNumberOfThreads(): "
<< threader->GetGlobalMaximumNumberOfThreads() << std::endl;
itk::ThreadIdType threadId = threader->SpawnThread(itkSTLThreadTestImpl::Runner, ITK_NULLPTR);
std::cout << "SpawnThread(itkSTLThreadTestImpl::Runner, results): "
<< threadId << std::endl;
threader->TerminateThread(threadId);
std::cout << "Spawned thread terminated." << std::endl;
return result;
}
namespace itkSTLThreadTestImpl
{
static ITK_THREAD_RETURN_TYPE Runner(void* infoIn)
{
// Get the thread id and result pointer and run the method for this
// thread.
itk::MultiThreader::ThreadInfoStruct* info =
static_cast<itk::MultiThreader::ThreadInfoStruct*>(infoIn);
itk::ThreadIdType tnum = info->ThreadID;
int* results = static_cast<int*>(info->UserData);
if(results)
{
results[tnum] = itkSTLThreadTestImpl::Thread(tnum);
}
else
{
itkSTLThreadTestImpl::Thread(tnum);
}
return ITK_THREAD_RETURN_VALUE;
}
static int Thread(int tnum)
{
// Implementation in individual thread. We don't care about
// mutexing the output because it doesn't matter for the test.
itkSTLThreadTestImpl::sharedMutex->Lock();
std::cout << "Starting " << tnum << "\n";
itkSTLThreadTestImpl::sharedMutex->Unlock();
// Create a list with which to play.
std::list<int> l;
// Choose a size for each iteration for this thread.
int count = 10000+100*tnum;
int iteration=0;
while(!done && !(numberOfIterations && (iteration >= numberOfIterations)))
{
// Output progress of this thread.
itkSTLThreadTestImpl::sharedMutex->Lock();
std::cout << tnum << ": " << iteration << "\n";
itkSTLThreadTestImpl::sharedMutex->Unlock();
// Fill the list.
int j;
for(j=0; j < count; ++j)
{
l.push_back(j);
}
// Empty the list while making sure values match. Threading
// errors can cause mismatches here, which is the purpose of the
// test.
for(j=0; j < count; ++j)
{
if(l.front() != j)
{
itkSTLThreadTestImpl::sharedMutex->Lock();
std::cerr << "Mismatch in thread " << tnum << "!\n";
done = 1;
itkSTLThreadTestImpl::sharedMutex->Unlock();
}
l.pop_front();
}
++iteration;
}
// Only get here on failure or iterations finished.
if(numberOfIterations && (iteration >= numberOfIterations))
{
// Success.
return EXIT_FAILURE;
}
else
{
// Failure.
return EXIT_SUCCESS;
}
}
} // namespace itkSTLThreadTestImpl
|