File: Contract.cs

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (282 lines) | stat: -rw-r--r-- 9,320 bytes parent folder | download | duplicates (2)
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
//
// System.Diagnostics.Contracts.Contract.cs
//
// Authors:
//    Miguel de Icaza (miguel@gnome.org)
//    Chris Bacon (chrisbacon76@gmail.com)
//    Marek Safar (marek.safar@gmail.com)
//
// Copyright 2009, 2010 Novell (http://www.novell.com)
//
// 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 NET_4_0

using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts.Internal;
using System.Runtime.ConstrainedExecution;

namespace System.Diagnostics.Contracts
{
	public static class Contract
	{
#if NET_4_0
		public
#else
		internal
#endif
		static event EventHandler<ContractFailedEventArgs> ContractFailed;

		// Used in test
		internal static EventHandler<ContractFailedEventArgs> InternalContractFailedEvent {
			get { return ContractFailed; }
		}

		// Used in test
		internal static Type GetContractExceptionType ()
		{
			return typeof (ContractException);
		}

		// Used in test
		internal static Type GetContractShouldAssertExceptionType ()
		{
			return typeof (ContractShouldAssertException);
		}

		static void ReportFailure (ContractFailureKind kind, string userMessage, string conditionText, Exception innerException)
		{
			string msg = ContractHelper.RaiseContractFailedEvent (kind, userMessage, conditionText, innerException);
			// if msg is null, then it has been handled already, so don't do anything here
			if (msg != null)
				ContractHelper.TriggerFailure (kind, msg, userMessage, conditionText, innerException);
		}

		static void AssertMustUseRewriter (ContractFailureKind kind, string message)
		{
			ContractHelper.TriggerFailure (kind, "Assembly must be re-written by the code contract rewritter", null, message, null);
		}

		[ConditionalAttribute("DEBUG")]
		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Assert (bool condition)
		{
			if (condition)
				return;

			ReportFailure (ContractFailureKind.Assert, null, null, null);
		}

		[ConditionalAttribute("DEBUG")]
		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Assert (bool condition, string userMessage)
		{
			if (condition)
				return;

			ReportFailure (ContractFailureKind.Assert, userMessage, null, null);
		}

		[ConditionalAttribute("DEBUG")]
		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Assume(bool condition)
		{
			// At runtime, this behaves like assert
			if (condition)
				return;

			ReportFailure (ContractFailureKind.Assume, null, null, null);
		}

		[ConditionalAttribute("DEBUG")]
		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Assume (bool condition, string userMessage)
		{
			// At runtime, this behaves like assert
			if (condition)
				return;

			ReportFailure (ContractFailureKind.Assume, userMessage, null, null);
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.Success)]
		public static void EndContractBlock ()
		{
			// Marker method, no code required.
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Ensures (bool condition)
		{
			AssertMustUseRewriter (ContractFailureKind.Postcondition, "Contract.Ensures");
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Ensures (bool condition, string userMessage)
		{
			AssertMustUseRewriter (ContractFailureKind.Postcondition, "Contract.Ensures");
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void EnsuresOnThrow<TException> (bool condition) where TException : Exception
		{
			AssertMustUseRewriter (ContractFailureKind.Postcondition, "Contract.EnsuresOnThrow");
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void EnsuresOnThrow<TException> (bool condition, string userMessage) where TException : Exception
		{
			AssertMustUseRewriter (ContractFailureKind.Postcondition, "Contract.EnsuresOnThrow");
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static bool Exists<T> (IEnumerable<T> collection, Predicate<T> predicate)
		{
			if (predicate == null)
				throw new ArgumentNullException ("predicate");
			if (collection == null)
				throw new ArgumentNullException ("collection");
			
			foreach (var t in collection)
				if (predicate (t))
					return true;
			return false;
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static bool Exists (int fromInclusive, int toExclusive, Predicate<int> predicate)
		{
			if (predicate == null)
				throw new ArgumentNullException ("predicate");
			if (toExclusive < fromInclusive)
				throw new ArgumentException ("toExclusitve < fromInclusive");
			
			for (int i = fromInclusive; i < toExclusive; i++)
				if (predicate (i))
					return true;

			return false;
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static bool ForAll<T> (IEnumerable<T> collection, Predicate<T> predicate)
		{
			if (predicate == null)
				throw new ArgumentNullException ("predicate");
			if (collection == null)
				throw new ArgumentNullException ("collection");
			
			foreach (var t in collection)
				if (!predicate (t))
					return false;

			return true;
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static bool ForAll (int fromInclusive, int toExclusive, Predicate<int> predicate)
		{
			if (predicate == null)
				throw new ArgumentNullException ("predicate");
			if (toExclusive < fromInclusive)
				throw new ArgumentException ("toExclusitve < fromInclusive");
			
			for (int i = fromInclusive; i < toExclusive; i++)
				if (!predicate (i))
					return false;

			return true;
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Invariant (bool condition)
		{
			AssertMustUseRewriter (ContractFailureKind.Invariant, "Contract.Invariant");
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Invariant (bool condition, string userMessage)
		{
			AssertMustUseRewriter (ContractFailureKind.Invariant, "Contract.Invariant");
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.Success)]
		public static T OldValue<T> (T value)
		{
			// Marker method, no code required.
			return default (T);
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Requires (bool condition)
		{
			AssertMustUseRewriter (ContractFailureKind.Precondition, "Contract.Requires");
		}

		[ConditionalAttribute("CONTRACTS_FULL")]
		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Requires (bool condition, string userMessage)
		{
			AssertMustUseRewriter (ContractFailureKind.Precondition, "Contract.Requires");
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Requires<TException> (bool condition) where TException : Exception
		{
			AssertMustUseRewriter (ContractFailureKind.Precondition, "Contract.Requires<TException>");
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
		public static void Requires<TException> (bool condition, string userMessage) where TException : Exception
		{
			AssertMustUseRewriter (ContractFailureKind.Precondition, "Contract.Requires<TException>");
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.Success)]
		public static T Result<T> ()
		{
			// Marker method, no code required.
			return default (T);
		}

		[ReliabilityContract (Consistency.WillNotCorruptState, Cer.Success)]
		public static T ValueAtReturn<T> (out T value)
		{
			// Marker method, no code required.
			return value = default (T);
		}
	}
}

#endif