I am using boost::posix_time::ptime to measure my simulation run-time and for something else.

assuimg

boost::posix_time::ptime start, stop;
boost::posix_time::time_duration diff;
start = boost::posix_time::microsec_clock::local_time();
sleep(5);
stop = boost::posix_time::microsec_clock::local_time();
diff = stop - stop;

now

std::cout << to_simple_string( diff ) << std::endl;

return the time in hh:mm:ss.ssssss format and i would like to have the time as well in ss.sssssss.

for doing this, i tried

boost::posix_time::time_duration::sec_type x = diff.total_seconds();

but that gave me the answer in format of ss and seconds() returns Returns normalized number of seconds (0..60).

My question how could i get my simulation time in seconds of the format ss.ssssss?

EDIT

i was able to do:

 std::cout << diff.total_seconds() << "." <<  diff.fractional_seconds() << std::endl;

is there something elegant that could plot ss.sssssss?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

total_seconds() returns a long value which is not normalized to 0..60s.

So just do this:

namespace bpt = boost::posix_time;

int main(int , char** )
{
    bpt::ptime start, stop;
    start = bpt::microsec_clock::local_time();
    sleep(62);
    stop = bpt::microsec_clock::local_time();

    bpt::time_duration dur = stop - start;

    long milliseconds = dur.total_milliseconds();

    std::cout << milliseconds << std::endl; // 62000

    // format output with boost::format
    boost::format output("%.2f");
    output % (milliseconds/1000.0);
    std::cout << output << std::endl; // 62.00
}
link|improve this answer
thank you for your replay. According to your example, i would like the following output: 62.0000 (ss.ssssss). Would it be possible? – Eagle Feb 8 at 14:56
@Eagle: I added an example with your desired output using boost::format. Hope it helps. – nabulke Feb 8 at 18:41
feedback

The most straight-forward way I see is something like this output, the rest of the time computations along the lines of nabulke's post:

#include <iomanip>
double dseconds = dur.total_milliseconds() / 1000. ;

std::cout << std::setiosflags(std::ios::fixed) << std::setprecision(3);
std::cout << dseconds << std::endl;

You want to express time in terms of a floating point number, so it's probably best to actually use one and apply the standard stream formatting manipulators.

link|improve this answer
it worked, you are right. I tried it myself, but i forgot the "." .... so i got integer number – Eagle Feb 8 at 15:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.