All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.resys.thena.docdb.file.spi.FileTuplePreparedQuery Maven / Gradle / Ivy

The newest version!
package io.resys.thena.docdb.file.spi;

/*-
 * #%L
 * thena-docdb-api
 * %%
 * Copyright (C) 2021 - 2022 Copyright 2021 ReSys OÜ
 * %%
 * 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.
 * #L%
 */

import java.io.File;
import java.util.List;
import java.util.function.Function;
import java.util.stream.Collectors;

import com.fasterxml.jackson.databind.ObjectMapper;

import io.resys.thena.docdb.file.tables.Table;
import io.resys.thena.docdb.file.tables.Table.FileCommand;
import io.resys.thena.docdb.file.tables.Table.FilePreparedQuery;
import io.resys.thena.docdb.file.tables.Table.Row;
import io.smallrye.mutiny.Uni;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;


@Slf4j
@RequiredArgsConstructor
public class FileTuplePreparedQuery implements FilePreparedQuery {
  private final File rootDir;
  private final FileCommand query;
  private final Function mapper;
  private final ObjectMapper objectMapper;
  private final FileConnection conn;

  @Override
  public  FilePreparedQuery mapping(Function mapper) {
    return new FileTuplePreparedQuery(rootDir, query, mapper, objectMapper, conn);
  }

  @Override
  public Uni> execute() {
    return Uni.createFrom().item(() -> {
      log.info(query.getValue());
      final List rows = query.getCommand().apply(conn);
      final var mapped = rows.stream().map(r -> {
        if(mapper == null) {
          return (T) r;
        } else {
          return mapper.apply(r);
        }
        
      }).collect(Collectors.toList());
      return mapped;
    });
  }
  
}