LCOV - code coverage report
Current view: top level - core/mesh - qgsmeshlayertemporalproperties.cpp (source / functions) Hit Total Coverage
Test: coverage.info.cleaned Lines: 0 56 0.0 %
Date: 2021-04-10 08:29:14 Functions: 0 0 -
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :                          qgsmeshlayertemporalproperties.cpp
       3                 :            :                          -----------------------
       4                 :            :     begin                : March 2020
       5                 :            :     copyright            : (C) 2020 by Vincent Cloarec
       6                 :            :     email                : vcloarec at gmail dot com
       7                 :            :  ***************************************************************************/
       8                 :            : 
       9                 :            : /***************************************************************************
      10                 :            :  *                                                                         *
      11                 :            :  *   This program is free software; you can redistribute it and/or modify  *
      12                 :            :  *   it under the terms of the GNU General Public License as published by  *
      13                 :            :  *   the Free Software Foundation; either version 2 of the License, or     *
      14                 :            :  *   (at your option) any later version.                                   *
      15                 :            :  *                                                                         *
      16                 :            :  ***************************************************************************/
      17                 :            : 
      18                 :            : #include "qgsmeshlayertemporalproperties.h"
      19                 :            : #include "qgsmeshdataprovidertemporalcapabilities.h"
      20                 :            : #include "qgsproject.h"
      21                 :            : #include "qgsprojecttimesettings.h"
      22                 :            : 
      23                 :          0 : QgsMeshLayerTemporalProperties::QgsMeshLayerTemporalProperties( QObject *parent, bool enabled ):
      24                 :          0 :   QgsMapLayerTemporalProperties( parent, enabled )
      25                 :          0 : {}
      26                 :            : 
      27                 :          0 : QDomElement QgsMeshLayerTemporalProperties::writeXml( QDomElement &element, QDomDocument &doc, const QgsReadWriteContext &context )
      28                 :            : {
      29                 :          0 :   Q_UNUSED( context );
      30                 :            : 
      31                 :          0 :   QDomElement temporalElement = doc.createElement( QStringLiteral( "temporal" ) );
      32                 :          0 :   temporalElement.setAttribute( QStringLiteral( "temporal-active" ), isActive() ? true : false );
      33                 :          0 :   temporalElement.setAttribute( QStringLiteral( "reference-time" ), mReferenceTime.toTimeSpec( Qt::UTC ).toString( Qt::ISODate ) );
      34                 :          0 :   temporalElement.setAttribute( QStringLiteral( "start-time-extent" ), mTimeExtent.begin().toTimeSpec( Qt::UTC ).toString( Qt::ISODate ) );
      35                 :          0 :   temporalElement.setAttribute( QStringLiteral( "end-time-extent" ), mTimeExtent.end().toTimeSpec( Qt::UTC ).toString( Qt::ISODate ) );
      36                 :          0 :   temporalElement.setAttribute( QStringLiteral( "matching-method" ), mMatchingMethod );
      37                 :            : 
      38                 :          0 :   element.appendChild( temporalElement );
      39                 :            : 
      40                 :          0 :   return element;
      41                 :          0 : }
      42                 :            : 
      43                 :          0 : bool QgsMeshLayerTemporalProperties::readXml( const QDomElement &element, const QgsReadWriteContext &context )
      44                 :            : {
      45                 :          0 :   Q_UNUSED( context );
      46                 :            : 
      47                 :          0 :   QDomElement temporalElement = element.firstChildElement( QStringLiteral( "temporal" ) );
      48                 :          0 :   bool active = temporalElement.attribute( QStringLiteral( "temporal-active" ) ).toInt();
      49                 :          0 :   setIsActive( active );
      50                 :            : 
      51                 :          0 :   mReferenceTime = QDateTime::fromString( temporalElement.attribute( QStringLiteral( "reference-time" ) ), Qt::ISODate );
      52                 :            : 
      53                 :          0 :   if ( temporalElement.hasAttribute( QStringLiteral( "start-time-extent" ) )
      54                 :          0 :        && temporalElement.hasAttribute( QStringLiteral( "end-time-extent" ) ) )
      55                 :            :   {
      56                 :          0 :     QDateTime start = QDateTime::fromString( temporalElement.attribute( QStringLiteral( "start-time-extent" ) ), Qt::ISODate );
      57                 :          0 :     QDateTime end = QDateTime::fromString( temporalElement.attribute( QStringLiteral( "end-time-extent" ) ), Qt::ISODate );
      58                 :          0 :     mTimeExtent = QgsDateTimeRange( start, end );
      59                 :          0 :   }
      60                 :            : 
      61                 :          0 :   mMatchingMethod = static_cast<QgsMeshDataProviderTemporalCapabilities::MatchingTemporalDatasetMethod>(
      62                 :          0 :                       temporalElement.attribute( QStringLiteral( "matching-method" ) ).toInt() );
      63                 :            : 
      64                 :            :   return true;
      65                 :          0 : }
      66                 :            : 
      67                 :          0 : void QgsMeshLayerTemporalProperties::setDefaultsFromDataProviderTemporalCapabilities( const QgsDataProviderTemporalCapabilities *capabilities )
      68                 :            : {
      69                 :          0 :   const QgsMeshDataProviderTemporalCapabilities *temporalCapabilities =
      70                 :          0 :     static_cast<const QgsMeshDataProviderTemporalCapabilities *>( capabilities );
      71                 :            : 
      72                 :          0 :   setIsActive( temporalCapabilities->hasTemporalCapabilities() );
      73                 :          0 :   mReferenceTime = temporalCapabilities->referenceTime();
      74                 :            : 
      75                 :          0 :   if ( mReferenceTime.isValid() )
      76                 :          0 :     mTimeExtent = temporalCapabilities->timeExtent();
      77                 :          0 : }
      78                 :            : 
      79                 :          0 : QgsDateTimeRange QgsMeshLayerTemporalProperties::calculateTemporalExtent( QgsMapLayer * ) const
      80                 :            : {
      81                 :          0 :   return mTimeExtent;
      82                 :            : }
      83                 :            : 
      84                 :          0 : QgsDateTimeRange QgsMeshLayerTemporalProperties::timeExtent() const
      85                 :            : {
      86                 :          0 :   return mTimeExtent;
      87                 :            : }
      88                 :            : 
      89                 :          0 : QDateTime QgsMeshLayerTemporalProperties::referenceTime() const
      90                 :            : {
      91                 :          0 :   return mReferenceTime;
      92                 :            : }
      93                 :            : 
      94                 :          0 : void QgsMeshLayerTemporalProperties::setReferenceTime( const QDateTime &referenceTime, const QgsDataProviderTemporalCapabilities *capabilities )
      95                 :            : {
      96                 :          0 :   mReferenceTime = referenceTime;
      97                 :          0 :   if ( capabilities )
      98                 :            :   {
      99                 :          0 :     const QgsMeshDataProviderTemporalCapabilities *tempCap = static_cast<const QgsMeshDataProviderTemporalCapabilities *>( capabilities );
     100                 :          0 :     mTimeExtent = tempCap->timeExtent( referenceTime );
     101                 :          0 :   }
     102                 :            :   else
     103                 :          0 :     mTimeExtent = QgsDateTimeRange( referenceTime, referenceTime );
     104                 :          0 : }
     105                 :            : 
     106                 :          0 : QgsMeshDataProviderTemporalCapabilities::MatchingTemporalDatasetMethod QgsMeshLayerTemporalProperties::matchingMethod() const
     107                 :            : {
     108                 :          0 :   return mMatchingMethod;
     109                 :            : }
     110                 :            : 
     111                 :          0 : void QgsMeshLayerTemporalProperties::setMatchingMethod( const QgsMeshDataProviderTemporalCapabilities::MatchingTemporalDatasetMethod &matchingMethod )
     112                 :            : {
     113                 :          0 :   mMatchingMethod = matchingMethod;
     114                 :          0 : }

Generated by: LCOV version 1.14