58

输入:带有日期和可选时间的字符串。不同的表示会很好但很有必要。字符串是用户提供的,可能格式不正确。例子:

  • "2004-03-21 12:45:33"(我认为这是默认布局)
  • "2004/03/21 12:45:33"(可选布局)
  • "23.09.2004 04:12:21"(德语格式,可选)
  • "2003-02-11"(时间可能会丢失)

需要的输出:自纪元 (1970/01/01 00:00:00) 或其他一些固定点以来的秒数。

奖励:此外,读取本地系统时间的 UTC 偏移量会很棒。

假设输入是相关机器上的本地时间。输出必须是 UTC。系统仅适用于 Linux(需要 Debian Lenny 和 Ubuntu)。

我曾尝试使用boost/date_time,但必须承认我无法完全理解文档。以下工作无需从系统本地时间转换为 UTC:

std::string date = "2000-01-01";
boost::posix_time::ptime ptimedate = boost::posix_time::time_from_string(date);
ptimedate += boost::posix_time::hours(Hardcoded_UTC_Offset);// where to get from?
struct tm = boost::posix_time::to_tm(ptimedate);
int64_t ticks = mktime(&mTmTime);

我认为boost::date_time可以提供所需的 UTC 偏移量,但我不知道如何。

4

4 回答 4

69

虽然我不知道如何在 boost 中格式化个位数的月份输入,但我可以在两位数编辑后进行:

#include <iostream>
#include <boost/date_time.hpp>
namespace bt = boost::posix_time;
const std::locale formats[] = {
std::locale(std::locale::classic(),new bt::time_input_facet("%Y-%m-%d %H:%M:%S")),
std::locale(std::locale::classic(),new bt::time_input_facet("%Y/%m/%d %H:%M:%S")),
std::locale(std::locale::classic(),new bt::time_input_facet("%d.%m.%Y %H:%M:%S")),
std::locale(std::locale::classic(),new bt::time_input_facet("%Y-%m-%d"))};
const size_t formats_n = sizeof(formats)/sizeof(formats[0]);

std::time_t pt_to_time_t(const bt::ptime& pt)
{
    bt::ptime timet_start(boost::gregorian::date(1970,1,1));
    bt::time_duration diff = pt - timet_start;
    return diff.ticks()/bt::time_duration::rep_type::ticks_per_second;

}
void seconds_from_epoch(const std::string& s)
{
    bt::ptime pt;
    for(size_t i=0; i<formats_n; ++i)
    {
        std::istringstream is(s);
        is.imbue(formats[i]);
        is >> pt;
        if(pt != bt::ptime()) break;
    }
    std::cout << " ptime is " << pt << '\n';
    std::cout << " seconds from epoch are " << pt_to_time_t(pt) << '\n';
}
int main()
{
    seconds_from_epoch("2004-03-21 12:45:33");
    seconds_from_epoch("2004/03/21 12:45:33");
    seconds_from_epoch("23.09.2004 04:12:21");
    seconds_from_epoch("2003-02-11");
}

请注意,从纪元开始的秒数输出将假定日期为 UTC:

~ $ ./test | head -2
ptime is 2004-Mar-21 12:45:33
seconds from epoch are 1079873133
~ $ date -d @1079873133
Sun Mar 21 07:45:33 EST 2004

You could probably use boost::posix_time::c_time::localtime() from #include <boost/date_time/c_time.hpp> to get this conversion done assuming the input is in the current time zone, but it is rather inconsistent: for me, for example, the result will be different between today and next month, when daylight saving ends.

于 2010-09-24T12:49:02.790 回答
12

boost::gregorian有一些你需要的东西,而不需要你做更多的工作:

using namespace boost::gregorian;
{
  // The following date is in ISO 8601 extended format (CCYY-MM-DD)
  std::string s("2000-01-01");
  date d(from_simple_string(s));
  std::cout << to_simple_string(d) << std::endl;
}

boost::posix_time 这里有一个关于如何使用 UTC 偏移量的示例。

您可以使用date_input_facet和从自定义输入字符串格式生成日期和时间time_input_facet此页面上有一个 I/O 教程,应该可以帮助您入门。

于 2010-09-24T11:04:09.233 回答
8

如果 c-style 是可以接受的:strptime () 是要走的路,因为你可以指定格式,它可以考虑到语言环境:

tm brokenTime;
strptime(str.c_str(), "%Y-%m-%d %T", &brokenTime);
time_t sinceEpoch = timegm(brokenTime);

必须使用返回值检查不同的布局(如果可能)。必须通过检查系统时钟(localtime_r() with time(), tm_zone)来添加时区

于 2010-09-24T11:10:01.687 回答
3

最简单、便携的解决方案是使用scanf

int year, month, day, hour, minute, second = 0;
int r = 0;

r = scanf ("%d-%d-%d %d:%d:%d", &year, &month, &day,
           &hour, &minute, &second);
if (r == 6) 
{
  printf ("%d-%d-%d %d:%d:%d\n", year, month, day, hour, minute,
          second);
}
else 
{
    r = scanf ("%d/%d/%d %d:%d:%d", &year, &month, &day,
           &hour, &minute, &second);
    // and so on ...

struct tm使用值初始化 aint并将其传递给以mktime获取日历时间为time_t。有关时区转换,请参阅有关gmtime.

于 2010-09-24T11:02:05.230 回答