Top Inners Fields Constructors Methods
sun.net.httpserver

pack-priv Class Request

extends Object
Class Inheritance
Imports
java.nio.*, java.io.*, java.nio.channels.*, java.util.Objects, com.sun.net.httpserver.*

Nested and Inner Type Summary

Modifier and TypeClass and Description
pack-priv static class
Request.ReadStream

Implements blocking reading semantics on top of a non-blocking channel

pack-priv static class

Field Summary

Modifier and TypeField and Description
pack-priv char[]
pack-priv static final int
private SocketChannel
pack-priv static final byte
pack-priv Headers
private InputStream
pack-priv static final byte
pack-priv StringBuffer
private OutputStream
pack-priv int
private String

Constructor Summary

AccessConstructor and Description
pack-priv
Request(InputStream rawInputStream, OutputStream rawout)

Method Summary

Modifier and TypeMethod and Description
private void
consume(int c)

pack-priv Headers
public InputStream
public OutputStream
public String
readLine()

read a line from the stream returning as a String.

public String
requestLine()

returns the request line (first line of a request)

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

bufback to summary
pack-priv char[] buf
BUF_LENback to summary
pack-priv static final int BUF_LEN
chanback to summary
private SocketChannel chan
CRback to summary
pack-priv static final byte CR
hdrsback to summary
pack-priv Headers hdrs
isback to summary
private InputStream is
LFback to summary
pack-priv static final byte LF
lineBufback to summary
pack-priv StringBuffer lineBuf
osback to summary
private OutputStream os
posback to summary
pack-priv int pos
startLineback to summary
private String startLine

Constructor Detail

Requestback to summary
pack-priv Request(InputStream rawInputStream, OutputStream rawout) throws IOException

Method Detail

consumeback to summary
private void consume(int c)
headersback to summary
pack-priv Headers headers() throws IOException
Annotations
@SuppressWarnings:fallthrough
inputStreamback to summary
public InputStream inputStream()
outputStreamback to summary
public OutputStream outputStream()
readLineback to summary
public String readLine() throws IOException

read a line from the stream returning as a String. Not used for reading headers.

requestLineback to summary
public String requestLine()

returns the request line (first line of a request)

sun.net.httpserver back to summary

pack-priv Class Request.ReadStream

extends InputStream
Class Inheritance

Implements blocking reading semantics on top of a non-blocking channel

Field Summary

Modifier and TypeField and Description
pack-priv static final int
pack-priv ByteBuffer
pack-priv SocketChannel
private boolean
private boolean
pack-priv ByteBuffer
pack-priv boolean
pack-priv byte[]
pack-priv int
pack-priv static long
pack-priv boolean
pack-priv ServerImpl

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public synchronized int
available()

Overrides java.io.InputStream.available.

Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking, which may be 0, or 0 when end of stream is detected.
public void
close()

Overrides java.io.InputStream.close.

Implements java.io.Closeable.close.

Closes this input stream and releases any system resources associated with the stream.
public synchronized void
mark(int
the maximum limit of bytes that can be read before the mark position becomes invalid.
readlimit
)

Overrides java.io.InputStream.mark.

Marks the current position in this input stream.
public boolean
markSupported()

Overrides java.io.InputStream.markSupported.

Tests if this input stream supports the mark and reset methods.
public synchronized int
read(byte[]
the buffer into which the data is read.
b
)

Overrides java.io.InputStream.read.

Reads some number of bytes from the input stream and stores them into the buffer array b.
public synchronized int
read()

Implements abstract java.io.InputStream.read.

Reads the next byte of data from the input stream.
public synchronized int
read(byte[]
the buffer into which the data is read.
b
,
int
the start offset in array b at which the data is written.
off
,
int
the maximum number of bytes to read.
srclen
)

Overrides java.io.InputStream.read.

Reads up to len bytes of data from the input stream into an array of bytes.
public synchronized void
reset()

Overrides java.io.InputStream.reset.

Repositions this stream to the position at the time the mark method was last called on this input stream.
Inherited from java.io.InputStream:
nullInputStreamreadAllBytesreadNBytesreadNBytesskipskipNBytestransferTo

Field Detail

BUFSIZEback to summary
pack-priv static final int BUFSIZE
chanbufback to summary
pack-priv ByteBuffer chanbuf
channelback to summary
pack-priv SocketChannel channel
closedback to summary
private boolean closed
eofback to summary
private boolean eof
markBufback to summary
pack-priv ByteBuffer markBuf
markedback to summary
pack-priv boolean marked
oneback to summary
pack-priv byte[] one
readlimitback to summary
pack-priv int readlimit
readTimeoutback to summary
pack-priv static long readTimeout
resetback to summary
pack-priv boolean reset
serverback to summary
pack-priv ServerImpl server

Constructor Detail

ReadStreamback to summary
public ReadStream(ServerImpl server, SocketChannel chan) throws IOException

Method Detail

availableback to summary
public synchronized int available() throws IOException

Overrides java.io.InputStream.available.

Doc from java.io.InputStream.available.

Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking, which may be 0, or 0 when end of stream is detected. The read might be on the same thread or another thread. A single read or skip of this many bytes will not block, but may read or skip fewer bytes.

Note that while some implementations of InputStream will return the total number of bytes in the stream, many will not. It is never correct to use the return value of this method to allocate a buffer intended to hold all data in this stream.

A subclass's implementation of this method may choose to throw an IOException if this input stream has been closed by invoking the close() method.

Returns:int

an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking or 0 when it reaches the end of the input stream.

Exceptions
IOException:
if an I/O error occurs.
closeback to summary
public void close() throws IOException

Overrides java.io.InputStream.close.

Implements java.io.Closeable.close.

Doc from java.io.InputStream.close.

Closes this input stream and releases any system resources associated with the stream.

Exceptions
IOException:
if an I/O error occurs.
markback to summary
public synchronized void mark(int readlimit)

Overrides java.io.InputStream.mark.

Doc from java.io.InputStream.mark.

Marks the current position in this input stream. A subsequent call to the reset method repositions this stream at the last marked position so that subsequent reads re-read the same bytes.

The readlimit arguments tells this input stream to allow that many bytes to be read before the mark position gets invalidated.

The general contract of mark is that, if the method markSupported returns true, the stream somehow remembers all the bytes read after the call to mark and stands ready to supply those same bytes again if and whenever the method reset is called. However, the stream is not required to remember any data at all if more than readlimit bytes are read from the stream before reset is called.

Marking a closed stream should not have any effect on the stream.

Parameters
readlimit:int

the maximum limit of bytes that can be read before the mark position becomes invalid.

markSupportedback to summary
public boolean markSupported()

Overrides java.io.InputStream.markSupported.

Doc from java.io.InputStream.markSupported.

Tests if this input stream supports the mark and reset methods. Whether or not mark and reset are supported is an invariant property of a particular input stream instance.

Returns:boolean

true if this stream instance supports the mark and reset methods; false otherwise.

readback to summary
public synchronized int read(byte[] b) throws IOException

Overrides java.io.InputStream.read.

Doc from java.io.InputStream.read.

Reads some number of bytes from the input stream and stores them into the buffer array b. The number of bytes actually read is returned as an integer. This method blocks until input data is available, end of file is detected, or an exception is thrown.

If the length of b is zero, then no bytes are read and 0 is returned; otherwise, there is an attempt to read at least one byte. If no byte is available because the stream is at the end of the file, the value -1 is returned; otherwise, at least one byte is read and stored into b.

The first byte read is stored into element b[0], the next one into b[1], and so on. The number of bytes read is, at most, equal to the length of b. Let k be the number of bytes actually read; these bytes will be stored in elements b[0] through b[k-1], leaving elements b[k] through b[b.length-1] unaffected.

Parameters
b:byte[]

the buffer into which the data is read.

Returns:int

the total number of bytes read into the buffer, or -1 if there is no more data because the end of the stream has been reached.

Exceptions
IOException:
If the first byte cannot be read for any reason other than the end of the file, if the input stream has been closed, or if some other I/O error occurs.
readback to summary
public synchronized int read() throws IOException

Implements abstract java.io.InputStream.read.

Doc from java.io.InputStream.read.

Reads the next byte of data from the input stream. The value byte is returned as an int in the range 0 to 255. If no byte is available because the end of the stream has been reached, the value -1 is returned. This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.

Returns:int

the next byte of data, or -1 if the end of the stream is reached.

Exceptions
IOException:
if an I/O error occurs.
readback to summary
public synchronized int read(byte[] b, int off, int srclen) throws IOException

Overrides java.io.InputStream.read.

Doc from java.io.InputStream.read.

Reads up to len bytes of data from the input stream into an array of bytes. An attempt is made to read as many as len bytes, but a smaller number may be read. The number of bytes actually read is returned as an integer.

This method blocks until input data is available, end of file is detected, or an exception is thrown.

If len is zero, then no bytes are read and 0 is returned; otherwise, there is an attempt to read at least one byte. If no byte is available because the stream is at end of file, the value -1 is returned; otherwise, at least one byte is read and stored into b.

The first byte read is stored into element b[off], the next one into b[off+1], and so on. The number of bytes read is, at most, equal to len. Let k be the number of bytes actually read; these bytes will be stored in elements b[off] through b[off+k-1], leaving elements b[off+k] through b[off+len-1] unaffected.

In every case, elements b[0] through b[off-1] and elements b[off+len] through b[b.length-1] are unaffected.

Parameters
b:byte[]

the buffer into which the data is read.

off:int

the start offset in array b at which the data is written.

srclen:int

the maximum number of bytes to read.

Returns:int

the total number of bytes read into the buffer, or -1 if there is no more data because the end of the stream has been reached.

Exceptions
IOException:
If the first byte cannot be read for any reason other than end of file, or if the input stream has been closed, or if some other I/O error occurs.
resetback to summary
public synchronized void reset() throws IOException

Overrides java.io.InputStream.reset.

Doc from java.io.InputStream.reset.

Repositions this stream to the position at the time the mark method was last called on this input stream.

The general contract of reset is:

  • If the method markSupported returns true, then:
    • If the method mark has not been called since the stream was created, or the number of bytes read from the stream since mark was last called is larger than the argument to mark at that last call, then an IOException might be thrown.
    • If such an IOException is not thrown, then the stream is reset to a state such that all the bytes read since the most recent call to mark (or since the start of the file, if mark has not been called) will be resupplied to subsequent callers of the read method, followed by any bytes that otherwise would have been the next input data as of the time of the call to reset.
  • If the method markSupported returns false, then:
    • The call to reset may throw an IOException.
    • If an IOException is not thrown, then the stream is reset to a fixed state that depends on the particular type of the input stream and how it was created. The bytes that will be supplied to subsequent callers of the read method depend on the particular type of the input stream.
Exceptions
IOException:
if this stream has not been marked or if the mark has been invalidated.
sun.net.httpserver back to summary

pack-priv Class Request.WriteStream

extends OutputStream
Class Inheritance

Field Summary

Modifier and TypeField and Description
pack-priv ByteBuffer
pack-priv SocketChannel
pack-priv boolean
pack-priv SelectionKey
pack-priv byte[]
pack-priv ServerImpl

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public void
close()

Overrides java.io.OutputStream.close.

Implements java.io.Closeable.close.

Closes this output stream and releases any system resources associated with this stream.
public synchronized void
write(int
the byte.
b
)

Implements abstract java.io.OutputStream.write.

Writes the specified byte to this output stream.
public synchronized void
write(byte[]
the data.
b
)

Overrides java.io.OutputStream.write.

Writes b.length bytes from the specified byte array to this output stream.
public synchronized void
write(byte[]
the data.
b
,
int
the start offset in the data.
off
,
int
the number of bytes to write.
len
)

Overrides java.io.OutputStream.write.

Writes len bytes from the specified byte array starting at offset off to this output stream.
Inherited from java.io.OutputStream:
flushnullOutputStream

Field Detail

bufback to summary
pack-priv ByteBuffer buf
channelback to summary
pack-priv SocketChannel channel
closedback to summary
pack-priv boolean closed
keyback to summary
pack-priv SelectionKey key
oneback to summary
pack-priv byte[] one
serverback to summary
pack-priv ServerImpl server

Constructor Detail

WriteStreamback to summary
public WriteStream(ServerImpl server, SocketChannel channel) throws IOException

Method Detail

closeback to summary
public void close() throws IOException

Overrides java.io.OutputStream.close.

Implements java.io.Closeable.close.

Doc from java.io.OutputStream.close.

Closes this output stream and releases any system resources associated with this stream. The general contract of close is that it closes the output stream. A closed stream cannot perform output operations and cannot be reopened.

Exceptions
IOException:
if an I/O error occurs.
writeback to summary
public synchronized void write(int b) throws IOException

Implements abstract java.io.OutputStream.write.

Doc from java.io.OutputStream.write.

Writes the specified byte to this output stream. The general contract for write is that one byte is written to the output stream. The byte to be written is the eight low-order bits of the argument b. The 24 high-order bits of b are ignored.

Parameters
b:int

the byte.

Exceptions
IOException:
if an I/O error occurs. In particular, an IOException may be thrown if the output stream has been closed.
writeback to summary
public synchronized void write(byte[] b) throws IOException

Overrides java.io.OutputStream.write.

Doc from java.io.OutputStream.write.

Writes b.length bytes from the specified byte array to this output stream. The general contract for write(b) is that it should have exactly the same effect as the call write(b, 0, b.length).

Parameters
b:byte[]

the data.

Exceptions
IOException:
if an I/O error occurs.
writeback to summary
public synchronized void write(byte[] b, int off, int len) throws IOException

Overrides java.io.OutputStream.write.

Doc from java.io.OutputStream.write.

Writes len bytes from the specified byte array starting at offset off to this output stream. The general contract for write(b, off, len) is that some of the bytes in the array b are written to the output stream in order; element b[off] is the first byte written and b[off+len-1] is the last byte written by this operation.

If b is null, a NullPointerException is thrown.

If off is negative, or len is negative, or off+len is greater than the length of the array b, then an IndexOutOfBoundsException is thrown.

Parameters
b:byte[]

the data.

off:int

the start offset in the data.

len:int

the number of bytes to write.

Exceptions
IOException:
if an I/O error occurs. In particular, an IOException is thrown if the output stream is closed.