[System.Data] Fix make dist
[mono.git] / mcs / class / System.Data.DataSetExtensions / System.Data / DataRowExtensions.cs
1 //
2 // DataRowExtensions.cs
3 //
4 // Author:
5 //   Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2008 Novell, Inc. http://www.novell.com
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 using System;
32 using System.Runtime.CompilerServices;
33
34 namespace System.Data
35 {
36         public static class DataRowExtensions
37         {
38                 public static T Field<T> (this DataRow row, int columnIndex)
39                 {
40                         return Field<T> (row, columnIndex, DataRowVersion.Current);
41                 }
42
43                 public static T Field<T> (this DataRow row, int columnIndex, DataRowVersion version)
44                 {
45                         object ret = row [columnIndex, version];
46                         if (ret == DBNull.Value) {
47                                 Type type = typeof (T);
48                                 Type genericTypeDef = type.IsGenericType ? type.GetGenericTypeDefinition () : null;
49                                 if (!type.IsValueType || genericTypeDef != null && genericTypeDef == typeof (Nullable <>))
50                                         return default (T);
51                                 
52                                 throw new StrongTypingException ("Cannot get strong typed value since it is DB null. Please use a nullable type.", null);
53                         }
54                         
55                         return (T) ret;
56                 }
57
58                 public static T Field<T> (this DataRow row, string columnName)
59                 {
60                         return Field<T> (row, columnName, DataRowVersion.Current);
61                 }
62
63                 public static T Field<T> (this DataRow row, string columnName, DataRowVersion version)
64                 {
65                         return Field<T> (row, row.Table.Columns [columnName], version);
66                 }
67
68                 public static T Field<T> (this DataRow row, DataColumn column)
69                 {
70                         return Field<T> (row, column, DataRowVersion.Current);
71                 }
72
73                 public static T Field<T> (this DataRow row, DataColumn column, DataRowVersion version)
74                 {
75                         return Field<T> (row, row.Table.Columns.IndexOf (column), version);
76                 }
77
78                 public static void SetField<T> (this DataRow row, int columnIndex, T value)
79                 {
80                         row [columnIndex] = value;
81                 }
82
83                 public static void SetField<T> (this DataRow row, string columnName, T value)
84                 {
85                         row [columnName] = value;
86                 }
87
88                 public static void SetField<T> (this DataRow row, DataColumn column, T value)
89                 {
90                         row [column] = value;
91                 }
92         }
93 }