#region License Information
/* HeuristicLab
* Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab 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.
*
* HeuristicLab 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 HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using HeuristicLab.Common;
using HeuristicLab.Core;
namespace HeuristicLab.Clients.OKB.Administration {
[Item("OKBItem Collection", "Represents a collection of OKB items.")]
public class OKBItemCollection : ItemCollection where T : class, IOKBItem {
protected OKBItemCollection(OKBItemCollection original, Cloner cloner) : base(original, cloner) { }
public OKBItemCollection() : base() { }
public OKBItemCollection(IEnumerable collection) : base(collection) { }
public override IDeepCloneable Clone(Cloner cloner) { return new OKBItemCollection(this, cloner); }
protected override void OnItemsRemoved(IEnumerable items) {
IEnumerable successful, unsuccessful;
Exception ex;
RemoveItems(items, out successful, out unsuccessful, out ex);
list.AddRange(unsuccessful);
base.OnItemsRemoved(successful);
if (ex != null) throw ex;
}
protected override void OnCollectionReset(IEnumerable items, IEnumerable oldItems) {
IEnumerable successful, unsuccessful;
Exception ex;
RemoveItems(oldItems, out successful, out unsuccessful, out ex);
list.AddRange(unsuccessful);
base.OnCollectionReset(items.Concat(unsuccessful), oldItems);
if (ex != null) throw ex;
}
private void RemoveItems(IEnumerable items, out IEnumerable successful, out IEnumerable unsuccessful, out Exception exception) {
List removed = new List();
List notremoved = new List();
exception = null;
foreach (T item in items) {
try {
AdministrationClient.Delete(item);
removed.Add(item);
}
catch (Exception ex) {
exception = ex;
notremoved.Add(item);
}
}
successful = removed;
unsuccessful = notremoved;
}
}
}