mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
by just copying it three times, so planes can be rendered without waiting for more updates.
137 lines
4.2 KiB
C++
137 lines
4.2 KiB
C++
/* Copyright (C) 2015
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKMISC_TIMESTAMPBASED_H
|
|
#define BLACKMISC_TIMESTAMPBASED_H
|
|
|
|
#include "blackmisc/blackmiscexport.h"
|
|
#include "blackmisc/propertyindex.h"
|
|
#include "blackmisc/variant.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QString>
|
|
#include <QtGlobal>
|
|
|
|
namespace BlackMisc
|
|
{
|
|
//! Entity with timestamp
|
|
class BLACKMISC_EXPORT ITimestampBased
|
|
{
|
|
public:
|
|
//! Properties by index
|
|
enum ColumnIndex
|
|
{
|
|
IndexUtcTimestamp = BlackMisc::CPropertyIndex::GlobalIndexITimestampBased,
|
|
IndexUtcTimestampFormattedYmdhms,
|
|
IndexUtcTimestampFormattedYmdhmsz,
|
|
IndexUtcTimestampFormattedDhms,
|
|
IndexUtcTimestampFormattedHms,
|
|
IndexUtcTimestampFormattedHm,
|
|
IndexMSecsSinceEpoch // keep this as last item
|
|
};
|
|
|
|
//! Get timestamp
|
|
QDateTime getUtcTimestamp() const;
|
|
|
|
//! Timestamp as ms value
|
|
qint64 getMSecsSinceEpoch() const { return m_timestampMSecsSinceEpoch; }
|
|
|
|
//! Set to null
|
|
void setTimestampToNull();
|
|
|
|
//! Timestamp as ms value
|
|
void setMSecsSinceEpoch(qint64 mSecsSinceEpoch) { m_timestampMSecsSinceEpoch = mSecsSinceEpoch; }
|
|
|
|
//! Set by value such as "20141003231045"
|
|
void setByYearMonthDayHourMinute(const QString &yyyyMMddhhmmss);
|
|
|
|
//! Set timestamp
|
|
void setUtcTimestamp(const QDateTime ×tamp);
|
|
|
|
//! Is this newer than other?
|
|
bool isNewerThan(const ITimestampBased &otherTimestampObj) const;
|
|
|
|
//! Is newer than epoch value?
|
|
bool isNewerThan(qint64 mSecsSinceEpoch) const;
|
|
|
|
//! Is this older than other?
|
|
bool isOlderThan(const ITimestampBased &otherTimestampObj) const;
|
|
|
|
//! Is this older than other?
|
|
bool isOlderThan(qint64 mSecsSinceEpoch) const;
|
|
|
|
//! Older than now-offset
|
|
bool isOlderThanNowMinusOffset(int offsetMs) const;
|
|
|
|
//! Same timestamp
|
|
bool isSame(const ITimestampBased &otherTimestampObj) const;
|
|
|
|
//! Time difference
|
|
qint64 msecsTo(const ITimestampBased &otherTimestampObj) const;
|
|
|
|
//! Time difference
|
|
qint64 absMsecsTo(const ITimestampBased &otherTimestampObj) const;
|
|
|
|
//! Milliseconds to now
|
|
qint64 msecsToNow() const;
|
|
|
|
//! Set the current time as timestamp
|
|
void setCurrentUtcTime();
|
|
|
|
//! Add the given number of milliseconds to the timestamp.
|
|
void addMsecs(qint64 ms);
|
|
|
|
//! Formatted timestamp
|
|
QString getFormattedUtcTimestampDhms() const;
|
|
|
|
//! As hh:mm:ss
|
|
QString getFormattedUtcTimestampHms() const;
|
|
|
|
//! As hh:mm
|
|
QString getFormattedUtcTimestampHm() const;
|
|
|
|
//! As yyyy MM dd HH mm ss
|
|
QString getFormattedUtcTimestampYmdhms() const;
|
|
|
|
//! As yyyy MM dd HH mm ss.zzz
|
|
QString getFormattedUtcTimestampYmdhmsz() const;
|
|
|
|
//! Valid timestamp?
|
|
bool hasValidTimestamp() const;
|
|
|
|
//! Can given index be handled
|
|
static bool canHandleIndex(const BlackMisc::CPropertyIndex &index);
|
|
|
|
protected:
|
|
//! Constructor
|
|
ITimestampBased();
|
|
|
|
//! Constructor
|
|
ITimestampBased(qint64 msSincePoch);
|
|
|
|
//! Constructor
|
|
ITimestampBased(const QDateTime ×tamp);
|
|
|
|
//! \copydoc BlackMisc::Mixin::Index::propertyByIndex
|
|
CVariant propertyByIndex(const BlackMisc::CPropertyIndex &index) const;
|
|
|
|
//! \copydoc BlackMisc::Mixin::Index::setPropertyByIndex
|
|
void setPropertyByIndex(const BlackMisc::CPropertyIndex &index, const CVariant &variant);
|
|
|
|
//! Compare for index
|
|
int comparePropertyByIndex(const CPropertyIndex &index, const ITimestampBased &compareValue) const;
|
|
|
|
qint64 m_timestampMSecsSinceEpoch = -1; //!< timestamp value
|
|
};
|
|
} // namespace
|
|
|
|
#endif // guard
|