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

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :     qgswkbptr.cpp
       3                 :            :     ---------------------
       4                 :            :     begin                : May 2015
       5                 :            :     copyright            : (C) 2015 by Marco Hugentobler
       6                 :            :     email                : marco dot hugentobler at sourcepole dot ch
       7                 :            :  ***************************************************************************
       8                 :            :  *                                                                         *
       9                 :            :  *   This program is free software; you can redistribute it and/or modify  *
      10                 :            :  *   it under the terms of the GNU General Public License as published by  *
      11                 :            :  *   the Free Software Foundation; either version 2 of the License, or     *
      12                 :            :  *   (at your option) any later version.                                   *
      13                 :            :  *                                                                         *
      14                 :            :  ***************************************************************************/
      15                 :            : #include "qgswkbptr.h"
      16                 :            : #include "qgsapplication.h"
      17                 :            : 
      18                 :        163 : QgsWkbPtr::QgsWkbPtr( QByteArray &wkb )
      19                 :            : {
      20                 :        163 :   mP = reinterpret_cast<unsigned char *>( wkb.data() );
      21                 :        163 :   mStart = mP;
      22                 :        163 :   mEnd = mP + wkb.length();
      23                 :        163 : }
      24                 :            : 
      25                 :          2 : QgsWkbPtr::QgsWkbPtr( unsigned char *p, int size )
      26                 :            : {
      27                 :          2 :   mP = p;
      28                 :          2 :   mStart = mP;
      29                 :          2 :   mEnd = mP + size;
      30                 :          2 : }
      31                 :            : 
      32                 :       1764 : void QgsWkbPtr::verifyBound( int size ) const
      33                 :            : {
      34                 :       1764 :   if ( !mP || mP + size > mEnd )
      35                 :          0 :     throw QgsWkbException( QStringLiteral( "wkb access out of bounds" ) );
      36                 :       1764 : }
      37                 :            : 
      38                 :         60 : QgsConstWkbPtr::QgsConstWkbPtr( const QByteArray &wkb )
      39                 :            : {
      40                 :         60 :   mP = reinterpret_cast< unsigned char * >( const_cast<char *>( wkb.constData() ) );
      41                 :         60 :   mEnd = mP + wkb.length();
      42                 :         60 :   mEndianSwap = false;
      43                 :         60 :   mWkbType = QgsWkbTypes::Unknown;
      44                 :         60 : }
      45                 :            : 
      46                 :         17 : QgsConstWkbPtr::QgsConstWkbPtr( const unsigned char *p, int size )
      47                 :            : {
      48                 :         17 :   mP = const_cast< unsigned char * >( p );
      49                 :         17 :   mEnd = mP + size;
      50                 :         17 :   mEndianSwap = false;
      51                 :         17 :   mWkbType = QgsWkbTypes::Unknown;
      52                 :         17 : }
      53                 :            : 
      54                 :        209 : QgsWkbTypes::Type QgsConstWkbPtr::readHeader() const
      55                 :            : {
      56                 :        209 :   if ( !mP )
      57                 :          1 :     return QgsWkbTypes::Unknown;
      58                 :            : 
      59                 :            :   char wkbEndian;
      60                 :        208 :   *this >> wkbEndian;
      61                 :        208 :   mEndianSwap = wkbEndian != QgsApplication::endian();
      62                 :            : 
      63                 :            :   int wkbType;
      64                 :        208 :   *this >> wkbType;
      65                 :        208 :   mWkbType = static_cast<QgsWkbTypes::Type>( wkbType );
      66                 :            : 
      67                 :        208 :   return mWkbType;
      68                 :        208 : }
      69                 :            : 
      70                 :       1425 : void QgsConstWkbPtr::verifyBound( int size ) const
      71                 :            : {
      72                 :       1425 :   if ( !mP || mP + size > mEnd )
      73                 :          4 :     throw QgsWkbException( QStringLiteral( "wkb access out of bounds" ) );
      74                 :       1425 : }
      75                 :            : 
      76                 :          0 : const QgsConstWkbPtr &QgsConstWkbPtr::operator>>( QPointF &point ) const
      77                 :            : {
      78                 :          0 :   read( point.rx() );
      79                 :          0 :   read( point.ry() );
      80                 :          0 :   return *this;
      81                 :            : }
      82                 :            : 
      83                 :          0 : const QgsConstWkbPtr &QgsConstWkbPtr::operator>>( QPolygonF &points ) const
      84                 :            : {
      85                 :          0 :   int skipZM = ( QgsWkbTypes::coordDimensions( mWkbType ) - 2 ) * sizeof( double );
      86                 :            :   Q_ASSERT( skipZM >= 0 );
      87                 :            : 
      88                 :            :   unsigned int nPoints;
      89                 :          0 :   read( nPoints );
      90                 :            : 
      91                 :          0 :   points.resize( nPoints );
      92                 :          0 :   QPointF *ptr = points.data();
      93                 :            : 
      94                 :          0 :   for ( unsigned int i = 0; i < nPoints; ++i, ++ptr )
      95                 :            :   {
      96                 :          0 :     read( ptr->rx() );
      97                 :          0 :     read( ptr->ry() );
      98                 :          0 :     mP += skipZM;
      99                 :          0 :   }
     100                 :          0 :   return *this;
     101                 :            : }

Generated by: LCOV version 1.14