org.drools.compiler.lang.descr.AnnotationDescr Maven / Gradle / Ivy
/*
* Copyright 2011 Red Hat, Inc. and/or its affiliates.
*
* 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.drools.compiler.lang.descr;
import org.drools.core.factmodel.PropertyMap;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
public class AnnotationDescr extends AnnotatedBaseDescr implements PropertyMap {
public static final String VALUE = "value";
private static final long serialVersionUID = 520l;
private String name;
private String fullyQualifiedName;
private Map values;
private boolean duplicated = false;
private boolean strict = false;
// '' and 'a' are passed through as
public static String unquote(String s) {
if (s.startsWith("\"") && s.endsWith("\"") ||
s.startsWith("'") && s.endsWith("'")) {
return s.substring(1, s.length() - 1);
} else {
return s;
}
}
public AnnotationDescr() {
}
public AnnotationDescr(final String name) {
this.name = name;
this.values = new HashMap();
}
public AnnotationDescr(final String name,
final String value) {
this(name);
this.values.put(VALUE, value);
}
@Override
public void readExternal(ObjectInput in) throws IOException,
ClassNotFoundException {
super.readExternal(in);
this.name = (String) in.readObject();
this.values = (Map) in.readObject();
this.fullyQualifiedName = (String) in.readObject();
this.duplicated = in.readBoolean();
this.strict = in.readBoolean();
}
@Override
public void writeExternal(ObjectOutput out) throws IOException {
super.writeExternal( out );
out.writeObject(name);
out.writeObject(values);
out.writeObject(fullyQualifiedName);
out.writeBoolean(duplicated);
out.writeBoolean(strict);
}
public String getName() {
return this.name;
}
public String getFullyQualifiedName() {
return fullyQualifiedName;
}
public void setFullyQualifiedName(String fullyQualifiedName) {
this.fullyQualifiedName = fullyQualifiedName;
}
public boolean hasValue() {
return !this.values.isEmpty();
}
public void setValue(final Object value) {
this.values.put(VALUE, value);
}
public void setKeyValue(final String key,
final Object value) {
this.values.put(key, value);
}
public Object getValue(final String key) {
return this.values.get(key);
}
public Map getValues() {
return this.values;
}
/**
* Returns the metadata value as a single object or a Map
*
* @return
*/
public Object getValue() {
Object single = getSingleValue();
return single != null ? single : this.values;
}
public Object getValueStripped() {
Object single = getSingleValueStripped();
if (single != null) return single;
Map sMap = new HashMap();
for (Map.Entry entry : this.values.entrySet()) {
sMap.put(entry.getKey(), unquote(entry.getValue().toString()));
}
return sMap;
}
public Map getValueMap() {
return this.values;
}
public Object getSingleValue() {
if (values.size() == 1 && values.containsKey(VALUE)) {
return this.values.get(VALUE);
} else {
return null;
}
}
public Object getSingleValueStripped() {
if (values.size() == 1 && values.containsKey(VALUE)) {
return unquote( this.values.get( VALUE ).toString() );
} else {
return null;
}
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((name == null) ? 0 : name.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
AnnotationDescr other = (AnnotationDescr) obj;
if (name == null) {
if (other.name != null) return false;
} else if (!name.equals(other.name)) return false;
return true;
}
public String getSingleValueAsString() {
return getValueAsString( VALUE );
}
public String getValueAsString( String key ) {
Object x = getValue( key );
if ( x == null ) {
return null;
} else if ( x.getClass().isArray() ) {
return Arrays.toString( (Object[]) x );
} else {
return x.toString();
}
}
public String getValuesAsString() {
switch (values.size()) {
case 0:
return "";
case 1:
return getSingleValue().toString();
default:
StringBuilder sb = new StringBuilder();
boolean first = true;
for (String key : values.keySet()) {
if (!first) {
sb.append(",");
}
sb.append(key).append("=").append(values.get(key));
if (first) {
first = false;
}
}
return sb.toString();
}
}
public boolean isDuplicated() {
return duplicated;
}
public void setDuplicated() {
this.duplicated = true;
}
public boolean isStrict() {
return strict;
}
public void setStrict(boolean strict) {
this.strict = strict;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy