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

software.amazon.jdbc.wrapper.NClobWrapper Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * 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 software.amazon.jdbc.wrapper;

import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Writer;
import java.sql.Clob;
import java.sql.NClob;
import java.sql.SQLException;
import org.checkerframework.checker.nullness.qual.NonNull;
import software.amazon.jdbc.ConnectionPluginManager;
import software.amazon.jdbc.util.WrapperUtils;

public class NClobWrapper implements NClob {

  protected NClob nclob;
  protected ConnectionPluginManager pluginManager;

  public NClobWrapper(@NonNull NClob nclob, @NonNull ConnectionPluginManager pluginManager) {
    this.nclob = nclob;
    this.pluginManager = pluginManager;
  }

  @Override
  public long length() throws SQLException {
    return WrapperUtils.executeWithPlugins(
        long.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.length",
        () -> this.nclob.length());
  }

  @Override
  public String getSubString(long pos, int length) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        String.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.getSubString",
        () -> this.nclob.getSubString(pos, length),
        pos,
        length);
  }

  @Override
  public Reader getCharacterStream() throws SQLException {
    return WrapperUtils.executeWithPlugins(
        Reader.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.getCharacterStream",
        () -> this.nclob.getCharacterStream());
  }

  @Override
  public Reader getCharacterStream(long pos, long length) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        Reader.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.getCharacterStream",
        () -> this.nclob.getCharacterStream(pos, length),
        pos,
        length);
  }

  @Override
  public InputStream getAsciiStream() throws SQLException {
    return WrapperUtils.executeWithPlugins(
        InputStream.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.getAsciiStream",
        () -> this.nclob.getAsciiStream());
  }

  @Override
  public long position(String searchStr, long start) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        long.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.position",
        () -> this.nclob.position(searchStr, start),
        searchStr,
        start);
  }

  @Override
  public long position(Clob searchStr, long start) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        long.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.position",
        () -> this.nclob.position(searchStr, start),
        searchStr,
        start);
  }

  @Override
  public int setString(long pos, String str) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        int.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.setString",
        () -> this.nclob.setString(pos, str),
        pos,
        str);
  }

  @Override
  public int setString(long pos, String str, int offset, int len) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        int.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.setString",
        () -> this.nclob.setString(pos, str, offset, len),
        pos,
        str,
        offset,
        len);
  }

  @Override
  public OutputStream setAsciiStream(long pos) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        OutputStream.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.setAsciiStream",
        () -> this.nclob.setAsciiStream(pos),
        pos);
  }

  @Override
  public Writer setCharacterStream(long pos) throws SQLException {
    return WrapperUtils.executeWithPlugins(
        Writer.class,
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.setCharacterStream",
        () -> this.nclob.setCharacterStream(pos),
        pos);
  }

  @Override
  public void truncate(long len) throws SQLException {
    WrapperUtils.runWithPlugins(
        SQLException.class,
        this.pluginManager,
        this.nclob,
        "NClob.truncate",
        () -> this.nclob.truncate(len),
        len);
  }

  @Override
  public void free() throws SQLException {
    WrapperUtils.runWithPlugins(
        SQLException.class, this.pluginManager, this.nclob, "NClob.free", () -> this.nclob.free());
  }

  @Override
  public String toString() {
    return super.toString() + " - " + this.nclob;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy