Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StringTag.cs « Objects « UVtools.Core - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d19d6869a4bb477048559f5535dcb2660a8e96ac (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 *                     GNU AFFERO GENERAL PUBLIC LICENSE
 *                       Version 3, 19 November 2007
 *  Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 *  Everyone is permitted to copy and distribute verbatim copies
 *  of this license document, but changing it is not allowed.
 */

using System;
using System.Collections.Generic;

namespace UVtools.Core.Objects
{
    public class StringTag : BindableBase, IEquatable<StringTag>, IComparable<StringTag>
    {
        private string _content;
        private object _tag;

        public string Content
        {
            get => _content;
            set => RaiseAndSetIfChanged(ref _content, value);
        }

        public object Tag
        {
            get => _tag;
            set => RaiseAndSetIfChanged(ref _tag, value);
        }

        public string TagString
        {
            get => Tag.ToString();
            set => Tag = value;
        } 

        public StringTag(object content, object tag = null)
        {
            Content = content.ToString();
            Tag = tag;
        }
        public StringTag(string content, object tag = null)
        {
            Content = content;
            Tag = tag;
        }

        public bool Equals(StringTag other)
        {
            return _content == other._content && Equals(_tag, other._tag);
        }

        public override bool Equals(object obj)
        {
            if (ReferenceEquals(null, obj)) return false;
            if (ReferenceEquals(this, obj)) return true;
            if (obj.GetType() != GetType()) return false;
            return Equals((StringTag) obj);
        }

        public override int GetHashCode()
        {
            unchecked
            {
                return ((_content != null ? _content.GetHashCode() : 0) * 397) ^ (_tag != null ? _tag.GetHashCode() : 0);
            }
        }

        private sealed class ContentEqualityComparer : IEqualityComparer<StringTag>
        {
            public bool Equals(StringTag x, StringTag y)
            {
                if (ReferenceEquals(x, y)) return true;
                if (ReferenceEquals(x, null)) return false;
                if (ReferenceEquals(y, null)) return false;
                if (x.GetType() != y.GetType()) return false;
                return x.Content == y.Content;
            }

            public int GetHashCode(StringTag obj)
            {
                return (obj.Content != null ? obj.Content.GetHashCode() : 0);
            }
        }

        public static IEqualityComparer<StringTag> ContentComparer { get; } = new ContentEqualityComparer();

        public int CompareTo(StringTag other)
        {
            if (ReferenceEquals(this, other)) return 0;
            if (ReferenceEquals(null, other)) return 1;
            return string.Compare(Content, other.Content, StringComparison.Ordinal);
        }

        public override string ToString()
        {
            return Content;
        }
    }
}