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

com.scalar.db.storage.cosmos.ScannerImpl Maven / Gradle / Ivy

Go to download

A universal transaction manager that achieves database-agnostic transactions and distributed transactions that span multiple databases

The newest version!
package com.scalar.db.storage.cosmos;

import static com.google.common.base.Preconditions.checkNotNull;

import com.azure.cosmos.models.FeedResponse;
import com.scalar.db.api.Result;
import com.scalar.db.api.Scanner;
import com.scalar.db.common.ScannerIterator;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.NotThreadSafe;

@NotThreadSafe
public final class ScannerImpl implements Scanner {

  private final ResultInterpreter resultInterpreter;
  private Iterator> recordsPages;
  private Iterator currentPageRecords;
  private ScannerIterator scannerIterator;

  /**
   * Create a Scanner for Cosmos DB query operations
   *
   * @param recordsPages an iterator over the pages {@code FeedResponse}, each containing
   *     records.
   * @param resultInterpreter to interpret the result
   */
  @SuppressFBWarnings("EI_EXPOSE_REP2")
  public ScannerImpl(
      Iterator> recordsPages, ResultInterpreter resultInterpreter) {
    this.recordsPages = checkNotNull(recordsPages);
    this.currentPageRecords = Collections.emptyIterator();
    this.resultInterpreter = checkNotNull(resultInterpreter);
  }

  @Override
  @Nonnull
  public Optional one() {
    while (currentPageRecords.hasNext() || recordsPages.hasNext()) {
      // Return the next record of the current page if there is one
      if (currentPageRecords.hasNext()) {
        Record currentRecord = currentPageRecords.next();
        return Optional.of(resultInterpreter.interpret(currentRecord));
      } else {
        // Otherwise, advance to the next page
        currentPageRecords = recordsPages.next().getResults().iterator();
      }
    }
    // There is no records left
    return Optional.empty();
  }

  @Override
  @Nonnull
  public List all() {
    List ret = new ArrayList<>();
    // Consume the remaining records of the current page
    currentPageRecords.forEachRemaining(record -> ret.add(resultInterpreter.interpret(record)));

    // Consume all the records of the remaining pages
    recordsPages.forEachRemaining(
        page -> page.getResults().forEach(record -> ret.add(resultInterpreter.interpret(record))));

    // Set to empty iterator to release the records from the memory
    currentPageRecords = Collections.emptyIterator();
    recordsPages = Collections.emptyIterator();

    return ret;
  }

  @Override
  @Nonnull
  public Iterator iterator() {
    if (scannerIterator == null) {
      scannerIterator = new ScannerIterator(this);
    }
    return scannerIterator;
  }

  @Override
  public void close() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy