Tagged Questions
Boost.Date_Time is a set of C++ date-time libraries based on generic programming concepts.
9
votes
4answers
2k views
How do I convert boost::posix_time::ptime to time_t?
Is there some "standard" way or the best I can do is to compute it directly by subtracting from gregorian::date(1970,1,1)?
8
votes
4answers
1k views
Performance of dynamic_cast?
Before reading the question:
This question is not about how useful it is to use dynamic_cast. Its just about its performance.
I've recently developed a design where dynamic_cast is used a lot.
When ...
6
votes
4answers
3k views
parsing of date/time from string (boost?)
I'm kinda stuck with parsing of date/time strings. Help would be greatly appreciated.
Input: strings with date and optional time. Different representations would be nice but necessary. The strings are ...
6
votes
1answer
5k views
Simplest way to get current time in current timezone using boost::date_time?
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 ...
3
votes
3answers
92 views
boost: get the current local_date_time with current time zone from the machine
The problems is:
I know how to get the local time in boost
the code:
boost::local_time::local_date_time currentTime(
boost::posix_time::second_clock::local_time(),
...
3
votes
1answer
2k views
Howto format a boost::date_time-object as per RFC 3339
I want to use the date_time library in boost to represent time in my application. This application will generate Atom feeds, which in turn mandates time-stamps in the format specified in RFC 3339, for ...
2
votes
1answer
71 views
using sscanf for boost date
I am trying to use sscanf to separate a string that has a boost date. here's the code:
std::sscanf(ss.c_str(),"%ls\t%lf\t%lf",&date1_,&num1_,&num2_);
and I get the following error:
...
2
votes
3answers
1k views
Get time_t / timeval corresponding to ( local_timezone ) midnight on a given date
Given a time_t or struct timeval, how do I get the timeval or time_t of midnight EST/EDT ( local timezone ) on that day ?
As in assuming local timezone is EST/EDT, given a time_t corresponding to say ...
2
votes
1answer
251 views
Boost Date_Time problem compiling a simple program
I'm writing a very stupid program using Boost Date_Time library.
int main(int srgc, char** argv) {
using namespace boost::posix_time;
date d(2002,Feb,1); //an arbitrary date
ptime t1(d, ...
2
votes
1answer
242 views
Year is out of valid range when passing pos_infin as timeout to timed_wait
The following code reproduces the error:
#include <iostream>
#include "boost/thread.hpp"
#include "boost/date_time/posix_time/ptime.hpp"
int main()
{
boost::condition_variable_any cv;
...
2
votes
1answer
135 views
Runtime Check Failure when using Boost Date Time Library and Visual Studio 2008
I'm a first year computer science student, writing a c++ program that bubble sorts an array of randomly assigned floats and then uses a binary chop search to find the value of the last element in the ...
1
vote
2answers
38 views
how to parse a string with date-time + time offset to a boost::posix_time::ptime?
I have a string "2011-10-20T09:30:10-05:00"
Does someone know how I can parse it with boost::date_time library?
1
vote
1answer
125 views
Boost lib missing 'libboost_date_time-vc90-mt-gd-1_44.lib file. How to build only this lib file using bjam?
I need to use the date time functions available in booost/gregorian. When I compile in visual studio 2008 I get the error LINK : fatal error LNK1104: cannot open file ...
1
vote
1answer
73 views
How do I parse weeks-in-year with boost::date_time?
I want to parse strings that consist of a 4-digit year and the week number within the year. I've followed the boost date/time IO tutorial, producing a test example like this:
std::string week_format ...
1
vote
1answer
112 views
Boost - Formatting sub second precision time with a time stamp
I need to get a nicely formatted timestamp (slightly modified ISO 8601) with millisecond precision.
And example date would look like this: 2011-09-28 13:11:15.237-08:00
The formatting should be able ...
1
vote
2answers
92 views
weekdays' duration using boost date
Is there a way to get only the no. of weekdays between 2 boost dates.
In the following, I'm only getting calendar days.
date begin_dt(2011,Aug,3);
date end_dt(day_clock::local_day());
days ...
1
vote
1answer
104 views
converting boost::gregorian::date_duration to double
Is there a way to convert the boost::date_duration to a double.
I have the following code:
date be;
date bd;
days t = (be - bd);
std::cout << "days are:" << t << std::endl;
This ...
1
vote
1answer
357 views
How to get GMT time in milliseconds using boost Date_Time?
Is there a simple way to get from boost Date_Time library a current GMT time in milliseconds?
Here is one example which uses time_of_day, I don't want time_of_day but total time in GMT as long long ...
1
vote
1answer
130 views
How do you format with Boost.Date_Time without leading zeros?
How can you format a boost::posix_time::ptime object without padding the numbers with zeros?
For example, I want to display 6/7/2011 6:30:25 PM and not 06/07/2011 06:30:25 PM.
In .NET, the format ...
1
vote
1answer
174 views
Ownership/delete'ing the facet in a locale (std::locale)
I wrote the following function to get a date/time string using boost.date_time.
namespace bpt = boost::posix_time;
string
get_date_time_string(bpt::ptime time)
{
bpt::time_facet * facet(new ...
1
vote
1answer
98 views
boost::posix_time fails in release build
I want to open a new log file each a program runs, so I create a filename with the current time.
FILE * fplog;
void OpenLog()
{
boost::posix_time::ptime now = ...
1
vote
1answer
715 views
How do I get the current UTC offset (time zone)?
How do I get the current UTC offset (as in time zone, but just the UTC offset of the current moment)?
I need an answer like "+02:00".
1
vote
3answers
4k views
unix timestamp to boost::posix_time::ptime
I need to convert double with number of seconds since the epoch to ptime. I'm prety sure there must be an easy way to do this, but I couldn't find anything. Thanks.
Edit: The original timestamp is ...
0
votes
1answer
47 views
Is boost::posix_time::ptime safe to store in a Windows shared memory map?
I want to store a boost::posix_time::ptime object in a Windows shared memory map for multiple processes.
However, for this to be safe, ptime cannot have pointers to other places in memory (i.e. it ...
0
votes
1answer
62 views
boost single thread libraries in cygwin
I just built and installed boost_1_47_0 using the following on cygwin
./bootstrap.sh ...
0
votes
1answer
72 views
libboost_date_time linker error
I just built and installed boost on cygwin and was trying to compile a program but it gave me a linker error because it was looking for libboost_date_time, and I have libboost_date_time-mt instead in ...
0
votes
1answer
89 views
boost ptime from sql server timestamp_t is off by minutes. What did I do wrong?
I have a SQL server database and I am pulling dates from it and converting the type of timestamp_t into Int64 as such:
Int64 from_timestamp_t(dtl::timestamp_t& t)
{
// create a new posix time ...
0
votes
1answer
194 views
using to_iso_extended_string with boost date
I am trying to convert d2 to a string of the form '2011-08-02' so I can pass this to my sql statement. According to the boost site, to_iso_extended_string should return that format, but I get the ...
0
votes
1answer
189 views
using from_string with boost date
I have the following code:
#include <iostream>
#include <string>
#include <iomanip>
#include <locale>
#include <boost/date_time/gregorian/gregorian.hpp>
#include ...
0
votes
1answer
96 views
How to create custom boost::posix_time to_string formaters?
Currently I have to use stuff like
ptime t = from_time_t(last_write_time(p));
std::string Created = boost::posix_time::to_iso_extended_string(t) ;
or:
ptime t = from_time_t(last_write_time(p));
...
0
votes
3answers
261 views
How to get a local date-time from a time_t with boost::date_time?
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. ...
0
votes
1answer
258 views
Boost ptime: how to format data in a way browsers send inside headers of http requests?
I need to format my ptime in such way Wed, 21 Jan 2004 19:51:30 GMT How to do such thing with boost? (so it would look like data format of HTTP servers Expires and Last-Modified and Date response ...
0
votes
2answers
484 views
Getting the current time as a YYYY-MM-DD-HH-MM-SS string
I'm trying to get the current time as a "YYYY-MM-DD-HH-MM-SS" formatted string in an elegant way. I can take the current time in ISO format from Boost's "Date Time" library, but it has other ...
0
votes
0answers
77 views
How do I interpret boost::gregorian::date.days_?
I got some c++ code which makes extensive use of boost's gregorian::date objects. While debugging, I've noticed that date objects have a private member days_.
Does anyone know how to translate it to ...
0
votes
1answer
262 views
boost::gregorian::date
I can't get it to work with visual c++ 2005 and boost 1.43
this simple source code :
#include <boost/date_time.hpp>
int main( int argc, char** argv )
{
boost::gregorian::date d();
}
...
0
votes
2answers
1k views
Use boost date_time to parse and create HTTP-dates
I'm writing a kind of HTTP proxy, so I need to be able to do 3 things:
Parse an HTTP-date given any of the 3 formats specified in RFC 2616, sec 3.3,
Convert a file date-time to an HTTP-date string, ...
0
votes
1answer
636 views
basic boost date_time input format question
I've got a pointer to a string, (char *) as input. The date/time looks like this:
Sat, 10 Apr 2010 19:30:00
I'm only interested in the date, not the time.
I created an "input_facet" with the format I ...
0
votes
2answers
146 views
How to initialize a Boost date?
The page
http://www.boost.org/doc/libs/1_42_0/doc/html/date_time/gregorian.html#date_construction
explains that you can initialize a Boost date with this kind of call:
date d(2002, Jan, 10);
But ...