Blob.java 5.83 KB
Newer Older
Tom Tromey committed
1
/* Blob.java -- Access a SQL Binary Large OBject.
2
   Copyright (C) 1999, 2000, 2002, 2006 Free Software Foundation, Inc.
Tom Tromey committed
3 4 5 6 7 8 9

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
10

Tom Tromey committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package java.sql;

import java.io.InputStream;
import java.io.OutputStream;

/**
44 45
 * This interface specified methods for accessing a SQL BLOB (Binary Large
 * OBject) type.
46
 *
Tom Tromey committed
47 48 49
 * @author Aaron M. Renn (arenn@urbanophile.com)
 * @since 1.2
 */
50
public interface Blob
Tom Tromey committed
51 52
{
  /**
53
   * This method returns the number of bytes in this <code>Blob</code>.
54
   *
55
   * @return The number of bytes in this <code>Blob</code>.
Tom Tromey committed
56 57 58 59 60
   * @exception SQLException If an error occurs.
   */
  long length() throws SQLException;

  /**
61 62
   * This method returns up to the requested bytes of this <code>Blob</code>
   * as a <code>byte</code> array.
63
   *
64 65 66 67
   * @param start The index into this <code>Blob</code> to start returning
   *              bytes from.
   * @param count The requested number of bytes to return.
   * @return The requested bytes from this <code>Blob</code>.
Tom Tromey committed
68 69
   * @exception SQLException If an error occurs.
   */
70
  byte[] getBytes(long start, int count) throws SQLException;
Tom Tromey committed
71 72

  /**
73 74
   * This method returns a stream that will read the bytes of this
   * <code>Blob</code>.
75
   *
76
   * @return A stream that will read the bytes of this <code>Blob</code>.
Tom Tromey committed
77 78 79 80 81
   * @exception SQLException If an error occurs.
   */
  InputStream getBinaryStream() throws SQLException;

  /**
82 83 84
   * This method returns the index into this <code>Blob</code> at which the
   * first instance of the specified bytes occur. The searching starts at the
   * specified index into this <code>Blob</code>.
85
   *
Tom Tromey committed
86
   * @param pattern The byte pattern to search for.
87 88
   * @param start The index into this <code>Blob</code> to start searching for
   *              the pattern.
Tom Tromey committed
89 90 91 92 93 94 95
   * @return The offset at which the pattern is first found, or -1 if the
   *         pattern is not found.
   * @exception SQLException If an error occurs.
   */
  long position(byte[] pattern, long start) throws SQLException;

  /**
96 97 98 99
   * This method returns the index into this <code>Blob</code> at which the
   * first instance of the specified pattern occurs. The searching starts at the
   * specified index into this <code>Blob</code>. The bytes in the specified
   * <code>Blob</code> are used as the search pattern.
100
   *
Tom Tromey committed
101
   * @param pattern The <code>Blob</code> containing the byte pattern to
102 103 104
   *                search for.
   * @param start The index into this <code>Blob</code> to start searching for
   *              the pattern.
Tom Tromey committed
105 106 107 108 109 110 111
   * @return The offset at which the pattern is first found, or -1 if the
   *         pattern is not found.
   * @exception SQLException If an error occurs.
   */
  long position(Blob pattern, long start) throws SQLException;

  /**
112 113
   * Writes the specified data into this <code>Blob</code>, starting at the
   * specified index.
114
   *
115 116
   * @param start The index at which the writing starts.
   * @param bytes The data to write.
Tom Tromey committed
117 118 119
   * @exception SQLException If an error occurs.
   * @since 1.4
   */
120
  int setBytes(long start, byte[] bytes) throws SQLException;
Tom Tromey committed
121 122

  /**
123 124
   * Writes a portion of the specified data into this <code>Blob</code>,
   * starting at the specified index.
125
   *
126 127 128 129 130
   * @param startWrite The index into this <code>Blob</code> at which writing
   *                   starts.
   * @param bytes The data to write a portion of.
   * @param startRead The offset into the data where the portion to copy starts.
   * @param count The number of bytes to write.
Tom Tromey committed
131 132 133
   * @exception SQLException If an error occurs.
   * @since 1.4
   */
134 135
  int setBytes(long startWrite, byte[] bytes, int startRead, int count)
      throws SQLException;
Tom Tromey committed
136 137

  /**
138 139
   * Returns a binary stream that writes into this <code>Blob</code>,
   * starting at the specified index.
140
   *
141 142
   * @param start The index at which the writing starts.
   * @return A binary stream to write into this <code>Blob</code>.
Tom Tromey committed
143 144 145
   * @exception SQLException If an error occurs.
   * @since 1.4
   */
146
  OutputStream setBinaryStream(long start) throws SQLException;
Tom Tromey committed
147 148

  /**
149 150
   * Truncates this <code>Blob</code> to be at most the specified number of
   * bytes long.
151
   *
152
   * @param count The length this <code>Blob</code> is truncated to.
Tom Tromey committed
153 154 155
   * @exception SQLException If an error occurs.
   * @since 1.4
   */
156
  void truncate(long count) throws SQLException;
Tom Tromey committed
157
}