Skip to content
This repository has been archived by the owner on May 3, 2020. It is now read-only.

Commit

Permalink
Handle repeated annotations more cleanly
Browse files Browse the repository at this point in the history
Allow open brace where the line starts with an annotation
Fixes JodaOrg#211
  • Loading branch information
jodastephen committed Aug 26, 2019
1 parent 1eb43b3 commit 4f2840f
Show file tree
Hide file tree
Showing 5 changed files with 357 additions and 2 deletions.
7 changes: 7 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
Fix mutable beans where the subclass has no properties.
Fixes #210.
</action>
<action dev="jodastephen" type="fix">
Handle repeated annotations more cleanly.
Fixes #211.
</action>
<action dev="jodastephen" type="fix">
Call JodaBeansUtils.toString() on all properties, not just the last.
</action>
</release>
<release version="2.7.1" date="2019-06-04" description="Version 2.7.1">
<action dev="jodastephen" type="fix">
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/joda/beans/gen/BeanParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private String classHeaderAfterType(int defLine, String fullType) {
line = line.substring(line.indexOf(fullType) + fullType.length());
}
buf.append(line).append(' ');
if (line.trim().endsWith("{")) {
if (line.trim().endsWith("{") && !line.trim().startsWith("@")) {
break;
}
}
Expand Down
32 changes: 32 additions & 0 deletions src/test/java/org/joda/beans/sample/ComplexAnnotation.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Copyright 2001-present Stephen Colebourne
*
* 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 org.joda.beans.sample;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* Used to test annotation parsing.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ComplexAnnotation {

SimpleAnnotation[] value();

}
316 changes: 316 additions & 0 deletions src/test/java/org/joda/beans/sample/ImmComplexAnnotation.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,316 @@
/*
* Copyright 2001-present Stephen Colebourne
*
* 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 org.joda.beans.sample;

import java.io.Serializable;
import java.util.Map;
import java.util.NoSuchElementException;

import org.joda.beans.Bean;
import org.joda.beans.ImmutableBean;
import org.joda.beans.JodaBeanUtils;
import org.joda.beans.MetaBean;
import org.joda.beans.MetaProperty;
import org.joda.beans.gen.BeanDefinition;
import org.joda.beans.gen.PropertyDefinition;
import org.joda.beans.impl.direct.DirectFieldsBeanBuilder;
import org.joda.beans.impl.direct.DirectMetaBean;
import org.joda.beans.impl.direct.DirectMetaProperty;
import org.joda.beans.impl.direct.DirectMetaPropertyMap;

/**
* Mock bean for complex annotation testing.
*/
@BeanDefinition(cacheHashCode = true, factoryName = "create")
@ClassAnnotation(ImmComplexAnnotation.class)
@ComplexAnnotation({
@SimpleAnnotation(first = "1", second = "2", third = "3"),
@SimpleAnnotation(first = "1", second = "2", third = "3")
})
public final class ImmComplexAnnotation
implements ImmutableBean,
Cloneable,
Serializable {

@PropertyDefinition
private final double value;

//------------------------- AUTOGENERATED START -------------------------
/**
* The meta-bean for {@code ImmComplexAnnotation}.
* @return the meta-bean, not null
*/
public static ImmComplexAnnotation.Meta meta() {
return ImmComplexAnnotation.Meta.INSTANCE;
}

static {
MetaBean.register(ImmComplexAnnotation.Meta.INSTANCE);
}

/**
* The serialization version id.
*/
private static final long serialVersionUID = 1L;

/**
* The cached hash code, using the racy single-check idiom.
*/
private transient int cacheHashCode;

/**
* Obtains an instance.
* @param value the value of the property
* @return the instance
*/
public static ImmComplexAnnotation create(
double value) {
return new ImmComplexAnnotation(
value);
}

/**
* Returns a builder used to create an instance of the bean.
* @return the builder, not null
*/
public static ImmComplexAnnotation.Builder builder() {
return new ImmComplexAnnotation.Builder();
}

private ImmComplexAnnotation(
double value) {
this.value = value;
}

@Override
public ImmComplexAnnotation.Meta metaBean() {
return ImmComplexAnnotation.Meta.INSTANCE;
}

//-----------------------------------------------------------------------
/**
* Gets the value.
* @return the value of the property
*/
public double getValue() {
return value;
}

//-----------------------------------------------------------------------
/**
* Returns a builder that allows this bean to be mutated.
* @return the mutable builder, not null
*/
public Builder toBuilder() {
return new Builder(this);
}

@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj != null && obj.getClass() == this.getClass()) {
ImmComplexAnnotation other = (ImmComplexAnnotation) obj;
return JodaBeanUtils.equal(value, other.value);
}
return false;
}

@Override
public int hashCode() {
int hash = cacheHashCode;
if (hash == 0) {
hash = getClass().hashCode();
hash = hash * 31 + JodaBeanUtils.hashCode(value);
cacheHashCode = hash;
}
return hash;
}

@Override
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("ImmComplexAnnotation{");
buf.append("value").append('=').append(JodaBeanUtils.toString(value));
buf.append('}');
return buf.toString();
}

//-----------------------------------------------------------------------
/**
* The meta-bean for {@code ImmComplexAnnotation}.
*/
public static final class Meta extends DirectMetaBean {
/**
* The singleton instance of the meta-bean.
*/
static final Meta INSTANCE = new Meta();

/**
* The meta-property for the {@code value} property.
*/
private final MetaProperty<Double> value = DirectMetaProperty.ofImmutable(
this, "value", ImmComplexAnnotation.class, Double.TYPE);
/**
* The meta-properties.
*/
private final Map<String, MetaProperty<?>> metaPropertyMap$ = new DirectMetaPropertyMap(
this, null,
"value");

/**
* Restricted constructor.
*/
private Meta() {
}

@Override
protected MetaProperty<?> metaPropertyGet(String propertyName) {
switch (propertyName.hashCode()) {
case 111972721: // value
return value;
}
return super.metaPropertyGet(propertyName);
}

@Override
public ImmComplexAnnotation.Builder builder() {
return new ImmComplexAnnotation.Builder();
}

@Override
public Class<? extends ImmComplexAnnotation> beanType() {
return ImmComplexAnnotation.class;
}

@Override
public Map<String, MetaProperty<?>> metaPropertyMap() {
return metaPropertyMap$;
}

//-----------------------------------------------------------------------
/**
* The meta-property for the {@code value} property.
* @return the meta-property, not null
*/
public MetaProperty<Double> value() {
return value;
}

//-----------------------------------------------------------------------
@Override
protected Object propertyGet(Bean bean, String propertyName, boolean quiet) {
switch (propertyName.hashCode()) {
case 111972721: // value
return ((ImmComplexAnnotation) bean).getValue();
}
return super.propertyGet(bean, propertyName, quiet);
}

@Override
protected void propertySet(Bean bean, String propertyName, Object newValue, boolean quiet) {
metaProperty(propertyName);
if (quiet) {
return;
}
throw new UnsupportedOperationException("Property cannot be written: " + propertyName);
}

}

//-----------------------------------------------------------------------
/**
* The bean-builder for {@code ImmComplexAnnotation}.
*/
public static final class Builder extends DirectFieldsBeanBuilder<ImmComplexAnnotation> {

private double value;

/**
* Restricted constructor.
*/
private Builder() {
}

/**
* Restricted copy constructor.
* @param beanToCopy the bean to copy from, not null
*/
private Builder(ImmComplexAnnotation beanToCopy) {
this.value = beanToCopy.getValue();
}

//-----------------------------------------------------------------------
@Override
public Object get(String propertyName) {
switch (propertyName.hashCode()) {
case 111972721: // value
return value;
default:
throw new NoSuchElementException("Unknown property: " + propertyName);
}
}

@Override
public Builder set(String propertyName, Object newValue) {
switch (propertyName.hashCode()) {
case 111972721: // value
this.value = (Double) newValue;
break;
default:
throw new NoSuchElementException("Unknown property: " + propertyName);
}
return this;
}

@Override
public Builder set(MetaProperty<?> property, Object value) {
super.set(property, value);
return this;
}

@Override
public ImmComplexAnnotation build() {
return new ImmComplexAnnotation(
value);
}

//-----------------------------------------------------------------------
/**
* Sets the value.
* @param value the new value
* @return this, for chaining, not null
*/
public Builder value(double value) {
this.value = value;
return this;
}

//-----------------------------------------------------------------------
@Override
public String toString() {
StringBuilder buf = new StringBuilder(64);
buf.append("ImmComplexAnnotation.Builder{");
buf.append("value").append('=').append(JodaBeanUtils.toString(value));
buf.append('}');
return buf.toString();
}

}

//-------------------------- AUTOGENERATED END --------------------------
}
2 changes: 1 addition & 1 deletion src/test/java/org/joda/beans/sample/SimpleAnnotation.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Used to test annotation parsing.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Target({ ElementType.FIELD, ElementType.TYPE })
public @interface SimpleAnnotation {

String first() default "";
Expand Down

0 comments on commit 4f2840f

Please sign in to comment.