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

org.immutables.criteria.repository.async.AsyncReader Maven / Gradle / Ivy

/*
 * Copyright 2019 Immutables Authors and Contributors
 *
 * 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 org.immutables.criteria.repository.async;

import com.google.common.base.Preconditions;
import com.google.common.collect.Iterables;
import org.immutables.criteria.backend.Backend;
import org.immutables.criteria.expression.Expression;
import org.immutables.criteria.expression.Query;
import org.immutables.criteria.matcher.Matchers;
import org.immutables.criteria.matcher.Projection;
import org.immutables.criteria.repository.AbstractReader;

import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.concurrent.CompletionStage;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;

public class AsyncReader extends AbstractReader> implements AsyncFetcher {

  private final Query query;
  private final Backend.Session session;
  private final AsyncFetcherDelegate fetcher;

  AsyncReader(Query query, Backend.Session session) {
    super(query);
    this.query = query;
    this.session = Objects.requireNonNull(session, "session");
    this.fetcher = AsyncFetcherDelegate.of(query, session);
  }

  @Override
  protected AsyncReader newReader(Query query) {
    return new AsyncReader<>(query, session);
  }

  public  AsyncMapper1 select(Projection proj1) {
    Query newQuery = this.query.addProjections(Matchers.toExpression(proj1));
    return new AsyncMapper1(newQuery, session);
  }

  public  AsyncMapper2 select(Projection proj1, Projection proj2) {
    Query newQuery = this.query.addProjections(Matchers.toExpression(proj1), Matchers.toExpression(proj2));
    return new AsyncMapper2<>(newQuery, session);
  }

  public  AsyncMapper3 select(Projection proj1, Projection proj2, Projection proj3) {
    Query newQuery = this.query.addProjections(Matchers.toExpression(proj1), Matchers.toExpression(proj2), Matchers.toExpression(proj3));
    return new AsyncMapper3<>(newQuery, session);
  }

  public  AsyncMapper4 select(Projection proj1, Projection proj2, Projection proj3, Projection proj4) {
    Query newQuery = this.query.addProjections(Matchers.toExpression(proj1), Matchers.toExpression(proj2), Matchers.toExpression(proj3), Matchers.toExpression(proj4));
    return new AsyncMapper4<>(newQuery, session);
  }

  public  AsyncMapper5 select(Projection proj1, Projection proj2, Projection proj3, Projection proj4, Projection proj5) {
    Query newQuery = this.query.addProjections(Matchers.toExpression(proj1), Matchers.toExpression(proj2), Matchers.toExpression(proj3), Matchers.toExpression(proj4), Matchers.toExpression(proj5));
    return new AsyncMapper5<>(newQuery, session);
  }

  public AsyncMapperTuple select(Iterable> projections) {
    Objects.requireNonNull(projections, "projections");
    Preconditions.checkArgument(!Iterables.isEmpty(projections), "empty projections");
    List expressions = StreamSupport.stream(projections.spliterator(), false).map(Matchers::toExpression).collect(Collectors.toList());
    Query newQuery = this.query.addProjections(expressions);
    return new AsyncMapperTuple(newQuery, session);
  }

  @Override
  public CompletionStage> fetch() {
    return fetcher.fetch();
  }

  @Override
  public CompletionStage one() {
    return fetcher.one();
  }

  @Override
  public CompletionStage> oneOrNone() {
    return fetcher.oneOrNone();
  }

  @Override
  public CompletionStage exists() {
    return fetcher.exists();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy