blob: 921876b9e5183bc62c126e4135829ba43d2897f5 (
plain)
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
|
#nullable disable
using System;
using System.Reflection;
namespace StardewModdingAPI.Framework.Reflection
{
/// <summary>A field obtained through reflection.</summary>
/// <typeparam name="TValue">The field value type.</typeparam>
internal class ReflectedField<TValue> : IReflectedField<TValue>
{
/*********
** Fields
*********/
/// <summary>The type that has the field.</summary>
private readonly Type ParentType;
/// <summary>The object that has the instance field (if applicable).</summary>
private readonly object Parent;
/// <summary>The display name shown in error messages.</summary>
private string DisplayName => $"{this.ParentType.FullName}::{this.FieldInfo.Name}";
/*********
** Accessors
*********/
/// <inheritdoc />
public FieldInfo FieldInfo { get; }
/*********
** Public methods
*********/
/// <summary>Construct an instance.</summary>
/// <param name="parentType">The type that has the field.</param>
/// <param name="obj">The object that has the instance field (if applicable).</param>
/// <param name="field">The reflection metadata.</param>
/// <param name="isStatic">Whether the field is static.</param>
/// <exception cref="ArgumentNullException">The <paramref name="parentType"/> or <paramref name="field"/> is null.</exception>
/// <exception cref="ArgumentException">The <paramref name="obj"/> is null for a non-static field, or not null for a static field.</exception>
public ReflectedField(Type parentType, object obj, FieldInfo field, bool isStatic)
{
// validate
if (parentType == null)
throw new ArgumentNullException(nameof(parentType));
if (field == null)
throw new ArgumentNullException(nameof(field));
if (isStatic && obj != null)
throw new ArgumentException("A static field cannot have an object instance.");
if (!isStatic && obj == null)
throw new ArgumentException("A non-static field must have an object instance.");
// save
this.ParentType = parentType;
this.Parent = obj;
this.FieldInfo = field;
}
/// <inheritdoc />
public TValue GetValue()
{
try
{
return (TValue)this.FieldInfo.GetValue(this.Parent);
}
catch (InvalidCastException)
{
throw new InvalidCastException($"Can't convert the {this.DisplayName} field from {this.FieldInfo.FieldType.FullName} to {typeof(TValue).FullName}.");
}
catch (Exception ex)
{
throw new Exception($"Couldn't get the value of the {this.DisplayName} field", ex);
}
}
/// <inheritdoc />
public void SetValue(TValue value)
{
try
{
this.FieldInfo.SetValue(this.Parent, value);
}
catch (InvalidCastException)
{
throw new InvalidCastException($"Can't assign the {this.DisplayName} field a {typeof(TValue).FullName} value, must be compatible with {this.FieldInfo.FieldType.FullName}.");
}
catch (Exception ex)
{
throw new Exception($"Couldn't set the value of the {this.DisplayName} field", ex);
}
}
}
}
|