// Copyright (C) Stichting Deltares 2016. 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.Collections.Generic; using System.Linq; using System.Windows.Forms; using Core.Common.Base.Data; using Core.Common.Gui; using Core.Common.Gui.Forms.ViewHost; using Core.Common.IO.Exceptions; using log4net; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Forms.Helpers; using Ringtoets.Common.IO; using Ringtoets.Common.IO.Exceptions; using Ringtoets.Integration.Data; using Ringtoets.Integration.Forms.Properties; using BaseResources = Core.Common.Base.Properties.Resources; namespace Ringtoets.Integration.Forms.Commands { /// /// This class is responsible for adding an from a predefined location. /// public class AssessmentSectionFromFileCommandHandler : IAssessmentSectionFromFileCommandHandler { private static readonly ILog log = LogManager.GetLogger(typeof(AssessmentSectionFromFileCommandHandler)); private readonly string shapeFileDirectory = RingtoetsSettingsHelper.GetCommonDocumentsRingtoetsShapeFileDirectory(); private readonly IWin32Window dialogParent; private readonly IProjectOwner projectOwner; private readonly IDocumentViewController viewController; private IEnumerable settings; private IEnumerable referenceLineMetas = new List(); /// /// Initializes a new instance of the class. /// /// The parent of the dialog. /// The class owning the application project. /// The document view controller. public AssessmentSectionFromFileCommandHandler(IWin32Window dialogParent, IProjectOwner projectOwner, IDocumentViewController viewController) { if (dialogParent == null) { throw new ArgumentNullException("dialogParent"); } if (projectOwner == null) { throw new ArgumentNullException("projectOwner"); } if (viewController == null) { throw new ArgumentNullException("viewController"); } this.dialogParent = dialogParent; this.projectOwner = projectOwner; this.viewController = viewController; } public void CreateAssessmentSectionFromFile() { if (!TryValidate()) { return; } var assessmentSection = GetAssessmentSectionFromDialog(); if (assessmentSection == null || !(projectOwner.Project is RingtoetsProject)) { return; } SetAssessmentSectionToProject((RingtoetsProject) projectOwner.Project, assessmentSection); } #region Dialog private AssessmentSection GetAssessmentSectionFromDialog() { using (var dialog = CreateReferenceLineMetaSelectionDialogWithItems()) { if (dialog.ShowDialog() != DialogResult.OK) { return null; } var selectedItem = dialog.SelectedReferenceLineMeta; return selectedItem == null ? null : CreateAssessmentSection(selectedItem, dialog.SelectedNorm); } } private ReferenceLineMetaSelectionDialog CreateReferenceLineMetaSelectionDialogWithItems() { return new ReferenceLineMetaSelectionDialog(dialogParent, referenceLineMetas); } #endregion #region Set AssessmentSection to Project private static void SetFailureMechanismsValueN(AssessmentSection assessmentSection, int n) { assessmentSection.GrassCoverErosionInwards.GeneralInput.N = n; assessmentSection.HeightStructures.GeneralInput.N = n; } private void SetAssessmentSectionToProject(RingtoetsProject ringtoetsProject, AssessmentSection assessmentSection) { assessmentSection.Name = GetUniqueForAssessmentSectionName(ringtoetsProject.AssessmentSections, assessmentSection.Name); ringtoetsProject.AssessmentSections.Add(assessmentSection); ringtoetsProject.NotifyObservers(); viewController.OpenViewForData(assessmentSection); } private static string GetUniqueForAssessmentSectionName(IEnumerable assessmentSections, string baseName) { return NamingHelper.GetUniqueName(assessmentSections, baseName, a => a.Name); } #endregion #region Create AssessmentSection private static AssessmentSection CreateDikeAssessmentSection() { var assessmentSection = new AssessmentSection(AssessmentSectionComposition.Dike); return assessmentSection; } private static AssessmentSection CreateDikeAssessmentSection(AssessmentSectionSettings settings) { var assessmentSection = CreateDikeAssessmentSection(); SetFailureMechanismsValueN(assessmentSection, settings.N); return assessmentSection; } private static AssessmentSection CreateDuneAssessmentSection() { return new AssessmentSection(AssessmentSectionComposition.Dune); } private AssessmentSection CreateAssessmentSection(ReferenceLineMeta selectedItem, int? norm) { AssessmentSection assessmentSection; var settingOfSelectedAssessmentSection = settings.FirstOrDefault(s => s.AssessmentSectionId == selectedItem.AssessmentSectionId); if (settingOfSelectedAssessmentSection == null) { log.Warn(Resources.AssessmentSectionFromFileCommandHandler_CreateAssessmentSection_No_settings_found_for_AssessmentSection); assessmentSection = CreateDikeAssessmentSection(); } else { assessmentSection = (settingOfSelectedAssessmentSection.IsDune) ? CreateDuneAssessmentSection() : CreateDikeAssessmentSection(settingOfSelectedAssessmentSection); } assessmentSection.Id = selectedItem.AssessmentSectionId; assessmentSection.ReferenceLine = selectedItem.ReferenceLine; if (!assessmentSection.ReferenceLine.Points.Any()) { log.Warn(Resources.AssessmentSectionFromFileCommandHandler_CreateAssessmentSection_Importing_ReferenceLineFailed); } if (norm.HasValue) { try { assessmentSection.FailureMechanismContribution.Norm = norm.Value; } catch (ArgumentOutOfRangeException exception) { log.Warn(string.Format(Resources.AssessmentSectionFromFileCommandHandler_CreateAssessmentSection_Unable_to_set_Value_0, norm.Value), exception); } } return assessmentSection; } #endregion #region Validators private bool TryValidate() { ValidateAssessmentSectionSettings(); try { ValidateReferenceLineMetas(); } catch (CriticalFileValidationException exception) { MessageBox.Show(exception.Message, BaseResources.Error, MessageBoxButtons.OK, MessageBoxIcon.Error); log.Warn(exception.Message, exception.InnerException); return false; } catch (CriticalFileReadException exception) { log.Error(exception.Message, exception.InnerException); return false; } return true; } private void ValidateReferenceLineMetas() { var importer = new ReferenceLineMetaImporter(shapeFileDirectory); referenceLineMetas = importer.GetReferenceLineMetas(); if (!referenceLineMetas.Any()) { throw new CriticalFileValidationException(Resources.AssessmentSectionFromFileCommandHandler_ValidateReferenceLineMetas_No_referenceLines_in_file); } } private void ValidateAssessmentSectionSettings() { var reader = new AssessmentSectionSettingsReader(); settings = reader.ReadSettings(); } #endregion } }