// Copyright (C) Stichting Deltares 2017. All rights reserved.
//
// This file is part of Ringtoets.
//
// Ringtoets 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.
//
// This program 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 for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
//
// All names, logos, and references to "Deltares" are registered trademarks of
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
using System;
using System.Data;
using System.Data.SQLite;
using Core.Common.Base.Geometry;
using Core.Common.Base.IO;
using Core.Common.IO.Readers;
using Core.Common.Utils.Builders;
using Ringtoets.Piping.Data;
using Ringtoets.Piping.IO.Builders;
using Ringtoets.Piping.IO.Exceptions;
using Ringtoets.Piping.IO.Properties;
using Ringtoets.Piping.IO.SoilProfile.Schema;
namespace Ringtoets.Piping.IO.SoilProfile
{
///
/// This class reads a DSoil database file and reads from this database.
///
public class StochasticSoilModelReader : SqLiteDatabaseReaderBase
{
private const string pipingMechanismName = "Piping";
private readonly string filePath;
private IDataReader dataReader;
///
/// Creates a new instance of ,
/// which will use the as its source.
///
/// The path of the database file to open.
/// Thrown when:
/// - The contains invalid characters.
/// - No file could be found at .
/// - The database version could not be read.
/// - The database version is incorrect.
///
public StochasticSoilModelReader(string databaseFilePath) : base(databaseFilePath)
{
filePath = databaseFilePath;
VerifyVersion(databaseFilePath);
VerifyConstraints(databaseFilePath);
InitializeReader();
}
///
/// Gets a value indicating whether or not more stochastic soil profiles can be read using
/// the .
///
public bool HasNext { get; private set; }
///
/// Gets the amount of that can be read from the database.
///
public int PipingStochasticSoilModelCount { get; private set; }
///
/// Reads the information for the next stochastic soil model from the database and creates a
/// instance of the information.
///
/// The next from the database, or null if no more soil models can be read.
/// Thrown when the database returned incorrect values for required properties.
/// Thrown when the database returned incorrect values for required properties.
public StochasticSoilModel ReadStochasticSoilModel()
{
try
{
return ReadPipingStochasticSoilModel();
}
catch (SystemException exception)
{
if (exception is FormatException || exception is OverflowException || exception is InvalidCastException)
{
string message = new FileReaderErrorMessageBuilder(Path).Build(Resources.StochasticSoilProfileDatabaseReader_StochasticSoilProfile_has_invalid_value);
throw new CriticalFileReadException(message, exception);
}
throw;
}
}
public override void Dispose()
{
dataReader?.Dispose();
base.Dispose();
}
private int ReadStochasticSoilModelCount()
{
return !dataReader.Read() ? 0 : Convert.ToInt32(dataReader[StochasticSoilModelTableColumns.Count]);
}
private StochasticSoilModel ReadPipingStochasticSoilModel()
{
if (!HasNext)
{
return null;
}
StochasticSoilModel stochasticSoilModelSegment = ReadStochasticSoilModelSegment();
long currentSegmentSoilModelId = stochasticSoilModelSegment.Id;
do
{
// Read Points
Point2D point2D = ReadSegmentPoint();
if (point2D != null)
{
stochasticSoilModelSegment.Geometry.Add(point2D);
}
MoveNext();
} while (HasNext && ReadStochasticSoilModelSegment().Id == currentSegmentSoilModelId);
AddStochasticSoilProfiles(stochasticSoilModelSegment);
return stochasticSoilModelSegment;
}
private void AddStochasticSoilProfiles(StochasticSoilModel stochasticSoilModelSegment)
{
using (var stochasticSoilProfileReader = new StochasticSoilProfileReader(filePath))
{
while (stochasticSoilProfileReader.HasNext)
{
AddStochasticSoilProfile(stochasticSoilModelSegment, stochasticSoilProfileReader);
}
}
}
private static void AddStochasticSoilProfile(StochasticSoilModel stochasticSoilModelSegment, StochasticSoilProfileReader stochasticSoilProfileReader)
{
StochasticSoilProfile stochasticSoilProfile = stochasticSoilProfileReader.ReadStochasticSoilProfile(stochasticSoilModelSegment.Id);
if (stochasticSoilProfile != null)
{
stochasticSoilModelSegment.StochasticSoilProfiles.Add(stochasticSoilProfile);
}
}
///
/// Prepares a new data reader with queries for obtaining the models and updates the reader
/// so that it points to the first row of the result set.
///
/// A query could not be executed on the database schema.
private void InitializeReader()
{
CreateDataReader();
MoveNext();
}
///
/// Moves the reader to the next record in the database.
///
private void MoveNext()
{
HasNext = MoveNext(dataReader);
}
private void CreateDataReader()
{
string locationCountQuery = SoilDatabaseQueryBuilder.GetStochasticSoilModelOfMechanismCountQuery();
string stochasticSoilModelSegmentsQuery = SoilDatabaseQueryBuilder.GetStochasticSoilModelOfMechanismQuery();
var sqliteParameter = new SQLiteParameter
{
DbType = DbType.String,
ParameterName = string.Format("@{0}", MechanismTableColumns.MechanismName),
Value = pipingMechanismName
};
try
{
dataReader = CreateDataReader(locationCountQuery + stochasticSoilModelSegmentsQuery, sqliteParameter);
}
catch (SQLiteException exception)
{
CloseConnection();
string message = new FileReaderErrorMessageBuilder(Path).Build(Resources.StochasticSoilModelDatabaseReader_Failed_to_read_database);
throw new CriticalFileReadException(message, exception);
}
PipingStochasticSoilModelCount = ReadStochasticSoilModelCount();
dataReader.NextResult();
}
private void VerifyVersion(string databaseFilePath)
{
using (var versionReader = new SoilDatabaseVersionReader(databaseFilePath))
{
try
{
versionReader.VerifyVersion();
}
catch (CriticalFileReadException)
{
CloseConnection();
throw;
}
}
}
private void VerifyConstraints(string databaseFilePath)
{
using (var versionReader = new SoilDatabaseConstraintsReader(databaseFilePath))
{
try
{
versionReader.VerifyConstraints();
}
catch (CriticalFileReadException)
{
CloseConnection();
throw;
}
}
}
private StochasticSoilModel ReadStochasticSoilModelSegment()
{
long stochasticSoilModelId = Convert.ToInt64(dataReader[StochasticSoilModelTableColumns.StochasticSoilModelId]);
string stochasticSoilModelName = Convert.ToString(dataReader[StochasticSoilModelTableColumns.StochasticSoilModelName]);
string segmentName = Convert.ToString(dataReader[SegmentTableColumns.SegmentName]);
return new StochasticSoilModel(stochasticSoilModelId, stochasticSoilModelName);
}
private Point2D ReadSegmentPoint()
{
double coordinateX = Convert.ToDouble(dataReader[SegmentPointsTableColumns.CoordinateX]);
double coordinateY = Convert.ToDouble(dataReader[SegmentPointsTableColumns.CoordinateY]);
return new Point2D(coordinateX, coordinateY);
}
}
}