Search in sources :

Example 1 with IndexDescriptor

use of org.kie.kogito.persistence.api.schema.IndexDescriptor 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 IndexDescriptor

use of org.kie.kogito.persistence.api.schema.IndexDescriptor 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 3 with IndexDescriptor

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

the class IndexManager method createIndex.

Optional<IndexModel> createIndex(IndexDescriptor indexDescriptor, String parentField, String prefixUUID) {
    String indexName = prefixUUID + indexDescriptor.getName();
    List<String> fieldNames = indexDescriptor.getIndexAttributes().stream().map(attributeName -> parentField.isEmpty() ? attributeName : (parentField + "." + attributeName)).collect(toList());
    if (!fieldNames.isEmpty()) {
        return Optional.of(new IndexModel(Indexes.ascending(fieldNames), new IndexOptions().name(indexName).sparse(true)));
    }
    return Optional.empty();
}
Also used : Document(org.bson.Document) ArrayListMultimap(com.google.common.collect.ArrayListMultimap) IndexModel(com.mongodb.client.model.IndexModel) SchemaRegistrationException(org.kie.kogito.persistence.api.schema.SchemaRegistrationException) MongoCollection(com.mongodb.client.MongoCollection) SchemaRegisteredEvent(org.kie.kogito.persistence.api.schema.SchemaRegisteredEvent) Multimaps(com.google.common.collect.Multimaps) Inject(javax.inject.Inject) Collectors.toMap(java.util.stream.Collectors.toMap) EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) Map(java.util.Map) Observes(javax.enterprise.event.Observes) StreamSupport(java.util.stream.StreamSupport) IndexDescriptor(org.kie.kogito.persistence.api.schema.IndexDescriptor) Instance(javax.enterprise.inject.Instance) Event(javax.enterprise.event.Event) Collection(java.util.Collection) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) MongoClientManager(org.kie.kogito.persistence.mongodb.client.MongoClientManager) UUID(java.util.UUID) IndexOptions(com.mongodb.client.model.IndexOptions) Indexes(com.mongodb.client.model.Indexes) List(java.util.List) Collectors.toList(java.util.stream.Collectors.toList) Stream(java.util.stream.Stream) Function.identity(java.util.function.Function.identity) Optional(java.util.Optional) ApplicationScoped(javax.enterprise.context.ApplicationScoped) IndexOptions(com.mongodb.client.model.IndexOptions) IndexModel(com.mongodb.client.model.IndexModel)

Example 4 with IndexDescriptor

use of org.kie.kogito.persistence.api.schema.IndexDescriptor 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 IndexDescriptor

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

the class IndexManagerIT method testCreateNoIndex.

@Test
void testCreateNoIndex() {
    String fieldName = "id";
    IndexDescriptor id = new IndexDescriptor(fieldName, List.of());
    String parentField = "";
    String prefixUUID = UUID.randomUUID().toString() + ".";
    Optional<IndexModel> index = indexManager.createIndex(id, parentField, prefixUUID);
    assertFalse(index.isPresent());
}
Also used : EntityIndexDescriptor(org.kie.kogito.persistence.api.schema.EntityIndexDescriptor) IndexDescriptor(org.kie.kogito.persistence.api.schema.IndexDescriptor) IndexModel(com.mongodb.client.model.IndexModel) QuarkusTest(io.quarkus.test.junit.QuarkusTest) Test(org.junit.jupiter.api.Test)

Aggregations

EntityIndexDescriptor (org.kie.kogito.persistence.api.schema.EntityIndexDescriptor)7 IndexDescriptor (org.kie.kogito.persistence.api.schema.IndexDescriptor)7 IndexModel (com.mongodb.client.model.IndexModel)4 IndexOptions (com.mongodb.client.model.IndexOptions)3 QuarkusTest (io.quarkus.test.junit.QuarkusTest)3 Test (org.junit.jupiter.api.Test)3 AttributeDescriptor (org.kie.kogito.persistence.api.schema.AttributeDescriptor)3 List (java.util.List)2 Map (java.util.Map)2 Optional (java.util.Optional)2 ArrayListMultimap (com.google.common.collect.ArrayListMultimap)1 Multimaps (com.google.common.collect.Multimaps)1 MongoCollection (com.mongodb.client.MongoCollection)1 Indexes (com.mongodb.client.model.Indexes)1 ArrayList (java.util.ArrayList)1 Collection (java.util.Collection)1 HashMap (java.util.HashMap)1 Objects (java.util.Objects)1 Set (java.util.Set)1 UUID (java.util.UUID)1