If I do date +%H-%M-%S on the commandline (Debian/Lenny), I get a user-friendly (not UTC, not DST-less, the time a normal person has on their wristwatch) time printed.

What's the simplest way to obtain the same thing with boost::date_time ?

If I do this:

std::ostringstream msg;

boost::local_time::local_date_time t = 
  boost::local_time::local_sec_clock::local_time(
    boost::local_time::time_zone_ptr()
  );

boost::local_time::local_time_facet* lf(
  new boost::local_time::local_time_facet("%H-%M-%S")
);

msg.imbue(std::locale(msg.getloc(),lf));
msg << t;

Then msg.str() is an hour earlier than the time I want to see. I'm not sure whether this is because it's showing UTC or local timezone time without a DST correction (I'm in the UK).

What's the simplest way to modify the above to yield the DST corrected local timezone time ? I have an idea it involves boost::date_time:: c_local_adjustor but can't figure it out from the examples.

link|improve this question

1  
I believe this is a duplicate of stackoverflow.com/questions/2492775/get-local-time-with-boost/…. Short version: Use boost::posix_time to construct a time object from the system clock. This works great for the local time (the C locale). Whether you can construct times for other time zones depends on what locales you have available. – Nate Apr 12 '10 at 17:21
Thanks for the pointer; fundamental problem is I hadn't really appreciated the difference between local_time/posix_time. – timday Apr 12 '10 at 20:36
feedback

1 Answer

up vote 7 down vote accepted

This does what I want:

  std::ostringstream msg;
  const boost::posix_time::ptime now=
      boost::posix_time::second_clock::local_time();
  boost::posix_time::time_facet*const f=
      new boost::posix_time::time_facet("%H-%M-%S");
  msg.imbue(std::locale(msg.getloc(),f));
  msg << now;
link|improve this answer
He said a simple way. There is no simple way with Boost date/time. They abstracted and generalized too much. – std''OrgnlDave Apr 13 at 18:44
I think that's a little harsh (although not completely unjustified). The above is simple enough (although verbose with all the namespacing). The problem is often more the documentation is telling you how to get to Alpha Centauri when you just wanted to walk around the block. On the other hand, I wanted to do the same thing in Python a while ago, and that didn't need a post on StackOverflow to work out. – timday Apr 13 at 20:30
1  
don't get me started on my first experience with boost's 'posix time' and how easy I thought it would be to get a POSIX time stamp out of it and how wrong I was! with that said we'd all be lost without Boost – std''OrgnlDave Apr 14 at 1:41
feedback

Your Answer

 
or
required, but never shown

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