2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-11 09:51:50 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2013-10-23 19:15:52 +02:00
|
|
|
#ifndef INCLUDED_TOOLS_TIME_HXX
|
|
|
|
#define INCLUDED_TOOLS_TIME_HXX
|
2007-04-11 19:19:52 +00:00
|
|
|
|
2013-11-09 15:37:43 -06:00
|
|
|
#include <tools/toolsdllapi.h>
|
2007-04-11 19:19:52 +00:00
|
|
|
#include <tools/solar.h>
|
2013-08-04 01:14:22 +02:00
|
|
|
#include <com/sun/star/util/Time.hpp>
|
2015-01-11 13:35:38 +02:00
|
|
|
#include <com/sun/star/util/DateTime.hpp>
|
2007-04-11 19:19:52 +00:00
|
|
|
|
2011-08-12 20:37:20 +02:00
|
|
|
/**
|
2013-04-19 09:02:32 +03:00
|
|
|
@WARNING: This class can serve both as wall clock time and time duration, and
|
2012-08-13 22:51:30 +02:00
|
|
|
the mixing of these concepts leads to problems such as there being
|
|
|
|
25 hours or 10 minus 20 seconds being (non-negative) 10 seconds.
|
2011-08-12 20:37:20 +02:00
|
|
|
*/
|
|
|
|
|
2014-09-28 15:49:26 +02:00
|
|
|
namespace tools {
|
|
|
|
|
2012-10-27 20:24:49 +01:00
|
|
|
class TOOLS_DLLPUBLIC SAL_WARN_UNUSED Time
|
2007-04-11 19:19:52 +00:00
|
|
|
{
|
|
|
|
private:
|
2013-03-17 08:36:26 +01:00
|
|
|
sal_Int64 nTime;
|
2013-08-04 01:14:22 +02:00
|
|
|
void init( sal_uInt32 nHour, sal_uInt32 nMin,
|
|
|
|
sal_uInt32 nSec, sal_uInt64 nNanoSec);
|
2007-04-11 19:19:52 +00:00
|
|
|
|
|
|
|
public:
|
2011-12-01 21:03:42 +01:00
|
|
|
enum TimeInitSystem
|
|
|
|
{
|
|
|
|
SYSTEM
|
|
|
|
};
|
2012-08-13 23:33:49 +02:00
|
|
|
|
2011-12-01 21:03:42 +01:00
|
|
|
// temporary until all uses are inspected and resolved
|
|
|
|
enum TimeInitEmpty
|
|
|
|
{
|
|
|
|
EMPTY
|
|
|
|
};
|
2013-03-17 08:36:26 +01:00
|
|
|
static const sal_Int64 hourPerDay = 24;
|
|
|
|
static const sal_Int64 minutePerHour = 60;
|
|
|
|
static const sal_Int64 secondPerMinute = 60;
|
|
|
|
static const sal_Int64 nanoSecPerSec = 1000000000;
|
|
|
|
static const sal_Int64 nanoSecPerMinute = nanoSecPerSec * secondPerMinute;
|
|
|
|
static const sal_Int64 nanoSecPerHour = nanoSecPerSec * secondPerMinute * minutePerHour;
|
|
|
|
static const sal_Int64 nanoSecPerDay = nanoSecPerSec * secondPerMinute * minutePerHour * hourPerDay;
|
|
|
|
static const sal_Int64 secondPerHour = secondPerMinute * minutePerHour;
|
|
|
|
static const sal_Int64 secondPerDay = secondPerMinute * minutePerHour * hourPerDay;
|
|
|
|
static const sal_Int64 minutePerDay = minutePerHour * hourPerDay;
|
|
|
|
static const sal_Int64 nanoPerMicro = 1000;
|
|
|
|
static const sal_Int64 nanoPerMilli = 1000000;
|
|
|
|
static const sal_Int64 nanoPerCenti = 10000000;
|
2011-12-01 21:03:42 +01:00
|
|
|
|
|
|
|
Time( TimeInitEmpty )
|
|
|
|
{ nTime = 0; }
|
|
|
|
Time( TimeInitSystem );
|
2013-03-17 08:36:26 +01:00
|
|
|
Time( sal_Int64 _nTime ) { Time::nTime = _nTime; }
|
2014-09-28 15:49:26 +02:00
|
|
|
Time( const tools::Time& rTime );
|
2013-08-04 01:14:22 +02:00
|
|
|
Time( const ::com::sun::star::util::Time& rTime );
|
2015-01-11 13:35:38 +02:00
|
|
|
Time( const ::com::sun::star::util::DateTime& rDateTime );
|
2013-04-19 17:24:03 +02:00
|
|
|
Time( sal_uInt32 nHour, sal_uInt32 nMin,
|
|
|
|
sal_uInt32 nSec = 0, sal_uInt64 nNanoSec = 0 );
|
2007-04-11 19:19:52 +00:00
|
|
|
|
2013-03-17 08:36:26 +01:00
|
|
|
void SetTime( sal_Int64 nNewTime ) { nTime = nNewTime; }
|
|
|
|
sal_Int64 GetTime() const { return nTime; }
|
2013-08-04 01:14:22 +02:00
|
|
|
::com::sun::star::util::Time GetUNOTime() const { return ::com::sun::star::util::Time(GetNanoSec(),GetSec(),GetMin(),GetHour(),false); }
|
2007-04-11 19:19:52 +00:00
|
|
|
|
2010-07-29 10:56:19 +08:00
|
|
|
void SetHour( sal_uInt16 nNewHour );
|
|
|
|
void SetMin( sal_uInt16 nNewMin );
|
|
|
|
void SetSec( sal_uInt16 nNewSec );
|
2013-03-17 08:36:26 +01:00
|
|
|
void SetNanoSec( sal_uInt32 nNewNanoSec );
|
2012-08-13 23:42:18 +02:00
|
|
|
sal_uInt16 GetHour() const
|
2013-03-17 08:36:26 +01:00
|
|
|
{ sal_uInt64 nTempTime = (nTime >= 0) ? nTime : -nTime;
|
2013-04-19 17:05:55 +02:00
|
|
|
return static_cast<sal_uInt16>(nTempTime / SAL_CONST_UINT64(10000000000000)); }
|
2012-08-13 23:42:18 +02:00
|
|
|
sal_uInt16 GetMin() const
|
2013-03-17 08:36:26 +01:00
|
|
|
{ sal_uInt64 nTempTime = (nTime >= 0) ? nTime : -nTime;
|
2013-04-19 17:05:55 +02:00
|
|
|
return static_cast<sal_uInt16>((nTempTime / SAL_CONST_UINT64(100000000000)) % 100); }
|
2012-08-13 23:42:18 +02:00
|
|
|
sal_uInt16 GetSec() const
|
2013-03-17 08:36:26 +01:00
|
|
|
{ sal_uInt64 nTempTime = (nTime >= 0) ? nTime : -nTime;
|
2013-04-19 17:05:55 +02:00
|
|
|
return static_cast<sal_uInt16>((nTempTime / SAL_CONST_UINT64(1000000000)) % 100); }
|
2013-03-17 08:36:26 +01:00
|
|
|
sal_uInt32 GetNanoSec() const
|
|
|
|
{ sal_uInt64 nTempTime = (nTime >= 0) ? nTime : -nTime;
|
2013-04-19 17:05:55 +02:00
|
|
|
return static_cast<sal_uInt32>( nTempTime % SAL_CONST_UINT64(1000000000)); }
|
2007-04-11 19:19:52 +00:00
|
|
|
|
2013-03-17 08:36:26 +01:00
|
|
|
// TODO: consider removing GetMSFromTime and MakeTimeFromMS?
|
2007-04-11 19:19:52 +00:00
|
|
|
sal_Int32 GetMSFromTime() const;
|
|
|
|
void MakeTimeFromMS( sal_Int32 nMS );
|
2013-03-17 08:36:26 +01:00
|
|
|
sal_Int64 GetNSFromTime() const;
|
|
|
|
void MakeTimeFromNS( sal_Int64 nNS );
|
2007-04-11 19:19:52 +00:00
|
|
|
|
|
|
|
/// 12 hours == 0.5 days
|
|
|
|
double GetTimeInDays() const;
|
|
|
|
|
2014-09-28 15:49:26 +02:00
|
|
|
bool IsBetween( const tools::Time& rFrom, const tools::Time& rTo ) const
|
2012-08-13 23:42:18 +02:00
|
|
|
{ return ((nTime >= rFrom.nTime) && (nTime <= rTo.nTime)); }
|
|
|
|
|
2014-09-28 15:49:26 +02:00
|
|
|
bool IsEqualIgnoreNanoSec( const tools::Time& rTime ) const;
|
2012-08-13 23:42:18 +02:00
|
|
|
|
2014-09-28 15:49:26 +02:00
|
|
|
bool operator ==( const tools::Time& rTime ) const
|
2012-08-13 23:42:18 +02:00
|
|
|
{ return (nTime == rTime.nTime); }
|
2014-09-28 15:49:26 +02:00
|
|
|
bool operator !=( const tools::Time& rTime ) const
|
2012-08-13 23:42:18 +02:00
|
|
|
{ return (nTime != rTime.nTime); }
|
2014-09-28 15:49:26 +02:00
|
|
|
bool operator >( const tools::Time& rTime ) const
|
2012-08-13 23:42:18 +02:00
|
|
|
{ return (nTime > rTime.nTime); }
|
2014-09-28 15:49:26 +02:00
|
|
|
bool operator <( const tools::Time& rTime ) const
|
2012-08-13 23:42:18 +02:00
|
|
|
{ return (nTime < rTime.nTime); }
|
2014-09-28 15:49:26 +02:00
|
|
|
bool operator >=( const tools::Time& rTime ) const
|
2012-08-13 23:42:18 +02:00
|
|
|
{ return (nTime >= rTime.nTime); }
|
2014-09-28 15:49:26 +02:00
|
|
|
bool operator <=( const tools::Time& rTime ) const
|
2012-08-13 23:42:18 +02:00
|
|
|
{ return (nTime <= rTime.nTime); }
|
2007-04-11 19:19:52 +00:00
|
|
|
|
|
|
|
static Time GetUTCOffset();
|
2015-06-10 12:08:00 +01:00
|
|
|
|
|
|
|
/// Elapsed time since epoch in milliseconds
|
|
|
|
static sal_uInt64 GetSystemTicks();
|
2007-04-11 19:19:52 +00:00
|
|
|
|
|
|
|
void ConvertToUTC() { *this -= Time::GetUTCOffset(); }
|
|
|
|
void ConvertToLocalTime() { *this += Time::GetUTCOffset(); }
|
|
|
|
|
2014-09-28 15:49:26 +02:00
|
|
|
tools::Time& operator =( const tools::Time& rTime );
|
2007-04-11 19:19:52 +00:00
|
|
|
Time operator -() const
|
2013-03-17 08:36:26 +01:00
|
|
|
{ return Time( -nTime ); }
|
2014-09-28 15:49:26 +02:00
|
|
|
tools::Time& operator +=( const tools::Time& rTime );
|
|
|
|
tools::Time& operator -=( const tools::Time& rTime );
|
|
|
|
TOOLS_DLLPUBLIC friend Time operator +( const tools::Time& rTime1, const tools::Time& rTime2 );
|
|
|
|
TOOLS_DLLPUBLIC friend Time operator -( const tools::Time& rTime1, const tools::Time& rTime2 );
|
2007-04-11 19:19:52 +00:00
|
|
|
};
|
|
|
|
|
2014-09-28 15:49:26 +02:00
|
|
|
} /* namespace tools */
|
|
|
|
|
2012-08-13 23:14:08 +02:00
|
|
|
#endif
|
2010-10-14 08:27:31 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|