X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Futils.cpp;h=eefbfda7387b07775043b05de957030b29dfc6da;hp=d6b63328a32d32a3519da8f6dd0bd20b093e602e;hb=efa772f72195ab4aaf7dfb880e27bf0e07195d65;hpb=fe77fc6b869a71bf94d501a0762579f4ddbc5094 diff --git a/source/time/utils.cpp b/source/time/utils.cpp index d6b6332..eefbfda 100644 --- a/source/time/utils.cpp +++ b/source/time/utils.cpp @@ -1,19 +1,24 @@ -/* +/* $Id$ + This file is part of libmspcore -Copyright © 2006 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2008 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ + #ifdef WIN32 #include #else #include #include #endif +#include "datetime.h" #include "timedelta.h" #include "timestamp.h" #include "units.h" #include "utils.h" +using namespace std; + namespace Msp { namespace Time { @@ -27,7 +32,7 @@ TimeStamp now() gettimeofday(&tv, 0); return TimeStamp(tv.tv_sec*1000000LL+tv.tv_usec); #else - static int64_t epoch=0; + static RawTime epoch=0; if(!epoch) { SYSTEMTIME st; @@ -41,15 +46,20 @@ TimeStamp now() FILETIME ft; SystemTimeToFileTime(&st, &ft); - epoch=(ft.dwLowDateTime+(int64_t)ft.dwHighDateTime<<32)/10; + epoch=(ft.dwLowDateTime+(static_cast(ft.dwHighDateTime)<<32))/10; } FILETIME ft; GetSystemTimeAsFileTime(&ft); - return TimeStamp((ft.dwLowDateTime+(int64_t)ft.dwHighDateTime<<32)/10-epoch); + return TimeStamp((ft.dwLowDateTime+(static_cast(ft.dwHighDateTime)<<32))/10-epoch); #endif } +string format_now(const string &fmt) +{ + return DateTime(now()).format(fmt); +} + /** Returns the CPU time used by the program so far. */