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

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :     QgsOgrTransaction.cpp -  Transaction support for OGR layers
       3                 :            :                              -------------------
       4                 :            :     begin                : June 13, 2018
       5                 :            :     copyright            : (C) 2018 by Even Rouault
       6                 :            :     email                : even.rouault @ spatialys.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 "qgsogrtransaction.h"
      19                 :            : ///@cond PRIVATE
      20                 :            : 
      21                 :            : #include "qgsogrprovider.h"
      22                 :            : #include "qgslogger.h"
      23                 :            : #include "qgis.h"
      24                 :            : 
      25                 :          0 : QgsOgrTransaction::QgsOgrTransaction( const QString &connString, QgsOgrDatasetSharedPtr ds )
      26                 :          0 :   : QgsTransaction( connString ), mSharedDS( ds )
      27                 :            : 
      28                 :          0 : {
      29                 :            :   Q_ASSERT( mSharedDS );
      30                 :          0 : }
      31                 :            : 
      32                 :          0 : bool QgsOgrTransaction::beginTransaction( QString &error, int /* statementTimeout */ )
      33                 :            : {
      34                 :          0 :   return executeSql( QStringLiteral( "BEGIN" ), error );
      35                 :          0 : }
      36                 :            : 
      37                 :          0 : bool QgsOgrTransaction::commitTransaction( QString &error )
      38                 :            : {
      39                 :          0 :   return executeSql( QStringLiteral( "COMMIT" ), error );
      40                 :          0 : }
      41                 :            : 
      42                 :          0 : bool QgsOgrTransaction::rollbackTransaction( QString &error )
      43                 :            : {
      44                 :          0 :   return executeSql( QStringLiteral( "ROLLBACK" ), error );
      45                 :          0 : }
      46                 :            : 
      47                 :          0 : bool QgsOgrTransaction::executeSql( const QString &sql, QString &errorMsg, bool isDirty, const QString &name )
      48                 :            : {
      49                 :            : 
      50                 :          0 :   QString err;
      51                 :          0 :   if ( isDirty )
      52                 :            :   {
      53                 :          0 :     createSavepoint( err );
      54                 :          0 :   }
      55                 :            : 
      56                 :          0 :   QgsDebugMsg( QStringLiteral( "Transaction sql: %1" ).arg( sql ) );
      57                 :          0 :   if ( !mSharedDS->executeSQLNoReturn( sql ) )
      58                 :            :   {
      59                 :          0 :     errorMsg = CPLGetLastErrorMsg();
      60                 :          0 :     QgsDebugMsg( errorMsg );
      61                 :            : 
      62                 :          0 :     if ( isDirty )
      63                 :            :     {
      64                 :          0 :       rollbackToSavepoint( savePoints().last(), err );
      65                 :          0 :     }
      66                 :            : 
      67                 :          0 :     return false;
      68                 :            :   }
      69                 :            : 
      70                 :          0 :   if ( isDirty )
      71                 :            :   {
      72                 :          0 :     dirtyLastSavePoint();
      73                 :          0 :     emit dirtied( sql, name );
      74                 :          0 :   }
      75                 :            : 
      76                 :          0 :   QgsDebugMsg( QStringLiteral( "... ok" ) );
      77                 :          0 :   return true;
      78                 :          0 : }
      79                 :            : 
      80                 :            : ///@endcond

Generated by: LCOV version 1.14