com.facebook.swift.codec.metadata.ThriftStructMetadata Maven / Gradle / Ivy
/*
* Copyright (C) 2012 Facebook, Inc.
*
* 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.facebook.swift.codec.metadata;
import com.google.common.base.Function;
import com.google.common.base.Optional;
import com.google.common.collect.Collections2;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSortedMap;
import com.google.common.reflect.TypeToken;
import javax.annotation.concurrent.Immutable;
import java.lang.reflect.Type;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.SortedMap;
import static com.facebook.swift.codec.metadata.ThriftFieldMetadata.isTypePredicate;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.collect.Maps.uniqueIndex;
@Immutable
public class ThriftStructMetadata
{
public static enum MetadataType {
STRUCT, UNION;
}
private final String structName;
private final Map idlAnnotations;
private final MetadataType metadataType;
private final Optional builderMethod;
private final ImmutableList documentation;
private final SortedMap fields;
private final Optional constructorInjection;
private final List methodInjections;
private final Type structType;
private final Type builderType;
public ThriftStructMetadata(
String structName,
Map idlAnnotations,
Type structType,
Type builderType,
MetadataType metadataType,
Optional builderMethod,
List documentation,
List fields,
Optional constructorInjection,
List methodInjections)
{
this.builderType = builderType;
this.builderMethod = checkNotNull(builderMethod, "builderMethod is null");
this.structName = checkNotNull(structName, "structName is null");
this.idlAnnotations = checkNotNull(idlAnnotations, "idlAnnotations is null");
this.metadataType = checkNotNull(metadataType, "metadataType is null");
this.structType = checkNotNull(structType, "structType is null");
this.constructorInjection = checkNotNull(constructorInjection, "constructorInjection is null");
this.documentation = ImmutableList.copyOf(checkNotNull(documentation, "documentation is null"));
this.fields = ImmutableSortedMap.copyOf(uniqueIndex(checkNotNull(fields, "fields is null"), new Function()
{
@Override
public Short apply(ThriftFieldMetadata input)
{
return input.getId();
}
}));
this.methodInjections = ImmutableList.copyOf(checkNotNull(methodInjections, "methodInjections is null"));
}
public String getStructName()
{
return structName;
}
public Type getStructType()
{
return structType;
}
public Class> getStructClass()
{
return TypeToken.of(structType).getRawType();
}
public Type getBuilderType()
{
return builderType;
}
public Class> getBuilderClass()
{
return builderType == null ? null : TypeToken.of(builderType).getRawType();
}
public MetadataType getMetadataType()
{
return metadataType;
}
public Optional getBuilderMethod()
{
return builderMethod;
}
public Map getIdlAnnotations()
{
return idlAnnotations;
}
public ThriftFieldMetadata getField(int id)
{
return fields.get((short) id);
}
public ImmutableList getDocumentation()
{
return documentation;
}
public Collection getFields(FieldKind type)
{
return Collections2.filter(getFields(), isTypePredicate(type));
}
public Collection getFields()
{
return fields.values();
}
public Optional getConstructorInjection()
{
return constructorInjection;
}
public List getMethodInjections()
{
return methodInjections;
}
public boolean isException()
{
return Exception.class.isAssignableFrom(getStructClass());
}
public boolean isUnion()
{
return !isException() && getMetadataType() == MetadataType.UNION;
}
public boolean isStruct()
{
return !isException() && getMetadataType() == MetadataType.STRUCT;
}
@Override
public String toString()
{
final StringBuilder sb = new StringBuilder();
sb.append("ThriftStructMetadata");
sb.append("{structName='").append(structName).append('\'');
sb.append(", structType=").append(structType);
sb.append(", builderType=").append(builderType);
sb.append(", builderMethod=").append(builderMethod);
sb.append(", fields=").append(fields);
sb.append(", constructorInjection=").append(constructorInjection);
sb.append(", methodInjections=").append(methodInjections);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy