blob: ad7a962342f6ec62c222516fe16289d45248fea8 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* 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 com.intellij.util.xmlb;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import java.beans.PropertyDescriptor;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;
class PropertyAccessor implements Accessor {
private final String myName;
private final Class<?> myType;
private final Method myReadMethod;
private final Method myWriteMethod;
private final Type myGenericType;
public PropertyAccessor(PropertyDescriptor descriptor) {
this(descriptor.getName(), descriptor.getPropertyType(), descriptor.getReadMethod(), descriptor.getWriteMethod());
}
public PropertyAccessor(String name, Class<?> type, @NotNull Method readMethod, @NotNull Method writeMethod) {
myName = name;
myType = type;
myReadMethod = readMethod;
myWriteMethod = writeMethod;
myGenericType = myReadMethod.getGenericReturnType();
try {
myReadMethod.setAccessible(true);
myWriteMethod.setAccessible(true);
}
catch (SecurityException ignored) {
}
}
@Override
public Object read(@NotNull Object o) {
try {
return myReadMethod.invoke(o);
}
catch (IllegalAccessException e) {
throw new XmlSerializationException(e);
}
catch (InvocationTargetException e) {
throw new XmlSerializationException(e);
}
}
@Override
public void write(Object o, Object value) {
try {
myWriteMethod.invoke(o, XmlSerializerImpl.convert(value, myType));
}
catch (IllegalAccessException e) {
throw new XmlSerializationException(e);
}
catch (InvocationTargetException e) {
throw new XmlSerializationException(e);
}
}
private Annotation[] myAnnotationCache;
@Override
@NotNull
public Annotation[] getAnnotations() {
Annotation[] annotations = myAnnotationCache;
if (annotations == null) {
annotations = myAnnotationCache = calcAnnotations();
}
return annotations;
}
private Annotation[] calcAnnotations() {
List<Annotation> result = new ArrayList<Annotation>();
ContainerUtil.addAll(result, myReadMethod.getAnnotations());
ContainerUtil.addAll(result, myWriteMethod.getAnnotations());
return result.toArray(new Annotation[result.size()]);
}
@Override
public String getName() {
return myName;
}
@Override
public Class<?> getValueClass() {
return myType;
}
@Override
public Type getGenericType() {
return myGenericType;
}
@NonNls
public String toString() {
return "PropertyAccessor[" + myReadMethod.getDeclaringClass().getName() + "." + getName() +"]";
}
}