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

org.immutables.criteria.repository.rxjava2.RxJavaReader Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
/*
 * 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.rxjava2;

import com.google.common.base.Preconditions;
import com.google.common.collect.Iterables;
import io.reactivex.Flowable;
import io.reactivex.Maybe;
import io.reactivex.Single;
import org.immutables.criteria.backend.Backend;
import org.immutables.criteria.expression.Expression;
import org.immutables.criteria.expression.ImmutableQuery;
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.stream.Collectors;
import java.util.stream.StreamSupport;

/**
 * Reader returning {@link Flowable} type
 */
public class RxJavaReader extends AbstractReader> implements RxJavaFetcher.LimitOffset {

  private final ImmutableQuery query;
  private final Backend.Session session;
  private final RxJavaFetcher fetcher;

  RxJavaReader(Query query, Backend.Session session) {
    super(query);
    this.query = ImmutableQuery.copyOf(query);
    this.session = session;
    this.fetcher = RxJavaFetcherDelegate.of(query, session);
  }

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

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

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

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

  public  RxJavaMapper4 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 RxJavaMappers.Mapper4<>(newQuery, session);
  }

  public  RxJavaMapper5 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 RxJavaMappers.Mapper5<>(newQuery, session);
  }

  public RxJavaMapperTuple 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 RxJavaMappers.MapperTuple(newQuery, session);
  }

  /**
   * Fetch available results in reactive fashion
   */
  @Override
  public Flowable fetch() {
    return fetcher.fetch();
  }

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

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

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

  @Override
  public Single count() {
    return fetcher.count();
  }

  @Override
  public Offset limit(long limit) {
    return newReader(query.withLimit(limit));
  }

  @Override
  public RxJavaFetcher offset(long offset) {
    return newReader(query.withOffset(offset));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy