Search in sources :

Example 1 with AttributeDescriptor

use of org.kie.kogito.persistence.api.schema.AttributeDescriptor in project kogito-apps by kiegroup.

the class ProtoIndexParser method create.

@Override
public EntityIndexDescriptor create(Descriptor annotatedDescriptor, AnnotationElement.Annotation annotation) {
    String name = annotatedDescriptor.getFullName();
    List<IndexDescriptor> indexes = new ArrayList<>(annotatedDescriptor.getFields().size());
    List<AttributeDescriptor> fields = new ArrayList<>(annotatedDescriptor.getFields().size());
    for (FieldDescriptor fd : annotatedDescriptor.getFields()) {
        AnnotationElement.Annotation fieldAnnotation = fd.getAnnotations().get(FIELD_ANNOTATION);
        if (fieldAnnotation != null) {
            String fieldName = Optional.ofNullable((String) fieldAnnotation.getAttributeValue(FIELD_NAME_ATTRIBUTE).getValue()).filter(a -> !a.isEmpty()).orElseGet(fd::getName);
            boolean isIndexed = INDEX_YES.equals(fieldAnnotation.getAttributeValue(FIELD_INDEX_ATTRIBUTE).getValue());
            fields.add(createAttributeDescriptor(fd, fieldName));
            if (isIndexed) {
                indexes.add(new IndexDescriptor(fieldName, List.of(fieldName)));
            }
        }
    }
    return new EntityIndexDescriptor(name, indexes, fields);
}
Also used : FileDescriptor(org.infinispan.protostream.descriptors.FileDescriptor) AnnotationMetadataCreator(org.infinispan.protostream.AnnotationMetadataCreator) Set(java.util.Set) Descriptor(org.infinispan.protostream.descriptors.Descriptor) AttributeDescriptor(org.kie.kogito.persistence.api.schema.AttributeDescriptor) FieldDescriptor(org.infinispan.protostream.descriptors.FieldDescriptor) ArrayList(java.util.ArrayList) Objects(java.util.Objects) List(java.util.List) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) Map(java.util.Map) Optional(java.util.Optional) Configuration(org.infinispan.protostream.config.Configuration) IndexDescriptor(org.kie.kogito.persistence.api.schema.IndexDescriptor) AnnotationElement(org.infinispan.protostream.descriptors.AnnotationElement) Collectors.toSet(java.util.stream.Collectors.toSet) ArrayList(java.util.ArrayList) AttributeDescriptor(org.kie.kogito.persistence.api.schema.AttributeDescriptor) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) IndexDescriptor(org.kie.kogito.persistence.api.schema.IndexDescriptor) FieldDescriptor(org.infinispan.protostream.descriptors.FieldDescriptor) AnnotationElement(org.infinispan.protostream.descriptors.AnnotationElement) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor)

Example 2 with AttributeDescriptor

use of org.kie.kogito.persistence.api.schema.AttributeDescriptor in project kogito-apps by kiegroup.

the class ProtoIndexParserTest method testCreateAttributeDescriptor.

@Test
void testCreateAttributeDescriptor() {
    FieldDescriptor roomField = createFileDescriptor().getMessageTypes().stream().filter(descriptor -> "org.acme.travels.travels.Hotel".equals(descriptor.getFullName())).findAny().get().findFieldByName("room");
    AttributeDescriptor attributeDescriptor = createAttributeDescriptor(roomField, null);
    assertEquals(new AttributeDescriptor("room", "string", true), attributeDescriptor);
}
Also used : Assertions.fail(org.junit.jupiter.api.Assertions.fail) FileDescriptor(org.infinispan.protostream.descriptors.FileDescriptor) ProtoIndexParser.createAttributeDescriptor(org.kie.kogito.persistence.protobuf.ProtoIndexParser.createAttributeDescriptor) ProtoIndexParser.createEntityIndexDescriptors(org.kie.kogito.persistence.protobuf.ProtoIndexParser.createEntityIndexDescriptors) TestUtils.getTestFileContent(org.kie.kogito.persistence.protobuf.TestUtils.getTestFileContent) AttributeDescriptor(org.kie.kogito.persistence.api.schema.AttributeDescriptor) Function(java.util.function.Function) DescriptorParserException(org.infinispan.protostream.DescriptorParserException) FieldDescriptor(org.infinispan.protostream.descriptors.FieldDescriptor) Objects(java.util.Objects) Test(org.junit.jupiter.api.Test) Collectors.toMap(java.util.stream.Collectors.toMap) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) TestUtils.getValidEntityIndexDescriptors(org.kie.kogito.persistence.protobuf.TestUtils.getValidEntityIndexDescriptors) INDEXED_ANNOTATION(org.kie.kogito.persistence.protobuf.ProtoIndexParser.INDEXED_ANNOTATION) Map(java.util.Map) ProtoIndexParser.configureBuilder(org.kie.kogito.persistence.protobuf.ProtoIndexParser.configureBuilder) SerializationContextImpl(org.infinispan.protostream.impl.SerializationContextImpl) Assertions.assertEquals(org.junit.jupiter.api.Assertions.assertEquals) SerializationContext(org.infinispan.protostream.SerializationContext) FileDescriptorSource(org.infinispan.protostream.FileDescriptorSource) ProtoIndexParser.createAttributeDescriptor(org.kie.kogito.persistence.protobuf.ProtoIndexParser.createAttributeDescriptor) AttributeDescriptor(org.kie.kogito.persistence.api.schema.AttributeDescriptor) FieldDescriptor(org.infinispan.protostream.descriptors.FieldDescriptor) Test(org.junit.jupiter.api.Test)

Example 3 with AttributeDescriptor

use of org.kie.kogito.persistence.api.schema.AttributeDescriptor in project kogito-apps by kiegroup.

the class TestUtils method getValidEntityIndexDescriptors.

static Map<String, EntityIndexDescriptor> getValidEntityIndexDescriptors(boolean includeUnindexedAttribute) {
    AttributeDescriptor flightNumber = new AttributeDescriptor("flightNumber", "string", true);
    EntityIndexDescriptor flightEntityIndexDescriptor = new EntityIndexDescriptor("org.acme.travels.travels.Flight", emptyList(), List.of(flightNumber));
    AttributeDescriptor hotelName = new AttributeDescriptor("name", "string", true);
    AttributeDescriptor hotelRoom = new AttributeDescriptor("room", "string", true);
    EntityIndexDescriptor hotelEntityIndexDescriptor = new EntityIndexDescriptor("org.acme.travels.travels.Hotel", emptyList(), includeUnindexedAttribute ? List.of(hotelName, hotelRoom) : List.of(hotelName));
    AttributeDescriptor flight = new AttributeDescriptor("flight", "Flight", false);
    AttributeDescriptor hotel = new AttributeDescriptor("hotel", "Hotel", false);
    AttributeDescriptor id = new AttributeDescriptor("id", "string", true);
    AttributeDescriptor metadata = new AttributeDescriptor("metadata", "string", true);
    IndexDescriptor idIndex = new IndexDescriptor("id", List.of("id"));
    EntityIndexDescriptor travelEntityIndexDescriptor = new EntityIndexDescriptor("org.acme.travels.travels.Travels", List.of(idIndex), List.of(flight, hotel, id, metadata));
    Map<String, EntityIndexDescriptor> entityIndexDescriptorMap = new HashMap<>();
    entityIndexDescriptorMap.put(flightEntityIndexDescriptor.getName(), flightEntityIndexDescriptor);
    entityIndexDescriptorMap.put(hotelEntityIndexDescriptor.getName(), hotelEntityIndexDescriptor);
    entityIndexDescriptorMap.put(travelEntityIndexDescriptor.getName(), travelEntityIndexDescriptor);
    return entityIndexDescriptorMap;
}
Also used : HashMap(java.util.HashMap) AttributeDescriptor(org.kie.kogito.persistence.api.schema.AttributeDescriptor) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) IndexDescriptor(org.kie.kogito.persistence.api.schema.IndexDescriptor)

Example 4 with AttributeDescriptor

use of org.kie.kogito.persistence.api.schema.AttributeDescriptor in project kogito-apps by kiegroup.

the class IndexManagerIT method setup_all.

@BeforeAll
static void setup_all() {
    AttributeDescriptor flightNumber = new AttributeDescriptor("flightNumber", "string", true);
    IndexDescriptor flightNumberIndex = new IndexDescriptor("flightNumber", List.of("flightNumber"));
    flightEntityIndexDescriptor = new EntityIndexDescriptor("org.acme.travels.travels.Flight", List.of(flightNumberIndex), List.of(flightNumber));
    AttributeDescriptor hotelName = new AttributeDescriptor("name", "string", true);
    AttributeDescriptor hotelRoom = new AttributeDescriptor("room", "string", true);
    IndexDescriptor hotelNameIndex = new IndexDescriptor("name", List.of("name"));
    hotelEntityIndexDescriptor = new EntityIndexDescriptor("org.acme.travels.travels.Hotel", List.of(hotelNameIndex), List.of(hotelName, hotelRoom));
    AttributeDescriptor flight = new AttributeDescriptor("flight", "Flight", false);
    AttributeDescriptor hotel = new AttributeDescriptor("hotel", "org.acme.travels.travels.Hotel", false);
    AttributeDescriptor id = new AttributeDescriptor("id", "string", true);
    AttributeDescriptor metadata = new AttributeDescriptor("metadata", "string", true);
    IndexDescriptor flightIndex = new IndexDescriptor("flight", List.of("flight"));
    IndexDescriptor hotelIndex = new IndexDescriptor("hotel", List.of("hotel"));
    IndexDescriptor idIndex = new IndexDescriptor("id", List.of("id"));
    IndexDescriptor metadataIndex = new IndexDescriptor("metadata", List.of("metadata"));
    travelEntityIndexDescriptor = new EntityIndexDescriptor("org.acme.travels.travels.Travels", List.of(flightIndex, hotelIndex, idIndex, metadataIndex), List.of(flight, hotel, id, metadata));
    errorEntityIndexDescriptor = mockErrorIndexes();
}
Also used : AttributeDescriptor(org.kie.kogito.persistence.api.schema.AttributeDescriptor) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) IndexDescriptor(org.kie.kogito.persistence.api.schema.IndexDescriptor) BeforeAll(org.junit.jupiter.api.BeforeAll)

Example 5 with AttributeDescriptor

use of org.kie.kogito.persistence.api.schema.AttributeDescriptor in project kogito-apps by kiegroup.

the class ProtoIndexParser method createEntityIndexDescriptors.

static Map<String, EntityIndexDescriptor> createEntityIndexDescriptors(FileDescriptor desc, Map<String, EntityIndexDescriptor> entityIndexes) {
    desc.getMessageTypes().forEach(mDesc -> {
        String typeName = mDesc.getFullName();
        EntityIndexDescriptor entityIndex = entityIndexes.get(typeName);
        if (entityIndex != null) {
            // Add the fields without index
            Set<String> fieldNames = entityIndex.getAttributeDescriptors().stream().map(AttributeDescriptor::getName).collect(toSet());
            mDesc.getFields().stream().filter(fDesc -> !fieldNames.contains(fDesc.getName())).forEach(fDesc -> entityIndex.getAttributeDescriptors().add(createAttributeDescriptor(fDesc, null)));
        }
    });
    return entityIndexes;
}
Also used : FileDescriptor(org.infinispan.protostream.descriptors.FileDescriptor) AnnotationMetadataCreator(org.infinispan.protostream.AnnotationMetadataCreator) Set(java.util.Set) Descriptor(org.infinispan.protostream.descriptors.Descriptor) AttributeDescriptor(org.kie.kogito.persistence.api.schema.AttributeDescriptor) FieldDescriptor(org.infinispan.protostream.descriptors.FieldDescriptor) ArrayList(java.util.ArrayList) Objects(java.util.Objects) List(java.util.List) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) Map(java.util.Map) Optional(java.util.Optional) Configuration(org.infinispan.protostream.config.Configuration) IndexDescriptor(org.kie.kogito.persistence.api.schema.IndexDescriptor) AnnotationElement(org.infinispan.protostream.descriptors.AnnotationElement) Collectors.toSet(java.util.stream.Collectors.toSet) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor)

Aggregations

AttributeDescriptor (org.kie.kogito.persistence.api.schema.AttributeDescriptor)5 EntityIndexDescriptor (org.kie.kogito.persistence.api.schema.EntityIndexDescriptor)5 IndexDescriptor (org.kie.kogito.persistence.api.schema.IndexDescriptor)4 Map (java.util.Map)3 Objects (java.util.Objects)3 FieldDescriptor (org.infinispan.protostream.descriptors.FieldDescriptor)3 FileDescriptor (org.infinispan.protostream.descriptors.FileDescriptor)3 ArrayList (java.util.ArrayList)2 List (java.util.List)2 Optional (java.util.Optional)2 Set (java.util.Set)2 Collectors.toSet (java.util.stream.Collectors.toSet)2 AnnotationMetadataCreator (org.infinispan.protostream.AnnotationMetadataCreator)2 Configuration (org.infinispan.protostream.config.Configuration)2 AnnotationElement (org.infinispan.protostream.descriptors.AnnotationElement)2 Descriptor (org.infinispan.protostream.descriptors.Descriptor)2 HashMap (java.util.HashMap)1 Function (java.util.function.Function)1 Collectors.toMap (java.util.stream.Collectors.toMap)1 DescriptorParserException (org.infinispan.protostream.DescriptorParserException)1