aboutsummaryrefslogtreecommitdiff
path: root/kamon-annotation/src/main/java/kamon/annotation/el/resolver/PrivateFieldELResolver.java
blob: df6469429a3981192641351f0d63a28f86b784f6 (plain) (blame)
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
/*
 * =========================================================================================
 * Copyright © 2013-2015 the kamon project <http://kamon.io/>
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
 * except in compliance with the License. You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the
 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 * =========================================================================================
 */

package kamon.annotation.el.resolver;

import java.beans.FeatureDescriptor;
import java.lang.reflect.Field;
import java.util.Iterator;
import javax.el.ELContext;
import javax.el.ELException;
import javax.el.ELResolver;

/**
 * A custom {@link ELResolver} for mapping properties to public/private fields of the base object.
 */
public class PrivateFieldELResolver extends ELResolver {

    @Override
    public Object getValue(ELContext context, Object base, Object property) {
        if (base == null) {
            return null;
        }
        try {
            Field field = getField(base, (String) property);
            context.setPropertyResolved(true);
            field.setAccessible(true);
            return field.get(base);
        } catch (NoSuchFieldException exc) {
            context.setPropertyResolved(false);
            return null;
        } catch (Exception exc) {
            throw new ELException(exc);
        }
    }

    private Field getField(Object base, String property) throws NoSuchFieldException {
        try {
            return base.getClass().getDeclaredField(property);
        } catch (SecurityException exc) {
            throw new ELException(exc);
        }
    }

    @Override
    public Class<?> getType(ELContext context, Object base, Object property) {
        if (base == null) {
            return null;
        }
        try {
            Field field = getField(base, (String) property);
            if (field != null) {
                context.setPropertyResolved(true);
                return field.getType();
            } else {
                return null;
            }
        } catch (NoSuchFieldException exc) {
            context.setPropertyResolved(false);
            return null;
        }
    }

    @Override
    public void setValue(ELContext context, Object base, Object property, Object value) {
        if (base == null) {
            return;
        }
        try {
            context.setPropertyResolved(true);
            getField(base, (String) property).set(base, value);
        } catch (NoSuchFieldException exc) {
            context.setPropertyResolved(false);
        } catch (Exception exc) {
            throw new ELException(exc);
        }
    }

    @Override
    public boolean isReadOnly(ELContext context, Object base, Object property) {
        if (base == null) {
            return true;
        }
        try {
            Field field = getField(base, (String) property);
            if (field != null) {
                context.setPropertyResolved(true);
                return !field.isAccessible();
            }
        } catch (NoSuchFieldException exc) {
            context.setPropertyResolved(false);
        }
        return false;
    }

    @Override
    public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext context, Object base) {
        return null;
    }

    @Override
    public Class<?> getCommonPropertyType(ELContext context, Object base) {
        return String.class;
    }
}