簡體   English   中英

使用boost date_time來解析和創建HTTP日期

[英]Use boost date_time to parse and create HTTP-dates

我正在編寫一種HTTP代理,所以我需要做三件事:

  1. 給出RFC 2616,sec 3.3中指定的3種格式中的任何格式的HTTP日期,
  2. 將文件日期時間轉換為HTTP日期字符串,和
  3. 將日期輸出為字符串。

作為參考,這些是我需要解析的日期時間的示例。 我只會輸出第一種格式:

  Sun, 06 Nov 1994 08:49:37 GMT  ; RFC 822, updated by RFC 1123
  Sunday, 06-Nov-94 08:49:37 GMT ; RFC 850, obsoleted by RFC 1036
  Sun Nov  6 08:49:37 1994       ; ANSI C's asctime() format

我很確定Boost date_time可以完成所有這些,但是我遇到了一些問題。有沒有人有代碼可以做到這一點? 也許我並沒有熟練使用谷歌,但我無法找到一個如何在任何地方提升的例子。

謝謝你的幫助!

更新:我有一個解決方案,但第二個解析器有錯誤的一年(我猜因為它是一個2位數的年份),最后一個解析器給出了一個例外(見下面的輸出)。

try
{
  // output time now in GMT
  // format we want: Sun, 06 Nov 1994 08:49:37 GMT
  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("%a, %d %b %Y %H:%M:%S GMT"));
  std::cout.imbue(std::locale(std::cout.getloc(), lf));
  std::cout << t << std::endl;

  // get a file mod time into the correct format
  boost::filesystem::path p("../code/main.cpp");
  boost::posix_time::ptime pt = boost::posix_time::from_time_t(
    boost::filesystem::last_write_time(p));
  boost::local_time::local_date_time t2(pt, boost::local_time::time_zone_ptr());
  std::cout << t2 << std::endl;

  std::stringstream ss;
  ss.exceptions(std::ios_base::failbit);

  // input date-time
  boost::local_time::local_time_input_facet* lif1(new boost::local_time::local_time_input_facet("%a, %d %b %Y %H:%M:%S GMT"));
  ss.imbue(std::locale(std::locale::classic(), lif1));
  ss.str("Sun, 06 Nov 1994 08:49:37 GMT");
  ss >> t;
  std::cout << t << std::endl;

  boost::local_time::local_time_input_facet* lif2(new boost::local_time::local_time_input_facet("%A, %d-%b-%y %H:%M:%S GMT"));
  ss.imbue(std::locale(std::locale::classic(), lif2));
  ss.str("Sunday, 06-Nov-94 08:49:37 GMT");
  ss >> t;
  std::cout << t << std::endl;

  boost::local_time::local_time_input_facet* lif3(new boost::local_time::local_time_input_facet("%a %b %e %H:%M:%S %Y"));
  ss.imbue(std::locale(std::locale::classic(), lif3));
  ss.str("Sun Nov  6 08:49:37 1994");
  ss >> t;
  std::cout << t << std::endl;
}
catch (std::exception& e)
{
  std::cout << "Exception: " << e.what() << std::endl;
}

輸出:

Sat, 15 May 2010 03:01:13 GMT
Sat, 15 May 2010 03:01:01 GMT
Sun, 06 Nov 1994 08:49:37 GMT
Sat, 06 Nov 2094 08:49:37 GMT
Exception: Parse failed. No match found for ''

我不認為你需要走得那么遠並且達到Boost :)你可以通過簡單的C代碼逃脫:

static const char format[] = "%a, %d %b %Y %H:%M:%S %Z"; // rfc 1123
struct tm tm;
bzero(&tm, sizeof(tm));
if (strptime(str, format, &tm)) {..}

這是我創建的DateTime類,它可以滿足我的需要。 也許其他人會使用它。 此代碼在公共領域。 我歡迎任何評論。

順便說一句,顯然std :: locale接受一個facet的指針,然后在完成它時刪除它,所以不需要刪除它(事實上,刪除它會破壞它)。

datetime.h:

// $Id$

#ifndef _DATETIME_H_
#define _DATETIME_H_

#include <string>
#include "common.h"
#include <boost/date_time/local_time/local_time.hpp>

class DateTime
{
public:
  DateTime();
  DateTime(const std::string& path);

  // return datetime string
  std::string str();

  // update datetime from file mod date
  std::string from_file(const std::string& path);

  // parse datetime string
  void parse(const std::string& dt);

  // boolean equal operator
  friend bool operator==(const DateTime& left, const DateTime& right);

private:
  boost::local_time::local_date_time m_dt;
};

#endif // _DATETIME_H_

datetime.cpp:

// $Id$

#include <sstream>
#include "common.h"
#include <boost/date_time.hpp>
#include <boost/date_time/local_time/local_time.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/filesystem/operations.hpp>
#include "datetime.h"

DateTime::DateTime()
:m_dt(boost::local_time::local_sec_clock::local_time(boost::local_time::time_zone_ptr()))
{
}

DateTime::DateTime(const std::string& path)
:m_dt(boost::local_time::local_sec_clock::local_time(boost::local_time::time_zone_ptr()))
{
  from_file(path);
}

std::string DateTime::str()
{
  std::string result;
  boost::local_time::local_time_facet* lf(new boost::local_time::local_time_facet("%a, %d %b %Y %H:%M:%S GMT"));
  try
  {
    std::stringstream ss;
    ss.imbue(std::locale(ss.getloc(), lf));
    ss << m_dt;
    result = ss.str();
  }
  catch (std::exception& e)
  {
    std::cout << "Exception: " << e.what() << std::endl;
  }
  return result;
}

std::string DateTime::from_file(const std::string& path)
{
  try
  {
    boost::filesystem::path p(path);
    boost::posix_time::ptime pt = boost::posix_time::from_time_t(
      boost::filesystem::last_write_time(p));
    m_dt = boost::local_time::local_date_time(pt, boost::local_time::time_zone_ptr());
  }
  catch (std::exception& e)
  {
    std::cout << "Exception: " << e.what() << std::endl;
  }
  return str();
}

void DateTime::parse(const std::string& dt)
{
  boost::local_time::local_time_input_facet* lif(new boost::local_time::local_time_input_facet("%a, %d %b %Y %H:%M:%S GMT"));
  std::stringstream ss(dt);
  ss.imbue(std::locale(std::locale::classic(), lif));
  ss >> m_dt;
}

bool operator==(const DateTime& left, const DateTime& right)
{
  return (left.m_dt == right.m_dt);
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM