Fixed Issue 219.
3 Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 The contents of this file are subject to the Mozilla Public License Version
6 1.1 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.mozilla.org/MPL/
11 Software distributed under the License is distributed on an "AS IS" basis,
12 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 for the specific language governing rights and limitations under the License.
15 The Original Code is the Open Hardware Monitor code.
17 The Initial Developer of the Original Code is
18 Michael Möller <m.moeller@gmx.ch>.
19 Portions created by the Initial Developer are Copyright (C) 2009-2010
20 the Initial Developer. All Rights Reserved.
24 Alternatively, the contents of this file may be used under the terms of
25 either the GNU General Public License Version 2 or later (the "GPL"), or
26 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 in which case the provisions of the GPL or the LGPL are applicable instead
28 of those above. If you wish to allow use of your version of this file only
29 under the terms of either the GPL or the LGPL, and not to allow others to
30 use your version of this file under the terms of the MPL, indicate your
31 decision by deleting the provisions above and replace them with the notice
32 and other provisions required by the GPL or the LGPL. If you do not delete
33 the provisions above, a recipient may use your version of this file under
34 the terms of any one of the MPL, the GPL or the LGPL.
39 using System.Collections.Generic;
42 namespace OpenHardwareMonitor.Hardware {
43 public class Identifier : IComparable<Identifier> {
44 private readonly string identifier;
46 private const char Separator = '/';
48 private static void CheckIdentifiers(IEnumerable<string> identifiers) {
49 foreach (string s in identifiers)
50 if (s.Contains(" ") || s.Contains(Separator.ToString()))
51 throw new ArgumentException("Invalid identifier");
54 public Identifier(params string[] identifiers) {
55 CheckIdentifiers(identifiers);
57 StringBuilder s = new StringBuilder();
58 for (int i = 0; i < identifiers.Length; i++) {
60 s.Append(identifiers[i]);
62 this.identifier = s.ToString();
65 public Identifier(Identifier identifier, params string[] extensions) {
66 CheckIdentifiers(extensions);
68 StringBuilder s = new StringBuilder();
69 s.Append(identifier.ToString());
70 for (int i = 0; i < extensions.Length; i++) {
72 s.Append(extensions[i]);
74 this.identifier = s.ToString();
77 public override string ToString() {
81 public override bool Equals(Object obj) {
85 Identifier id = obj as Identifier;
89 return (identifier == id.identifier);
92 public override int GetHashCode() {
93 return identifier.GetHashCode();
96 public int CompareTo(Identifier other) {
100 return string.Compare(this.identifier, other.identifier,
101 StringComparison.Ordinal);
104 public static bool operator ==(Identifier id1, Identifier id2) {
105 if (id1.Equals(null))
106 return id2.Equals(null);
108 return id1.Equals(id2);
111 public static bool operator !=(Identifier id1, Identifier id2) {
112 return !(id1 == id2);
115 public static bool operator <(Identifier id1, Identifier id2) {
119 return (id1.CompareTo(id2) < 0);
122 public static bool operator >(Identifier id1, Identifier id2) {
126 return (id1.CompareTo(id2) > 0);