blob: ba3ac20ed2cb9907e1461bd403e953ff12ab0df1 [file] [log] [blame]
Michael E. Rodriguezd8af66f2005-12-08 20:55:55 +00001/*
2 * Copyright 1999,2005 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package javax.servlet;
18
19import java.io.InputStream;
20import java.io.IOException;
21
22/**
23 *
24 * Provides an input stream for reading binary data from a client
25 * request, including an efficient <code>readLine</code> method
26 * for reading data one line at a time. With some protocols, such
27 * as HTTP POST and PUT, a <code>ServletInputStream</code>
28 * object can be used to read data sent from the client.
29 *
30 * <p>A <code>ServletInputStream</code> object is normally retrieved via
31 * the {@link ServletRequest#getInputStream} method.
32 *
33 *
34 * <p>This is an abstract class that a servlet container implements.
35 * Subclasses of this class
36 * must implement the <code>java.io.InputStream.read()</code> method.
37 *
38 *
39 * @author Various
40 * @version $Version$
41 *
42 * @see ServletRequest
43 *
44 */
45
46public abstract class ServletInputStream extends InputStream {
47
48
49
50 /**
51 * Does nothing, because this is an abstract class.
52 *
53 */
54
55 protected ServletInputStream() { }
56
57
58
59
60 /**
61 *
62 * Reads the input stream, one line at a time. Starting at an
63 * offset, reads bytes into an array, until it reads a certain number
64 * of bytes or reaches a newline character, which it reads into the
65 * array as well.
66 *
67 * <p>This method returns -1 if it reaches the end of the input
68 * stream before reading the maximum number of bytes.
69 *
70 *
71 *
72 * @param b an array of bytes into which data is read
73 *
74 * @param off an integer specifying the character at which
75 * this method begins reading
76 *
77 * @param len an integer specifying the maximum number of
78 * bytes to read
79 *
80 * @return an integer specifying the actual number of bytes
81 * read, or -1 if the end of the stream is reached
82 *
83 * @exception IOException if an input or output exception has occurred
84 *
85 */
86
87 public int readLine(byte[] b, int off, int len) throws IOException {
88
89 if (len <= 0) {
90 return 0;
91 }
92 int count = 0, c;
93
94 while ((c = read()) != -1) {
95 b[off++] = (byte)c;
96 count++;
97 if (c == '\n' || count == len) {
98 break;
99 }
100 }
101 return count > 0 ? count : -1;
102 }
103}
104
105
106