Removed Platform::TimeString() and replaced with ctime()

This commit is contained in:
Alex Zolotarev 2011-04-30 17:10:56 +02:00 committed by Alex Zolotarev
parent 0a36f3ceea
commit c4cbac493f
6 changed files with 4 additions and 42 deletions

View file

@ -24,7 +24,6 @@ public:
virtual bool IsBenchmarking() const;
virtual bool IsVisualLog() const;
virtual string const DeviceID() const;
virtual string const TimeString() const;
virtual unsigned ScaleEtalonSize() const;
private:

View file

@ -220,15 +220,6 @@ string const IPhonePlatform::DeviceID() const
return m_deviceID;
}
string const IPhonePlatform::TimeString() const
{
NSDate * now = [NSDate date];
NSString * timeString = [m_dateFormatter stringFromDate:now];
string res = string([timeString UTF8String]);
[timeString release];
return res;
}
Platform & GetPlatform()
{
static IPhonePlatform platform;

View file

@ -277,7 +277,6 @@ void FrameWork<TModel>::AddRedrawCommandSure()
m_centeringMode(EDoNothing),
m_maxDuration(0)
{
m_startTime = GetPlatform().TimeString();
m_informationDisplay.setBottomShift(bottomShift);
#ifdef DRAW_TOUCH_POINTS
m_informationDisplay.enableDebugPoints(true);
@ -339,11 +338,14 @@ void FrameWork<TModel>::AddRedrawCommandSure()
{
ofstream fout(GetPlatform().WritablePathForFile("benchmark_results.txt").c_str(), ios::app);
time_t curTime = time(NULL);
string const startTime(ctime(&curTime));
for (int i = 0; i < m_benchmarkResults.size(); ++i)
{
fout << GetPlatform().DeviceID() << " "
<< VERSION_STRING << " "
<< m_startTime << " "
<< startTime << " "
<< m_benchmarkResults[i].m_name << " "
<< m_benchmarkResults[i].m_rect.minX() << " "
<< m_benchmarkResults[i].m_rect.minY() << " "

View file

@ -148,7 +148,6 @@ class FrameWork
vector<BenchmarkResult> m_benchmarkResults;
my::Timer m_benchmarksTimer;
string m_startTime;
struct Benchmark
{

View file

@ -18,8 +18,6 @@ public:
/// Time in seconds passed from application start
virtual double TimeInSec() const = 0;
virtual string const TimeString() const = 0;
/// @return always the same writable dir for current user with slash at the end
virtual string WritableDir() const = 0;
/// @return full path to file in user's writable directory

View file

@ -414,33 +414,6 @@ public:
{
return 512 + 256;
}
string const TimeString() const
{
time_t rawtime;
time(&rawtime);
tm * ltime;
ltime = localtime(&rawtime);
static char const * wday_name[7] = {
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};
static char const * mon_name[12] = {
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
static char result[26];
sprintf(result, "%s_%s_%d_%d:%d:%d_%d",
wday_name[ltime->tm_wday],
mon_name[ltime->tm_mon],
ltime->tm_mday, ltime->tm_hour,
ltime->tm_min, ltime->tm_sec,
1900 + ltime->tm_year);
return string(result);
}
};
extern "C" Platform & GetPlatform()