diff options
Diffstat (limited to 'ThirdParty/TribalMedia/TribalMedia.Framework.Data/Schema.cs')
-rw-r--r-- | ThirdParty/TribalMedia/TribalMedia.Framework.Data/Schema.cs | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/ThirdParty/TribalMedia/TribalMedia.Framework.Data/Schema.cs b/ThirdParty/TribalMedia/TribalMedia.Framework.Data/Schema.cs new file mode 100644 index 0000000..b7b8939 --- /dev/null +++ b/ThirdParty/TribalMedia/TribalMedia.Framework.Data/Schema.cs | |||
@@ -0,0 +1,89 @@ | |||
1 | /* | ||
2 | * Copyright (c) Tribal Media AB, http://tribalmedia.se/ | ||
3 | * | ||
4 | * Redistribution and use in source and binary forms, with or without | ||
5 | * modification, are permitted provided that the following conditions are met: | ||
6 | * * Redistributions of source code must retain the above copyright | ||
7 | * notice, this list of conditions and the following disclaimer. | ||
8 | * * Redistributions in binary form must reproduce the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer in the | ||
10 | * documentation and/or other materials provided with the distribution. | ||
11 | * * The name of Tribal Media AB may not be used to endorse or promote products | ||
12 | * derived from this software without specific prior written permission. | ||
13 | * | ||
14 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
15 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
16 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
17 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
18 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
19 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
20 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
21 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
23 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
24 | * | ||
25 | */ | ||
26 | |||
27 | using System.Collections.Generic; | ||
28 | using TribalMedia.Framework.Data; | ||
29 | |||
30 | namespace TribalMedia.Framework.Data | ||
31 | { | ||
32 | public class Schema | ||
33 | { | ||
34 | protected TableMapper m_tableMapper; | ||
35 | protected Dictionary<string, FieldMapper> m_mappings; | ||
36 | |||
37 | public Dictionary<string, FieldMapper> Fields | ||
38 | { | ||
39 | get { return m_mappings; } | ||
40 | } | ||
41 | |||
42 | public Schema(TableMapper tableMapper) | ||
43 | { | ||
44 | m_mappings = new Dictionary<string, FieldMapper>(); | ||
45 | m_tableMapper = tableMapper; | ||
46 | } | ||
47 | } | ||
48 | |||
49 | public class ObjectSchema<TObj> : Schema | ||
50 | { | ||
51 | public ObjectSchema(TableMapper tableMapper) : base(tableMapper) | ||
52 | { | ||
53 | } | ||
54 | |||
55 | public ObjectField<TObj, TField> AddMapping<TField>(string fieldName, | ||
56 | ObjectGetAccessor<TObj, TField> rowMapperGetAccessor, | ||
57 | ObjectSetAccessor<TObj, TField> rowMapperSetAccessor) | ||
58 | { | ||
59 | ObjectField<TObj, TField> rowMapperField = | ||
60 | new ObjectField<TObj, TField>(m_tableMapper, fieldName, rowMapperGetAccessor, rowMapperSetAccessor); | ||
61 | |||
62 | m_mappings.Add(fieldName, rowMapperField); | ||
63 | |||
64 | return rowMapperField; | ||
65 | } | ||
66 | } | ||
67 | |||
68 | public class RowMapperSchema<TRowMapper> : Schema | ||
69 | where TRowMapper : RowMapper | ||
70 | { | ||
71 | public RowMapperSchema(TableMapper tableMapper) : base(tableMapper) | ||
72 | { | ||
73 | } | ||
74 | |||
75 | public RowMapperField<TRowMapper, TField> AddMapping<TField>(string fieldName, | ||
76 | RowMapperGetAccessor<TRowMapper, TField> | ||
77 | rowMapperGetAccessor, | ||
78 | RowMapperSetAccessor<TRowMapper, TField> | ||
79 | rowMapperSetAccessor) | ||
80 | { | ||
81 | RowMapperField<TRowMapper, TField> rowMapperField = | ||
82 | new RowMapperField<TRowMapper, TField>(m_tableMapper, fieldName, rowMapperGetAccessor, rowMapperSetAccessor); | ||
83 | |||
84 | m_mappings.Add(fieldName, rowMapperField); | ||
85 | |||
86 | return rowMapperField; | ||
87 | } | ||
88 | } | ||
89 | } \ No newline at end of file | ||