I'm using boost::date_time and I got a time_t, that have been generated by a library using the time() function from the C standard library.

I'm looking for a way get a local time from that time_t. I'm reading the documentation and can't find any way to do this without providing a time zone, that I don't know about because it's dependant on the machine's locale, and I can't find any way to get one from it.

What am I missing?

link|improve this question

75% accept rate
I take it you can't change the library, so you're stuck with time()? – Mark Ransom May 26 '11 at 19:05
Exactly. I would have used the boost-given local time and no time_t if I could. But cannot :/ – Klaim May 26 '11 at 19:12
feedback

3 Answers

up vote 1 down vote accepted

For this task, I'd ignore boost::date_time and just use localtime (or localtime_r, if available) from the standard library.

link|improve this answer
Looks like a solution. I'm trying this right now. – Klaim May 26 '11 at 19:12
Ok so I used this and built a boost::posix_time::ptime with it to manipulate the time once localized. Thanks it works! – Klaim May 26 '11 at 19:17
feedback

boost::posix_time::from_time_t()

#include <ctime>
#include <ostream>
#include <iostream>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/local_time_adjustor.hpp>
#include <boost/date_time/c_local_time_adjustor.hpp>

boost::posix_time::ptime local_ptime_from_utc_time_t(std::time_t const t)
{
    using boost::date_time::c_local_adjustor;
    using boost::posix_time::from_time_t;
    using boost::posix_time::ptime;
    return c_local_adjustor<ptime>::utc_to_local(from_time_t(t));
}

int main()
{
    using boost::posix_time::to_simple_string;
    using boost::posix_time::from_time_t;

    std::time_t t;
    std::time(&t); // initalize t as appropriate
    std::cout
        << "utc:   "
        << to_simple_string(from_time_t(t))
        << "\nlocal: "
        << to_simple_string(local_ptime_from_utc_time_t(t))
        << std::endl;
}
link|improve this answer
-1 : I said a LOCAL time. I'm already using this and it's wrong because it don't take account of the locale time. For example, I'm in GMT+2, so when I do time() it gives me GMT+0 and I have to add two hours to get the corret time. I don't even know where will be the user of the app and need to take the local time. – Klaim May 26 '11 at 19:05
@Klaim : Edited to demonstrate a complete example (I figured converting from utc to local was the obvious part and you didn't know how to get a ptime from a std::time_t). – ildjarn May 26 '11 at 19:32
feedback

Try this:

#include <iostream>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/posix_time/posix_time_io.hpp>

using namespace boost::posix_time;
using namespace std;

int main(int argc, char **argv) {

  cout << second_clock::local_time() << endl;

}

which on my box (Central time) yields:

$ ./boost_local_time
2011-May-26 14:00:18

If you want to format it (which was my test case), use

time_facet *facet = new time_facet("%d-%b-%Y %H:%M:%S");  
cout.imbue(locale(cout.getloc(), facet));   

before calling second_clock::local_time().

link|improve this answer
What does any of that have to do with time_t? – ildjarn May 26 '11 at 19:02
Ah, yes, good point. Never mind then -- I'll vote up yours instead. – Dirk Eddelbuettel May 26 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

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