mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
8bab748fa6
Based on branch https://github.com/OPM/ResInsight/tree/system-msw-refactor - Move completion settings to property of well path - Rename to RimFishbones - Export implicit COMPSEGS for fishbones main bore - Add valve for each branch - Increase version number to be able to handle import of legacy project files
166 lines
6.5 KiB
C++
166 lines
6.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017 Statoil ASA
|
|
//
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RiaProjectFileVersionTools.h"
|
|
|
|
#include <QStringList>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RiaProjectFileVersionTools::isCandidateVersionNewerThanOther( const QString& candidateProjectFileVersion,
|
|
const QString& projectFileVersion )
|
|
{
|
|
int candidateMajorVersion = 0;
|
|
int candidateMinorVersion = 0;
|
|
int candidatePatchNumber = -1;
|
|
int candidateDevelopmentId = -1;
|
|
|
|
RiaProjectFileVersionTools::decodeVersionString( candidateProjectFileVersion,
|
|
&candidateMajorVersion,
|
|
&candidateMinorVersion,
|
|
&candidatePatchNumber,
|
|
&candidateDevelopmentId );
|
|
|
|
int majorVersion = 0;
|
|
int minorVersion = 0;
|
|
int patchNumber = -1;
|
|
int developmentId = -1;
|
|
|
|
RiaProjectFileVersionTools::decodeVersionString( projectFileVersion,
|
|
&majorVersion,
|
|
&minorVersion,
|
|
&patchNumber,
|
|
&developmentId );
|
|
|
|
return RiaProjectFileVersionTools::isCandidateNewerThanOther( candidateMajorVersion,
|
|
candidateMinorVersion,
|
|
candidatePatchNumber,
|
|
candidateDevelopmentId,
|
|
majorVersion,
|
|
minorVersion,
|
|
patchNumber,
|
|
developmentId );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RiaProjectFileVersionTools::decodeVersionString( const QString& projectFileVersion,
|
|
int* majorVersion,
|
|
int* minorVersion,
|
|
int* patch,
|
|
int* developmentId )
|
|
{
|
|
if ( projectFileVersion.isEmpty() ) return;
|
|
|
|
QStringList subStrings = projectFileVersion.split( "." );
|
|
|
|
if ( subStrings.size() > 0 )
|
|
{
|
|
*majorVersion = subStrings[0].toInt();
|
|
}
|
|
|
|
if ( subStrings.size() > 1 )
|
|
{
|
|
*minorVersion = subStrings[1].toInt();
|
|
}
|
|
|
|
if ( subStrings.size() > 2 )
|
|
{
|
|
QString candidate = subStrings[2];
|
|
QString candidateDigitsOnly = RiaProjectFileVersionTools::stringOfDigits( candidate );
|
|
|
|
*patch = candidateDigitsOnly.toInt();
|
|
}
|
|
|
|
if ( subStrings.size() > 3 )
|
|
{
|
|
QString candidate = subStrings.back();
|
|
QString candidateDigitsOnly = RiaProjectFileVersionTools::stringOfDigits( candidate );
|
|
|
|
*developmentId = candidateDigitsOnly.toInt();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RiaProjectFileVersionTools::isCandidateNewerThanOther( int candidateMajorVersion,
|
|
int candidateMinorVersion,
|
|
int candidatePatchNumber,
|
|
int candidateDevelopmentId,
|
|
int otherMajorVersion,
|
|
int otherMinorVersion,
|
|
int otherPatchNumber,
|
|
int otherDevelopmentId )
|
|
{
|
|
if ( candidateMajorVersion != otherMajorVersion )
|
|
{
|
|
return ( candidateMajorVersion > otherMajorVersion );
|
|
}
|
|
|
|
if ( candidateMinorVersion != otherMinorVersion )
|
|
{
|
|
return ( candidateMinorVersion > otherMinorVersion );
|
|
}
|
|
|
|
// Early exit if a patch number is undefined
|
|
if ( candidatePatchNumber == -1 || otherPatchNumber == -1 ) return false;
|
|
|
|
if ( candidatePatchNumber != otherPatchNumber )
|
|
{
|
|
return ( candidatePatchNumber > otherPatchNumber );
|
|
}
|
|
|
|
// Early exit if a development number is undefined
|
|
if ( candidateDevelopmentId == -1 && otherDevelopmentId == -1 ) return false;
|
|
|
|
if ( candidateDevelopmentId != otherDevelopmentId )
|
|
{
|
|
return ( candidateDevelopmentId > otherDevelopmentId );
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QString RiaProjectFileVersionTools::stringOfDigits( const QString& string )
|
|
{
|
|
QString digitsOnly;
|
|
|
|
for ( const auto& c : string )
|
|
{
|
|
if ( c.isDigit() )
|
|
{
|
|
digitsOnly += c;
|
|
}
|
|
else
|
|
{
|
|
if ( !digitsOnly.isEmpty() )
|
|
{
|
|
return digitsOnly;
|
|
}
|
|
}
|
|
}
|
|
|
|
return digitsOnly;
|
|
}
|