Merge pull request #3274 from Unity-Technologies/fix-path-getfullpath-windows
[mono.git] / mcs / class / System.Runtime.InteropServices.RuntimeInformation / System.Runtime.InteropServices / OSPlatform.cs
1 //
2 // OSPlatform.cs
3 //
4 // Author:
5 //   Alexander Köplinger (alexander.koeplinger@xamarin.com)
6 //
7 // (C) 2016 Xamarin, Inc.
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 namespace System.Runtime.InteropServices
32 {
33         public struct OSPlatform : IEquatable<OSPlatform>
34         {
35                 private readonly string _osPlatform;
36
37                 public static OSPlatform Linux { get; } = new OSPlatform ("LINUX");
38
39                 public static OSPlatform OSX { get; } = new OSPlatform ("OSX");
40
41                 public static OSPlatform Windows { get; } = new OSPlatform ("WINDOWS");
42
43                 private OSPlatform (string osPlatform)
44                 {
45                         if (osPlatform == null) throw new ArgumentNullException (nameof (osPlatform));
46                         if (osPlatform.Length == 0) throw new ArgumentException ("Value cannot be empty.", nameof (osPlatform));
47                         
48                         _osPlatform = osPlatform;
49                 }
50
51                 public static OSPlatform Create (string osPlatform)
52                 {
53                         return new OSPlatform (osPlatform);
54                 }
55
56                 public bool Equals (OSPlatform other)
57                 {
58                         return Equals (other._osPlatform);
59                 }
60
61                 internal bool Equals (string other)
62                 {
63                         return string.Equals (_osPlatform, other, StringComparison.Ordinal);
64                 }
65
66                 public override bool Equals (object obj)
67                 {
68                         return obj is OSPlatform && Equals ((OSPlatform)obj);
69                 }
70
71                 public override int GetHashCode ()
72                 {
73                         return _osPlatform == null ? 0 : _osPlatform.GetHashCode ();
74                 }
75
76                 public override string ToString ()
77                 {
78                         return _osPlatform ?? string.Empty;
79                 }
80
81                 public static bool operator ==(OSPlatform left, OSPlatform right)
82                 {
83                         return left.Equals (right);
84                 }
85
86                 public static bool operator !=(OSPlatform left, OSPlatform right)
87                 {
88                         return !(left == right);
89                 }
90         }
91 }