DocSpace-buildtools/common/ASC.Data.Backup.Core/Extensions/EnumerableExtensions.cs

103 lines
3.8 KiB
C#
Raw Normal View History

2020-05-20 15:14:44 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2020
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
namespace ASC.Data.Backup.Extensions;
public class TreeNode<TEntry>
2020-05-20 15:14:44 +00:00
{
public TEntry Entry { get; set; }
public TreeNode<TEntry> Parent { get; set; }
public List<TreeNode<TEntry>> Children { get; private set; }
public TreeNode()
{
Children = new List<TreeNode<TEntry>>();
}
public TreeNode(TEntry entry)
: this()
2020-05-20 15:14:44 +00:00
{
Entry = entry;
Parent = null;
}
}
2020-05-20 15:14:44 +00:00
public static class EnumerableExtensions
{
public static IEnumerable<TreeNode<TEntry>> ToTree<TEntry, TKey>(this IEnumerable<TEntry> elements,
Func<TEntry, TKey> keySelector,
Func<TEntry, TKey> parentKeySelector)
2022-03-09 17:15:51 +00:00
{
ArgumentNullException.ThrowIfNull(elements);
ArgumentNullException.ThrowIfNull(keySelector);
ArgumentNullException.ThrowIfNull(parentKeySelector);
2020-05-20 15:14:44 +00:00
var dic = elements.ToDictionary(keySelector, x => new TreeNode<TEntry>(x));
2022-02-09 18:33:50 +00:00
foreach (var keyValue in dic)
{
var parentKey = parentKeySelector(keyValue.Value.Entry);
if (parentKey != null && dic.TryGetValue(parentKeySelector(keyValue.Value.Entry), out var parent))
2020-05-20 15:14:44 +00:00
{
parent.Children.Add(keyValue.Value);
keyValue.Value.Parent = parent;
2020-05-20 15:14:44 +00:00
}
}
return dic.Values.Where(x => x.Parent == null);
}
2020-05-20 15:14:44 +00:00
public static IEnumerable<IEnumerable<TEntry>> MakeParts<TEntry>(this IEnumerable<TEntry> collection, int partLength)
2022-03-09 17:15:51 +00:00
{
ArgumentNullException.ThrowIfNull(collection);
if (partLength <= 0)
throw new ArgumentOutOfRangeException(nameof(partLength), partLength, "Length must be positive integer");
return MakePartsIterator(collection, partLength);
}
private static IEnumerable<IEnumerable<TEntry>> MakePartsIterator<TEntry>(this IEnumerable<TEntry> collection, int partLength)
{
var part = new List<TEntry>(partLength);
2020-05-20 15:14:44 +00:00
foreach (var entry in collection)
{
part.Add(entry);
2020-05-20 15:14:44 +00:00
if (part.Count == partLength)
2020-05-20 15:14:44 +00:00
{
yield return part.AsEnumerable();
part = new List<TEntry>(partLength);
2020-05-20 15:14:44 +00:00
}
}
if (part.Count > 0)
{
yield return part.AsEnumerable();
}
2020-05-20 15:14:44 +00:00
}
}