2011-09-14 5 views
0

私は、SQL Serverデータベースを持っていると私はそれから日付を引いて、そのようにInt64型にtimestamp_tの種類を変換しています:SQLサーバーからのptimeの昇格timestamp_tが分単位でオフになっています。私は何を間違えたのですか?

Int64 from_timestamp_t(dtl::timestamp_t& t) 
{ 
    // create a new posix time structure 
    boost::posix_time::ptime pt 
    (
    boost::gregorian::date   (t.year, t.month, t.day), 
    boost::posix_time::time_duration (t.hour, t.minute, t.second, t.fraction) 
    ); 

    ptime epoch(date(1970, Jan, 1)); 
    boost::posix_time::time_duration fromEpoch = pt - epoch; 

    // return it to caller 
    return fromEpoch.total_milliseconds(); 
} 

私のようなInt64型からブーストPTIMEに戻って変換しよう:

ptime from_epoch_ticks(Int64 ticksFromEpoch) 
{ 
    ptime epoch(date(1970, Jan, 1), time_duration(0,0,0)); 
    ptime time = epoch + boost::posix_time::milliseconds(ticksFromEpoch); 

    return time; 
} 

何らかの理由で、なぜ、私の日付、時間などが正しいのかわかりませんが、私の分は何分であるべきかから数分先です。それはデータベースのタイムスタンプが秒の解像度であり、ミリ秒を使用しているからですか?これをどうやって解決するのですか?ダンが示唆したように、次の修正を適用する

問題を修正しているようだ:

Int64 from_timestamp_t(dtl::timestamp_t& t) 
{ 
    int count = t.fraction * (time_duration::ticks_per_second() % 1000); 

    boost::posix_time::ptime pt 
     (
     boost::gregorian::date   (t.year, t.month, t.day), 
     boost::posix_time::time_duration (t.hour, t.minute, t.second, count) 
     ); 

    ptime epoch(date(1970, Jan, 1), time_duration(0, 0, 0, 0)); 

    boost::posix_time::time_duration fromEpoch = pt - epoch; 

    return fromEpoch.total_milliseconds(); 
} 
+0

ダンの答えは、トリックは、私はfrom_time_tを使用してPTIMEに最初にしtime_t型に変換する場合、それが正しく出てくる前のようにtotal_millisecondsを返すことがわかり – jjacksonRIAB

答えて

1

私は、SQL Server 2005に慣れていないんだけど、POSIX時間を後押しticksFromEpochと等価である場合機能を持っています一秒。

ptime time = epoch + boost::posix_time::seconds(ticksFromEpoch); 

しかし、これを処理する一般的な方法は、ブーストDATE_TIME documentationに提示されている:

これを処理する別の方法があるコードを書くためにTIME_DURATIONのticks_per_second()メソッド を利用することですライブラリがコンパイルされていても、携帯可能です。次のように解像度 独立した回数を計算するための一般式は次のとおりです。

count*(time_duration_ticks_per_second/count_ticks_per_second) 

は、例えば、我々は10分の1秒を表し、カウント を使用して構築したいとしましょう。つまり、各ティックは0.1秒です。

int number_of_tenths = 5; // create a resolution independent count -- 
          // divide by 10 since there are 
          //10 tenths in a second. 
int count = number_of_tenths*(time_duration::ticks_per_second()/10); 
time_duration td(1,2,3,count); //01:02:03.5 //no matter the resolution settings 
+0

上記の私の解決策を変更しました。グレゴリウスとtime_durationから私のposix_timeを構築するには何かが間違っていなければなりませんが、私はまだそれを見ません。 – jjacksonRIAB

関連する問題