This repository was archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathScalaBeanInfo.java
212 lines (180 loc) · 6.44 KB
/
ScalaBeanInfo.java
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
/*
* Copyright 2011-2013 the original author or authors.
*
* 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
*
* https://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 org.springframework.scala.beans;
import java.awt.Image;
import java.beans.BeanDescriptor;
import java.beans.BeanInfo;
import java.beans.EventSetDescriptor;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.MethodDescriptor;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;
import java.util.Comparator;
import java.util.Map;
import java.util.TreeMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.util.Assert;
import org.springframework.util.ReflectionUtils;
/**
* Implementation of {@link BeanInfo} for Scala classes. Decorates a standard {@link
* BeanInfo} object by including Scala setter methods (ending in {@code _$eq} in the
* collection of {@linkplain #getPropertyDescriptors() property descriptors}.
*
* @author Arjen Poutsma
*/
class ScalaBeanInfo implements BeanInfo {
private static final Log logger = LogFactory.getLog(ScalaBeanInfo.class);
private static final String SCALA_SETTER_SUFFIX = "_$eq";
private final BeanInfo delegate;
private final PropertyDescriptor[] propertyDescriptors;
public ScalaBeanInfo(Class<?> beanClass) throws IntrospectionException {
this(Introspector.getBeanInfo(beanClass));
}
public ScalaBeanInfo(BeanInfo delegate) throws IntrospectionException {
Assert.notNull(delegate, "'delegate' must not be null");
this.delegate = delegate;
this.propertyDescriptors = initPropertyDescriptors(delegate);
}
private static PropertyDescriptor[] initPropertyDescriptors(BeanInfo beanInfo) {
Map<String, PropertyDescriptor> propertyDescriptors =
new TreeMap<String, PropertyDescriptor>(new PropertyNameComparator());
for (PropertyDescriptor pd : beanInfo.getPropertyDescriptors()) {
propertyDescriptors.put(pd.getName(), pd);
}
for (MethodDescriptor md : beanInfo.getMethodDescriptors()) {
Method method = md.getMethod();
if (ReflectionUtils.isObjectMethod(method)) {
continue;
}
if (isScalaSetter(method)) {
addScalaSetter(propertyDescriptors, method);
}
else if (isScalaGetter(method)) {
addScalaGetter(propertyDescriptors, method);
}
}
return propertyDescriptors.values()
.toArray(new PropertyDescriptor[propertyDescriptors.size()]);
}
private static boolean isScalaGetter(Method method) {
return method.getParameterTypes().length == 0 &&
!method.getReturnType().equals(Void.TYPE) &&
!(method.getName().startsWith("get") ||
method.getName().startsWith("is"));
}
public static boolean isScalaSetter(Method method) {
return method.getParameterTypes().length == 1 &&
method.getReturnType().equals(Void.TYPE) &&
method.getName().endsWith(SCALA_SETTER_SUFFIX);
}
private static void addScalaSetter(Map<String, PropertyDescriptor> propertyDescriptors,
Method writeMethod) {
String propertyName = writeMethod.getName().substring(0,
writeMethod.getName().length() - SCALA_SETTER_SUFFIX.length());
PropertyDescriptor pd = propertyDescriptors.get(propertyName);
if (pd != null && pd.getWriteMethod() == null) {
try {
pd.setWriteMethod(writeMethod);
}
catch (IntrospectionException ex) {
logger.debug("Could not add write method [" + writeMethod + "] for " +
"property [" + propertyName + "]: " + ex.getMessage());
}
}
else if (pd == null) {
try {
pd = new PropertyDescriptor(propertyName, null, writeMethod);
propertyDescriptors.put(propertyName, pd);
}
catch (IntrospectionException ex) {
logger.debug("Could not create new PropertyDescriptor for " +
"writeMethod [" + writeMethod + "] property [" + propertyName +
"]: " + ex.getMessage());
}
}
}
private static void addScalaGetter(Map<String, PropertyDescriptor> propertyDescriptors,
Method readMethod) {
String propertyName = readMethod.getName();
PropertyDescriptor pd = propertyDescriptors.get(propertyName);
if (pd != null && pd.getReadMethod() == null) {
try {
pd.setReadMethod(readMethod);
}
catch (IntrospectionException ex) {
logger.debug("Could not add read method [" + readMethod + "] for " +
"property [" + propertyName + "]: " + ex.getMessage());
}
}
else if (pd == null) {
try {
pd = new PropertyDescriptor(propertyName, readMethod, null);
propertyDescriptors.put(propertyName, pd);
}
catch (IntrospectionException ex) {
logger.debug("Could not create new PropertyDescriptor for " +
"readMethod [" + readMethod + "] property [" + propertyName +
"]: " + ex.getMessage());
}
}
}
public PropertyDescriptor[] getPropertyDescriptors() {
return propertyDescriptors;
}
public BeanInfo[] getAdditionalBeanInfo() {
return delegate.getAdditionalBeanInfo();
}
public BeanDescriptor getBeanDescriptor() {
return delegate.getBeanDescriptor();
}
public int getDefaultEventIndex() {
return delegate.getDefaultEventIndex();
}
public int getDefaultPropertyIndex() {
return delegate.getDefaultPropertyIndex();
}
public EventSetDescriptor[] getEventSetDescriptors() {
return delegate.getEventSetDescriptors();
}
public Image getIcon(int iconKind) {
return delegate.getIcon(iconKind);
}
public MethodDescriptor[] getMethodDescriptors() {
return delegate.getMethodDescriptors();
}
/**
* Sorts property names alphanumerically to emulate the behavior of {@link
* java.beans.BeanInfo#getPropertyDescriptors()}.
*/
private static class PropertyNameComparator implements Comparator<String> {
public int compare(String left, String right) {
byte[] leftBytes = left.getBytes();
byte[] rightBytes = right.getBytes();
for (int i = 0; i < left.length(); i++) {
if (right.length() == i) {
return 1;
}
int result = leftBytes[i] - rightBytes[i];
if (result != 0) {
return result;
}
}
return left.length() - right.length();
}
}
}