// Copyright (c) 2012 DotNetAnywhere
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#if !LOCALTEST
namespace System {
public static class Nullable {
public static int Compare<T>(Nullable<T> left, Nullable<T> right) where T : struct {
if (!left.HasValue && !right.HasValue) {
return 0;
}
if (!left.HasValue) {
return -1;
}
if (!right.HasValue) {
return 1;
}
IComparable iComp = left.Value as IComparable;
if (iComp == null) {
throw new ArgumentException("At least one object must implement IComparable");
}
return iComp.CompareTo(right.Value);
}
public static bool Equals<T>(Nullable<T> value1, Nullable<T> value2) where T : struct {
return value1.Equals(value2);
}
public static Type GetUnderlyingType(Type nullableType) {
if (nullableType == null) {
throw new ArgumentNullException("nullableType");
}
if (nullableType.IsGenericType && nullableType.GetGenericTypeDefinition() == typeof(Nullable<>)) {
return nullableType.GetGenericArguments()[0];
} else {
return null;
}
}
}
public struct Nullable<T> where T : struct {
// Note the order of these must not be changed, as the interpreter assumes this order
private bool hasValue;
private T value;
public Nullable(T value) {
this.hasValue = true;
this.value = value;
}
public bool HasValue {
get {
return this.hasValue;
}
}
public T Value {
get {
if (!this.hasValue) {
throw new InvalidOperationException("Nullable object must have a value");
}
return this.value;
}
}
public T GetValueOrDefault() {
return this.GetValueOrDefault(default(T));
}
public T GetValueOrDefault(T def) {
return this.hasValue ? this.value : def;
}
public override bool Equals(object obj) {
if (obj == null) {
return !this.hasValue;
}
Nullable<T> other = obj as Nullable<T>;
if (other != null) {
if (this.hasValue && other.hasValue) {
// The values are value-types, so cannot be null
return this.value.Equals(other.value);
} else {
return this.hasValue == other.hasValue;
}
}
return false;
}
public override int GetHashCode() {
if (this.hasValue) {
return this.value.GetHashCode();
} else {
return 0;
}
}
public override string ToString() {
if (this.hasValue) {
return this.value.ToString();
} else {
return string.Empty;
}
}
}
}
#endif