10

問題は次のとおりです。

  • 現地時間をブーストする方法を知っています

コード:

    boost::local_time::local_date_time currentTime(
        boost::posix_time::second_clock::local_time(),
        boost::local_time::time_zone_ptr());
    std::cout << currentTime.local_time() << std::endl;
  • マシンから現在のタイムゾーンデータを取得する方法を知っています(正しい方法だといいのですが)

コード:

tzset();
// the var tzname will have time zone names
// the var timezone will have the current offset
// the var daylight should show me if there is daylight "on"

しかし、それでも現在のtime_zoneでlocal_date_timeを取得できません...誰かがそれを行う方法を知っていますか?

4

3 に答える 3

2

OK、今のところ私はまだ全体の答えを知りません

ただし、現在のタイムゾーンオフセットを印刷するのに役立つコードがあります

(ここでの関連する質問への回答(stackoverflow)といくつかの内部ブーストコードに基づく)

すべてのマシンで正しく動作するかどうかは絶対にわかりませんが、今のところ、何もないよりはましです。

boost::posix_time::time_duration getUtcOffset(const boost::posix_time::ptime& utcTime)
{
    using boost::posix_time::ptime;
    const ptime localTime = boost::date_time::c_local_adjustor<ptime>::utc_to_local(utcTime);
    return localTime - utcTime;
}

std::wstring getUtcOffsetString(const boost::posix_time::ptime& utcTime)
{
    const boost::posix_time::time_duration td = getUtcOffset(utcTime);
    const wchar_t fillChar = L'0';
    const wchar_t timeSeparator = L':';

    std::wostringstream out;
    out << (td.is_negative() ? L'-' : L'+');
    out << std::setw(2) << std::setfill(fillChar)
        << boost::date_time::absolute_value(td.hours());
    out << L':';
    out << std::setw(2) << std::setfill(fillChar)
        << boost::date_time::absolute_value(td.minutes());
    return out.str();
}
int main()
{
    const boost::posix_time::ptime utcNow =
        boost::posix_time::second_clock::universal_time();

    const std::wstring curTimeOffset = getUtcOffsetString(utcNow);
    std::wcout << curTimeOffset.c_str() << std::endl;  // prints  -05:00  on my comp 
}
于 2012-01-05T21:58:27.983 に答える
0

したがって、正しい UTC オフセットも取得する必要がある場合は、前の例を少し変更して、正しいタイムゾーン文字列を生成する必要があります。

static boost::posix_time::time_duration utc_offset(
    second_clock::local_time() - second_clock::universal_time());
std::ostringstream ss_posix_tz_def;
// We don't care about real zone name so, just put any three letters.
ss_posix_tz_def << "LOC" << utc_offset;
string posix_tz_def = ss_posix_tz_def.str();

別の解決策は、まったく新しいタイムゾーン プロバイダーを作成することです。この単純なもののように:

// We assume local TZ doesn't have DST, UTC offset is calculated basing on
// local system clocks. Thus, using of this provider for time calculations for
// an arbitrary date is not a good idea.
class machine_time_zone : public boost::local_time::custom_time_zone {
 public:
  typedef boost::local_time::custom_time_zone base_type;
  typedef base_type::time_duration_type time_duration_type;

  machine_time_zone()
    : boost::local_time::custom_time_zone(
        time_zone_names("Local machine TZ", "LOC", "", ""),
        GetUTCOffset(),
        boost::local_time::dst_adjustment_offsets(
            time_duration_type(0, 0, 0),
            time_duration_type(0, 0, 0), time_duration_type(0, 0, 0)),
        boost::shared_ptr<boost::local_time::dst_calc_rule>()) {
  }

  // This method is not precise, real offset may be several seconds more or less.
  static const boost::posix_time::time_duration& GetUTCOffset() {
    using boost::posix_time::second_clock;
    static boost::posix_time::time_duration utc_offset(
      second_clock::local_time() - second_clock::universal_time());
    return utc_offset;
  }
};

構築時に渡すだけlocal_date_timeです:

local_date_time ldt(second_clock::local_time(),
                    time_zone_ptr(new machine_time_zone()));
于 2012-01-08T03:00:09.727 に答える
0

タイムゾーン情報があると言うので、唯一の問題は、必要な文字列の書式設定にブーストを使用する方法です。以下はサンプルコードです。

  using namespace boost::local_time;
  using namespace boost::posix_time;

  // Composing this string is the most tricky part. Syntax see in:
  // boost\date_time\local_time\posix_time_zone.hpp
  string posix_tz_def("PST-5PDT01:00:00,M4.1.0/02:00:00,M10.1.0/02:00:00");
  local_date_time ldt(second_clock::local_time(),
                      time_zone_ptr(new posix_time_zone(posix_tz_def)));

  std::stringstream ss;
  local_time_facet* output_facet = new local_time_facet();
  ss.imbue(std::locale(std::locale::classic(), output_facet));
  output_facet->format("%Y-%m-%dT%H:%M:%S %Q");
  ss << ldt;

  string formatted_datetime = ss.str();  // 2012-01-05T18:14:06 -05:00

このアプローチで最も問題のある部分は、posix タイムゾーン文字列です。すべてのタイムゾーンにこれらの文字列を含むデータベースが必要だと思います.boostは.csvファイルを操作するためのテンプレートを提供します. 文字列のオフセットだけが必要な場合は、DTS を 0:00:00 に設定するだけで、残りは気にしません。たとえば、次の文字列を使用します: PST-5:30PDT0,0,365(forever PDT, shift 0)。「-5:00」を必要なオフセットに置き換えます。

ただし、C++/boost の方法は、から派生して独自のタイムゾーン プロバイダーを実装することになりますdate_time::time_zone_base

より多くのサンプルとアイデアがここにあります。

于 2012-01-06T07:40:19.513 に答える