2010-06-27 21:09:57 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "testbed/misc.h"
|
2010-06-28 12:58:14 +00:00
|
|
|
#include "common/timer.h"
|
2010-06-27 21:09:57 +00:00
|
|
|
|
|
|
|
namespace Testbed {
|
|
|
|
|
|
|
|
void MiscTests::getHumanReadableFormat(TimeDate &td, Common::String &date) {
|
|
|
|
// XXX: can use snprintf?
|
|
|
|
char strDate[100];
|
|
|
|
snprintf(strDate, 100, "%d:%d:%d on %d/%d/%d (dd/mm/yy)", td.tm_hour, td.tm_min, td.tm_sec, td.tm_mday, td.tm_mon, td.tm_year);
|
|
|
|
date = strDate;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-06-28 12:58:14 +00:00
|
|
|
void MiscTests::timerCallback(void *arg) {
|
|
|
|
// Increment arg which actually points to an int
|
|
|
|
// arg must point to a static data, threads otherwise have their own stack
|
|
|
|
int &ptrToNumTimesExecuted = *((int *) arg);
|
|
|
|
ptrToNumTimesExecuted++;
|
|
|
|
printf("LOG: Inside the timed process!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void MiscTests::criticalSection(void *arg) {
|
|
|
|
SharedVars &sv = *((SharedVars *) arg);
|
|
|
|
|
|
|
|
printf("Before: %d %d\n", sv.first, sv.second);
|
|
|
|
sv.first++;
|
|
|
|
g_system->delayMillis(3000);
|
|
|
|
printf("After waking up: %d %d\n", sv.first, sv.second);
|
|
|
|
sv.second *= sv.first;
|
|
|
|
printf("Finally: %d %d\n", sv.first, sv.second);
|
|
|
|
}
|
|
|
|
|
2010-06-27 21:09:57 +00:00
|
|
|
bool MiscTests::testDateTime() {
|
|
|
|
TimeDate t1, t2;
|
|
|
|
g_system->getTimeAndDate(t1);
|
|
|
|
printf("LOG: Current Time and Date: ");
|
|
|
|
Common::String dateTimeNow;
|
|
|
|
getHumanReadableFormat(t1, dateTimeNow);
|
|
|
|
printf("%s\n", dateTimeNow.c_str());
|
|
|
|
|
|
|
|
if (Testsuite::isInteractive) {
|
|
|
|
// Directly verify date
|
|
|
|
dateTimeNow = "We expect the current date time to be " + dateTimeNow;
|
|
|
|
Testsuite::clearScreen();
|
|
|
|
if (Testsuite::handleInteractiveInput(dateTimeNow, "Correct!", "Wrong", kOptionRight)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now, Put some delay
|
|
|
|
g_system->delayMillis(2000);
|
|
|
|
g_system->getTimeAndDate(t2);
|
|
|
|
printf("LOG: Time and Date 2s later: ");
|
|
|
|
getHumanReadableFormat(t2, dateTimeNow);
|
|
|
|
printf("%s\n", dateTimeNow.c_str());
|
|
|
|
|
|
|
|
if (t1.tm_year == t2.tm_year && t1.tm_mon == t2.tm_mon && t1.tm_mday == t2.tm_mday) {
|
|
|
|
if (t1.tm_mon == t2.tm_mon && t1.tm_year == t2.tm_year){
|
|
|
|
// Ignore lag due to processing time
|
|
|
|
if (t1.tm_sec + 2 == t2.tm_sec) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MiscTests::testTimers() {
|
2010-06-28 12:58:14 +00:00
|
|
|
static int numTimesExecuted = 0;
|
|
|
|
if (g_system->getTimerManager()->installTimerProc(timerCallback, 100000, &numTimesExecuted)) {
|
|
|
|
g_system->delayMillis(150);
|
|
|
|
printf("LOG: Timed Process Invoked %d times\n", numTimesExecuted);
|
|
|
|
g_system->getTimerManager()->removeTimerProc(timerCallback);
|
|
|
|
|
|
|
|
if (1 == numTimesExecuted) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2010-06-27 21:09:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MiscTests::testMutexes() {
|
2010-06-28 12:58:14 +00:00
|
|
|
static SharedVars sv = {1, 1, g_system->createMutex()};
|
|
|
|
|
|
|
|
if (g_system->getTimerManager()->installTimerProc(criticalSection, 100000, &sv)) {
|
|
|
|
g_system->delayMillis(150);
|
|
|
|
criticalSection(&sv);
|
|
|
|
g_system->getTimerManager()->removeTimerProc(criticalSection);
|
|
|
|
}
|
|
|
|
return false;
|
2010-06-27 21:09:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MiscTestSuite::MiscTestSuite() {
|
2010-06-28 12:58:14 +00:00
|
|
|
// addTest("Date/time", &MiscTests::testDateTime);
|
|
|
|
// addTest("Timers", &MiscTests::testTimers);
|
2010-06-27 21:09:57 +00:00
|
|
|
addTest("Mutexes", &MiscTests::testMutexes);
|
|
|
|
}
|
|
|
|
const char *MiscTestSuite::getName() const {
|
|
|
|
return "Misc. Tests: Datetime/Timer/Mutextes";
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Testbed
|