Search in sources :

Example 1 with AbstractDeclaring

use of org.immutables.value.processor.meta.Proto.AbstractDeclaring in project immutables by immutables.

the class Gsons method typeAdapters.

public Iterable<TypeAdapterTypes> typeAdapters() {
    Map<AbstractDeclaring, GsonMirrors.TypeAdapters> mirrors = Maps.newHashMap();
    Multimap<AbstractDeclaring, ValueType> byDeclaring = HashMultimap.create();
    for (ValueType value : values().values()) {
        Protoclass protoclass = value.constitution.protoclass();
        if (protoclass.kind().isValue()) {
            Optional<AbstractDeclaring> typeAdaptersProvider = protoclass.typeAdaptersProvider();
            if (typeAdaptersProvider.isPresent()) {
                AbstractDeclaring key = typeAdaptersProvider.get();
                mirrors.put(key, key.typeAdapters().get());
                byDeclaring.put(key, value);
            } else if (protoclass.gsonTypeAdapters().isPresent() && protoclass.declaringType().isPresent()) {
                DeclaringType topLevel = protoclass.declaringType().get().associatedTopLevel();
                mirrors.put(topLevel, protoclass.gsonTypeAdapters().get());
                byDeclaring.put(topLevel, value);
            }
        }
    }
    ImmutableList.Builder<TypeAdapterTypes> builder = ImmutableList.builder();
    for (Entry<AbstractDeclaring, Collection<ValueType>> entry : byDeclaring.asMap().entrySet()) {
        String pack = Iterables.get(entry.getValue(), 0).$$package();
        builder.add(ImmutableTypeAdapterTypes.builder().definedBy(entry.getKey()).mirror(mirrors.get(entry.getKey())).packageGenerated(pack).addAllTypes(entry.getValue()).build());
    }
    return builder.build();
}
Also used : Protoclass(org.immutables.value.processor.meta.Proto.Protoclass) ValueType(org.immutables.value.processor.meta.ValueType) ImmutableList(com.google.common.collect.ImmutableList) AbstractDeclaring(org.immutables.value.processor.meta.Proto.AbstractDeclaring) Collection(java.util.Collection) DeclaringType(org.immutables.value.processor.meta.Proto.DeclaringType)

Example 2 with AbstractDeclaring

use of org.immutables.value.processor.meta.Proto.AbstractDeclaring in project immutables by immutables.

the class OkJsons method typeAdapters.

Iterable<OkTypeAdapterTypes> typeAdapters() {
    Multimap<AbstractDeclaring, ValueType> byDeclaring = HashMultimap.create();
    for (ValueType value : values().values()) {
        Protoclass protoclass = value.constitution.protoclass();
        if (protoclass.kind().isValue()) {
            Optional<AbstractDeclaring> typeAdaptersProvider = protoclass.okTypeAdaptersProvider();
            if (typeAdaptersProvider.isPresent()) {
                byDeclaring.put(typeAdaptersProvider.get(), value);
            } else if (protoclass.okJsonTypeAdapters().isPresent() && protoclass.declaringType().isPresent()) {
                DeclaringType topLevel = protoclass.declaringType().get().associatedTopLevel();
                byDeclaring.put(topLevel, value);
            }
        }
    }
    ImmutableList.Builder<OkTypeAdapterTypes> builder = ImmutableList.builder();
    for (Entry<AbstractDeclaring, Collection<ValueType>> entry : byDeclaring.asMap().entrySet()) {
        String pack = Iterables.get(entry.getValue(), 0).$$package();
        builder.add(ImmutableOkTypeAdapterTypes.builder().definedBy(entry.getKey()).packageGenerated(pack).addAllTypes(entry.getValue()).build());
    }
    return builder.build();
}
Also used : Protoclass(org.immutables.value.processor.meta.Proto.Protoclass) ValueType(org.immutables.value.processor.meta.ValueType) DeclaringType(org.immutables.value.processor.meta.Proto.DeclaringType) AbstractDeclaring(org.immutables.value.processor.meta.Proto.AbstractDeclaring)

Aggregations

AbstractDeclaring (org.immutables.value.processor.meta.Proto.AbstractDeclaring)2 DeclaringType (org.immutables.value.processor.meta.Proto.DeclaringType)2 Protoclass (org.immutables.value.processor.meta.Proto.Protoclass)2 ValueType (org.immutables.value.processor.meta.ValueType)2 ImmutableList (com.google.common.collect.ImmutableList)1 Collection (java.util.Collection)1