Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsvaliditycheckregistry.cpp 3 : : ---------------------------- 4 : : begin : November 2018 5 : : copyright : (C) 2018 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 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 : : 16 : : #include "qgsvaliditycheckregistry.h" 17 : : #include "qgsfeedback.h" 18 : : 19 : 5 : QgsValidityCheckRegistry::QgsValidityCheckRegistry() 20 : : { 21 : 5 : } 22 : : 23 : 5 : QgsValidityCheckRegistry::~QgsValidityCheckRegistry() 24 : : { 25 : 5 : qDeleteAll( mChecks ); 26 : 5 : } 27 : : 28 : 0 : QList<const QgsAbstractValidityCheck *> QgsValidityCheckRegistry::checks() const 29 : : { 30 : 0 : QList<const QgsAbstractValidityCheck *> results; 31 : 0 : for ( const QgsAbstractValidityCheck *check : mChecks ) 32 : : { 33 : 0 : if ( check ) 34 : 0 : results.append( check ); 35 : : } 36 : 0 : return results; 37 : 0 : } 38 : : 39 : 0 : QList<const QgsAbstractValidityCheck *> QgsValidityCheckRegistry::checks( int type ) const 40 : : { 41 : 0 : QList< const QgsAbstractValidityCheck * > results; 42 : 0 : for ( const QgsAbstractValidityCheck *check : mChecks ) 43 : : { 44 : 0 : if ( check && check->checkType() == type ) 45 : 0 : results << check; 46 : : } 47 : 0 : return results; 48 : 0 : } 49 : : 50 : 0 : void QgsValidityCheckRegistry::addCheck( QgsAbstractValidityCheck *check ) 51 : : { 52 : 0 : mChecks.append( check ); 53 : 0 : } 54 : : 55 : 0 : void QgsValidityCheckRegistry::removeCheck( QgsAbstractValidityCheck *check ) 56 : : { 57 : 0 : int index = mChecks.indexOf( check ); 58 : 0 : if ( index >= 0 ) 59 : 0 : delete mChecks.takeAt( index ); 60 : 0 : } 61 : : 62 : 0 : QList<QgsValidityCheckResult> QgsValidityCheckRegistry::runChecks( int type, const QgsValidityCheckContext *context, QgsFeedback *feedback ) const 63 : : { 64 : 0 : QList<QgsValidityCheckResult> result; 65 : 0 : const std::vector<std::unique_ptr<QgsAbstractValidityCheck> > toCheck = createChecks( type ); 66 : 0 : int i = 0; 67 : 0 : for ( const std::unique_ptr< QgsAbstractValidityCheck > &check : toCheck ) 68 : : { 69 : 0 : if ( feedback && feedback->isCanceled() ) 70 : 0 : break; 71 : : 72 : 0 : if ( !check->prepareCheck( context, feedback ) ) 73 : : { 74 : 0 : if ( feedback ) 75 : : { 76 : 0 : feedback->setProgress( static_cast< double >( i ) / toCheck.size() * 100 ); 77 : 0 : } 78 : 0 : continue; 79 : : } 80 : : 81 : 0 : const QList< QgsValidityCheckResult > checkResults = check->runCheck( context, feedback ); 82 : 0 : for ( QgsValidityCheckResult checkResult : checkResults ) 83 : : { 84 : 0 : checkResult.checkId = check->id(); 85 : 0 : result << checkResult; 86 : 0 : } 87 : 0 : i++; 88 : 0 : if ( feedback ) 89 : : { 90 : 0 : feedback->setProgress( static_cast< double >( i ) / toCheck.size() * 100 ); 91 : 0 : } 92 : 0 : } 93 : 0 : return result; 94 : 0 : } 95 : : 96 : 0 : std::vector<std::unique_ptr<QgsAbstractValidityCheck> > QgsValidityCheckRegistry::createChecks( int type ) const 97 : : { 98 : 0 : const QList< const QgsAbstractValidityCheck *> toCheck = checks( type ); 99 : 0 : std::vector<std::unique_ptr<QgsAbstractValidityCheck> > results; 100 : 0 : results.reserve( toCheck.size() ); 101 : 0 : for ( const QgsAbstractValidityCheck *check : toCheck ) 102 : : { 103 : 0 : results.emplace_back( std::unique_ptr< QgsAbstractValidityCheck >( check->create() ) ); 104 : : } 105 : 0 : return results; 106 : 0 : }