forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoftwareIdentityNameVersionComparer.cs
More file actions
58 lines (51 loc) · 2.11 KB
/
Copy pathSoftwareIdentityNameVersionComparer.cs
File metadata and controls
58 lines (51 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
using System;
using System.Collections.Generic;
using Microsoft.PackageManagement.Internal.Utility.Extensions;
using Microsoft.PackageManagement.Packaging;
namespace Microsoft.PackageManagement.Internal.Packaging
{
/// <summary>
/// 2 Swids will be equal if their names and versions are the same
/// </summary>
public class SoftwareIdentityNameVersionComparer : IEqualityComparer<SoftwareIdentity>
{
private static SoftwareIdentityVersionComparer VersionComparer = new SoftwareIdentityVersionComparer();
public bool Equals(SoftwareIdentity swidOne, SoftwareIdentity swidTwo)
{
// True if both are null
if (swidOne == null && swidTwo == null)
{
return true;
}
// False if 1 is null and the other is not
if (swidOne == null || swidTwo == null)
{
return false;
}
// true if name is same and version is same
return String.Equals(swidOne.Name, swidTwo.Name, StringComparison.OrdinalIgnoreCase) && (VersionComparer.Compare(swidOne, swidTwo) == 0);
}
public int GetHashCode(SoftwareIdentity obj)
{
if (obj == null)
{
return 0;
}
return (String.IsNullOrWhiteSpace(obj.Name) ? String.Empty : obj.Name).GetHashCode() * 31
+ (String.IsNullOrWhiteSpace(obj.Version) ? String.Empty : obj.Version).GetHashCode();
}
}
}