#region License Information
/* HeuristicLab
* Copyright (C) 2002-2013 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.Hive {
[Item("HiveItem Collection", "Represents a collection of Hive items.")]
public class HiveItemCollection : ItemCollection where T : class, IHiveItem {
protected HiveItemCollection(HiveItemCollection original, Cloner cloner) : base(original, cloner) { }
public HiveItemCollection() : base() { }
public HiveItemCollection(IEnumerable collection) : base(collection) { }
public override IDeepCloneable Clone(Cloner cloner) { return new HiveItemCollection(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;
}
public void ClearWithoutHiveDeletion() {
if (list.Count > 0) {
T[] items = list.ToArray();
list.Clear();
OnPropertyChanged("Count");
//don't call OnCollectionReset directly as it would delete the job
base.OnCollectionReset(list, items);
}
}
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 {
HiveClient.Delete(item);
removed.Add(item);
}
catch (Exception ex) {
exception = ex;
notremoved.Add(item);
}
}
successful = removed;
unsuccessful = notremoved;
}
}
}