git-svn-id: file:///srv/svn/repos/haiku/trunk/current@292 a95241bf-73f2-0310-859d-f6bbb57e9c96
121 lines
2.7 KiB
C++
121 lines
2.7 KiB
C++
#include <TestShell.h>
|
|
#include <ThreadedTestCase.h>
|
|
#include <Autolock.h>
|
|
#include <stdio.h>
|
|
|
|
BThreadedTestCase::BThreadedTestCase(std::string name, std::string progressSeparator)
|
|
: BTestCase(name)
|
|
, fProgressSeparator(progressSeparator)
|
|
, fUpdateLock(new BLocker())
|
|
{
|
|
}
|
|
|
|
BThreadedTestCase::~BThreadedTestCase() {
|
|
// Kill our locker
|
|
delete fUpdateLock;
|
|
|
|
// Clean up
|
|
for (std::map<thread_id, ThreadSubTestInfo*>::iterator i = fNumberMap.begin();
|
|
i != fNumberMap.end();
|
|
i++)
|
|
{
|
|
delete i->second;
|
|
}
|
|
}
|
|
|
|
void
|
|
BThreadedTestCase::NextSubTest() {
|
|
// Find out what thread we're in
|
|
thread_id id = find_thread(NULL);
|
|
|
|
{
|
|
// Acquire the update lock
|
|
BAutolock lock(fUpdateLock);
|
|
std::map<thread_id, ThreadSubTestInfo*>::iterator i = fNumberMap.find(id);
|
|
if (i != fNumberMap.end() && i->second) {
|
|
// Handle multi-threaded case
|
|
ThreadSubTestInfo *info = i->second;
|
|
char num[32];
|
|
sprintf(num, "%ld", info->subTestNum++);
|
|
std::string str = std::string("[") + info->name + fProgressSeparator + num + "]";
|
|
fUpdateList.push_back(str);
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Handle single-threaded case
|
|
BTestCase::NextSubTest();
|
|
}
|
|
|
|
void
|
|
BThreadedTestCase::Outputf(const char *str, ...) {
|
|
if (BTestShell::GlobalBeVerbose()) {
|
|
// Figure out if this is a multithreaded test or not
|
|
thread_id id = find_thread(NULL);
|
|
bool isSingleThreaded;
|
|
{
|
|
BAutolock lock(fUpdateLock);
|
|
isSingleThreaded = fNumberMap.find(id) == fNumberMap.end();
|
|
}
|
|
if (isSingleThreaded) {
|
|
va_list args;
|
|
va_start(args, str);
|
|
vprintf(str, args);
|
|
va_end(args);
|
|
fflush(stdout);
|
|
} else {
|
|
va_list args;
|
|
va_start(args, str);
|
|
char msg[1024]; // Need a longer string? Change the constant or change the function. :-)
|
|
vsprintf(msg, str, args);
|
|
va_end(args);
|
|
{
|
|
// Acquire the update lock and post our update
|
|
BAutolock lock(fUpdateLock);
|
|
fUpdateList.push_back(std::string(msg));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
BThreadedTestCase::InitThreadInfo(thread_id id, std::string threadName) {
|
|
BAutolock lock(fUpdateLock); // Lock the number map
|
|
std::map<thread_id, ThreadSubTestInfo*>::iterator i = fNumberMap.find(id);
|
|
if (i != fNumberMap.end() && i->second) {
|
|
i->second->name = threadName;
|
|
i->second->subTestNum = 0;
|
|
} else {
|
|
// New addition
|
|
ThreadSubTestInfo *info = new ThreadSubTestInfo();
|
|
info->name = threadName;
|
|
info->subTestNum = 0;
|
|
fNumberMap[id] = info;
|
|
}
|
|
}
|
|
|
|
bool
|
|
BThreadedTestCase::RegisterForUse() {
|
|
if (!fInUse) {
|
|
fInUse = true;
|
|
return true;
|
|
} else
|
|
return false;
|
|
}
|
|
|
|
void
|
|
BThreadedTestCase::UnregisterForUse() {
|
|
fInUse = false;
|
|
}
|
|
|
|
std::vector<std::string>&
|
|
BThreadedTestCase::AcquireUpdateList() {
|
|
fUpdateLock->Lock();
|
|
return fUpdateList;
|
|
}
|
|
|
|
void
|
|
BThreadedTestCase::ReleaseUpdateList() {
|
|
fUpdateLock->Unlock();
|
|
}
|