io.vertx.rxjava.sqlclient.PreparedStatement Maven / Gradle / Ivy
/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you 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 io.vertx.rxjava.sqlclient;
import rx.Observable;
import rx.Single;
import io.vertx.rx.java.RxHelper;
import io.vertx.rx.java.WriteStreamSubscriber;
import io.vertx.rx.java.SingleOnSubscribeAdapter;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;
/**
 * A prepared statement, the statement is pre-compiled and it's more efficient to execute the statement for multiple times.
 * In addition, this kind of statement provides protection against SQL injection attacks.
 *
 * From a prepared statement you can
 *
 * 
 *   - use {@link io.vertx.rxjava.sqlclient.PreparedStatement#query} to create and execute a {@link io.vertx.rxjava.sqlclient.PreparedQuery}
 
 *   - use {@link io.vertx.rxjava.sqlclient.PreparedStatement#cursor} to create a {@link io.vertx.rxjava.sqlclient.Cursor}
 
 *   - use {@link io.vertx.rxjava.sqlclient.PreparedStatement#createStream} to create a {@link io.vertx.rxjava.sqlclient.RowStream}
 
 * 
 *
 * 
 * NOTE: This class has been automatically generated from the {@link io.vertx.sqlclient.PreparedStatement original} non RX-ified interface using Vert.x codegen.
 */
@RxGen(io.vertx.sqlclient.PreparedStatement.class)
public class PreparedStatement {
  @Override
  public String toString() {
    return delegate.toString();
  }
  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    PreparedStatement that = (PreparedStatement) o;
    return delegate.equals(that.delegate);
  }
  
  @Override
  public int hashCode() {
    return delegate.hashCode();
  }
  public static final TypeArg __TYPE_ARG = new TypeArg<>(    obj -> new PreparedStatement((io.vertx.sqlclient.PreparedStatement) obj),
    PreparedStatement::getDelegate
  );
  private final io.vertx.sqlclient.PreparedStatement delegate;
  
  public PreparedStatement(io.vertx.sqlclient.PreparedStatement delegate) {
    this.delegate = delegate;
  }
  public PreparedStatement(Object delegate) {
    this.delegate = (io.vertx.sqlclient.PreparedStatement)delegate;
  }
  public io.vertx.sqlclient.PreparedStatement getDelegate() {
    return delegate;
  }
  private static final TypeArg> TYPE_ARG_0 = new TypeArg>(o1 -> io.vertx.rxjava.sqlclient.RowSet.newInstance((io.vertx.sqlclient.RowSet)o1, new TypeArg(o2 -> io.vertx.rxjava.sqlclient.Row.newInstance((io.vertx.sqlclient.Row)o2), o2 -> o2.getDelegate())), o1 -> o1.getDelegate());
  private static final TypeArg TYPE_ARG_1 = new TypeArg(o1 -> io.vertx.rxjava.sqlclient.Row.newInstance((io.vertx.sqlclient.Row)o1), o1 -> o1.getDelegate());
  private static final TypeArg TYPE_ARG_2 = new TypeArg(o1 -> io.vertx.rxjava.sqlclient.Row.newInstance((io.vertx.sqlclient.Row)o1), o1 -> o1.getDelegate());
  /**
   * Create a prepared query for this statement.
   * @return the prepared query
   */
  public io.vertx.rxjava.sqlclient.PreparedQuery> query() { 
    io.vertx.rxjava.sqlclient.PreparedQuery> ret = io.vertx.rxjava.sqlclient.PreparedQuery.newInstance((io.vertx.sqlclient.PreparedQuery)delegate.query(), TYPE_ARG_0);
    return ret;
  }
  /**
   * Like {@link io.vertx.rxjava.sqlclient.PreparedStatement#cursor} but with empty arguments.
   * @return 
   */
  public io.vertx.rxjava.sqlclient.Cursor cursor() { 
    io.vertx.rxjava.sqlclient.Cursor ret = io.vertx.rxjava.sqlclient.Cursor.newInstance((io.vertx.sqlclient.Cursor)delegate.cursor());
    return ret;
  }
  /**
   * Create a cursor with the provided arguments.
   * @param args the list of arguments
   * @return the query
   */
  public io.vertx.rxjava.sqlclient.Cursor cursor(io.vertx.rxjava.sqlclient.Tuple args) { 
    io.vertx.rxjava.sqlclient.Cursor ret = io.vertx.rxjava.sqlclient.Cursor.newInstance((io.vertx.sqlclient.Cursor)delegate.cursor(args.getDelegate()));
    return ret;
  }
  /**
   * Like {@link io.vertx.rxjava.sqlclient.PreparedStatement#createStream} but with empty arguments.
   * @param fetch 
   * @return 
   */
  public io.vertx.rxjava.sqlclient.RowStream createStream(int fetch) { 
    io.vertx.rxjava.sqlclient.RowStream ret = io.vertx.rxjava.sqlclient.RowStream.newInstance((io.vertx.sqlclient.RowStream)delegate.createStream(fetch), TYPE_ARG_1);
    return ret;
  }
  /**
   * Execute the prepared query with a cursor and createStream the result. The createStream opens a cursor
   * with a fetch size to fetch the results.
   * 
   * Note: this requires to be in a transaction, since cursors require it.
   * @param fetch the cursor fetch size
   * @param args the prepared query arguments
   * @return the createStream
   */
  public io.vertx.rxjava.sqlclient.RowStream createStream(int fetch, io.vertx.rxjava.sqlclient.Tuple args) { 
    io.vertx.rxjava.sqlclient.RowStream ret = io.vertx.rxjava.sqlclient.RowStream.newInstance((io.vertx.sqlclient.RowStream)delegate.createStream(fetch, args.getDelegate()), TYPE_ARG_2);
    return ret;
  }
  /**
   * Like {@link io.vertx.rxjava.sqlclient.PreparedStatement#close} but notifies the completionHandler when it's closed.
   * @param completionHandler 
   */
  public void close(io.vertx.core.Handler> completionHandler) { 
    delegate.close(completionHandler);
  }
  /**
   * Like {@link io.vertx.rxjava.sqlclient.PreparedStatement#close} but notifies the completionHandler when it's closed.
   */
  public void close() {
    close(ar -> { });
  }
    /**
   * Like {@link io.vertx.rxjava.sqlclient.PreparedStatement#close} but notifies the completionHandler when it's closed.
   * @return 
   */
  public rx.Single rxClose() { 
    return Single.create(new SingleOnSubscribeAdapter<>(fut -> {
      close(fut);
    }));
  }
  public static PreparedStatement newInstance(io.vertx.sqlclient.PreparedStatement arg) {
    return arg != null ? new PreparedStatement(arg) : null;
  }
}
                    © 2015 - 2025 Weber Informatics LLC | Privacy Policy