/Merlin/Main/Runtime/Microsoft.Scripting/Utils/ContractUtils.cs

https://github.com/Catweazle/ironruby · C# · 207 lines · 123 code · 34 blank · 50 comment · 27 complexity · e2c0a8d20cd974ba33af2ed4d33bf450 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Microsoft Public License. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Microsoft Public License, please send an email to
  8. * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Microsoft Public License.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using System;
  16. using System.Collections;
  17. using System.Collections.Generic;
  18. using System.Linq.Expressions;
  19. using System.Diagnostics;
  20. namespace Microsoft.Scripting.Utils {
  21. public static class ContractUtils {
  22. public static void Requires(bool precondition) {
  23. if (!precondition) {
  24. throw new ArgumentException(Strings.MethodPreconditionViolated);
  25. }
  26. }
  27. public static void Requires(bool precondition, string paramName) {
  28. Assert.NotEmpty(paramName);
  29. if (!precondition) {
  30. throw new ArgumentException(Strings.InvalidArgumentValue, paramName);
  31. }
  32. }
  33. public static void Requires(bool precondition, string paramName, string message) {
  34. Assert.NotEmpty(paramName);
  35. if (!precondition) {
  36. throw new ArgumentException(message, paramName);
  37. }
  38. }
  39. public static void RequiresNotNull(object value, string paramName) {
  40. Assert.NotEmpty(paramName);
  41. if (value == null) {
  42. throw new ArgumentNullException(paramName);
  43. }
  44. }
  45. public static void RequiresNotEmpty(string str, string paramName) {
  46. RequiresNotNull(str, paramName);
  47. if (str.Length == 0) {
  48. throw new ArgumentException(Strings.NonEmptyStringRequired, paramName);
  49. }
  50. }
  51. public static void RequiresNotEmpty<T>(ICollection<T> collection, string paramName) {
  52. RequiresNotNull(collection, paramName);
  53. if (collection.Count == 0) {
  54. throw new ArgumentException(Strings.NonEmptyCollectionRequired, paramName);
  55. }
  56. }
  57. /// <summary>
  58. /// Requires the specified index to point inside the array.
  59. /// </summary>
  60. /// <exception cref="ArgumentNullException">Array is <c>null</c>.</exception>
  61. /// <exception cref="ArgumentOutOfRangeException">Index is outside the array.</exception>
  62. public static void RequiresArrayIndex<T>(IList<T> array, int index, string indexName) {
  63. Assert.NotEmpty(indexName);
  64. Assert.NotNull(array);
  65. if (index < 0 || index >= array.Count) throw new ArgumentOutOfRangeException(indexName);
  66. }
  67. /// <summary>
  68. /// Requires the specified index to point inside the array or at the end
  69. /// </summary>
  70. /// <exception cref="ArgumentNullException">Array is <c>null</c>.</exception>
  71. /// <exception cref="ArgumentOutOfRangeException">Index is outside the array.</exception>
  72. public static void RequiresArrayInsertIndex<T>(IList<T> array, int index, string indexName) {
  73. Assert.NotEmpty(indexName);
  74. Assert.NotNull(array);
  75. if (index < 0 || index > array.Count) throw new ArgumentOutOfRangeException(indexName);
  76. }
  77. /// <summary>
  78. /// Requires the range [offset, offset + count] to be a subset of [0, array.Count].
  79. /// </summary>
  80. /// <exception cref="ArgumentOutOfRangeException">Offset or count are out of range.</exception>
  81. public static void RequiresArrayRange<T>(IList<T> array, int offset, int count, string offsetName, string countName) {
  82. Assert.NotNull(array);
  83. RequiresArrayRange(array.Count, offset, count, offsetName, countName);
  84. }
  85. /// <summary>
  86. /// Requires the range [offset, offset + count] to be a subset of [0, array.Count].
  87. /// </summary>
  88. /// <exception cref="ArgumentOutOfRangeException">Offset or count are out of range.</exception>
  89. public static void RequiresArrayRange(int arraySize, int offset, int count, string offsetName, string countName) {
  90. Assert.NotEmpty(offsetName);
  91. Assert.NotEmpty(countName);
  92. Debug.Assert(arraySize >= 0);
  93. if (count < 0) throw new ArgumentOutOfRangeException(countName);
  94. if (offset < 0 || arraySize - offset < count) throw new ArgumentOutOfRangeException(offsetName);
  95. }
  96. /// <summary>
  97. /// Requires the range [offset, offset + count] to be a subset of [0, array.Count].
  98. /// </summary>
  99. /// <exception cref="ArgumentNullException">Array is <c>null</c>.</exception>
  100. /// <exception cref="ArgumentOutOfRangeException">Offset or count are out of range.</exception>
  101. public static void RequiresListRange(IList array, int offset, int count, string offsetName, string countName) {
  102. Assert.NotEmpty(offsetName);
  103. Assert.NotEmpty(countName);
  104. Assert.NotNull(array);
  105. if (count < 0) throw new ArgumentOutOfRangeException(countName);
  106. if (offset < 0 || array.Count - offset < count) throw new ArgumentOutOfRangeException(offsetName);
  107. }
  108. /// <summary>
  109. /// Requires the range [offset, offset + count] to be a subset of [0, array.Count].
  110. /// </summary>
  111. /// <exception cref="ArgumentNullException">String is <c>null</c>.</exception>
  112. /// <exception cref="ArgumentOutOfRangeException">Offset or count are out of range.</exception>
  113. public static void RequiresArrayRange(string str, int offset, int count, string offsetName, string countName) {
  114. Assert.NotEmpty(offsetName);
  115. Assert.NotEmpty(countName);
  116. Assert.NotNull(str);
  117. if (count < 0) throw new ArgumentOutOfRangeException(countName);
  118. if (offset < 0 || str.Length - offset < count) throw new ArgumentOutOfRangeException(offsetName);
  119. }
  120. /// <summary>
  121. /// Requires the array and all its items to be non-null.
  122. /// </summary>
  123. public static void RequiresNotNullItems<T>(IList<T> array, string arrayName) {
  124. Assert.NotNull(arrayName);
  125. RequiresNotNull(array, arrayName);
  126. for (int i = 0; i < array.Count; i++) {
  127. if (array[i] == null) {
  128. throw ExceptionUtils.MakeArgumentItemNullException(i, arrayName);
  129. }
  130. }
  131. }
  132. /// <summary>
  133. /// Requires the enumerable collection and all its items to be non-null.
  134. /// </summary>
  135. public static void RequiresNotNullItems<T>(IEnumerable<T> collection, string collectionName) {
  136. Assert.NotNull(collectionName);
  137. RequiresNotNull(collection, collectionName);
  138. int i = 0;
  139. foreach (var item in collection) {
  140. if (item == null) {
  141. throw ExceptionUtils.MakeArgumentItemNullException(i, collectionName);
  142. }
  143. i++;
  144. }
  145. }
  146. [Conditional("FALSE")]
  147. public static void Invariant(bool condition) {
  148. Debug.Assert(condition);
  149. }
  150. [Conditional("FALSE")]
  151. public static void Invariant(bool condition, string message) {
  152. Debug.Assert(condition, message);
  153. }
  154. [Conditional("FALSE")]
  155. public static void Ensures(bool condition) {
  156. // nop
  157. }
  158. [Conditional("FALSE")]
  159. public static void Ensures(bool condition, string message) {
  160. // nop
  161. }
  162. public static T Result<T>() {
  163. return default(T);
  164. }
  165. public static T Parameter<T>(out T value) {
  166. value = default(T);
  167. return value;
  168. }
  169. public static T Old<T>(T value) {
  170. return value;
  171. }
  172. }
  173. }