|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.InputStream
java.io.FilterInputStream
java.io.BufferedInputStream
com.aragost.javahg.internals.HgInputStream
public class HgInputStream
An InputStream that has some methods that make it convenient for JavaHg to read the stdout from the command server.
Field Summary |
---|
Fields inherited from class java.io.BufferedInputStream |
---|
buf, count, marklimit, markpos, pos |
Fields inherited from class java.io.FilterInputStream |
---|
in |
Constructor Summary | |
---|---|
HgInputStream(InputStream in,
CharsetDecoder textDecoder)
|
Method Summary | |
---|---|
void |
consumeAll()
Read until EOF and discard the bytes read |
DateTime |
dateTimeUpTo(int stopByte)
Read a Mercurial date from the stream, stopping when a fixed byte is met. |
int |
decimalIntUpTo(int stop)
Read a non-negative integer from the stream until a fixed byte is found. |
boolean |
find(byte[] bytes)
Search for the specified bytes in the stream. |
boolean |
find(int b)
Read from stream until the specified byte is read. |
boolean |
isEof()
|
boolean |
match(byte[] bytes)
Look for a fixed set of bytes in the stream. |
boolean |
match(int b)
Look for a fixed byte in the stream. |
void |
mustMatch(byte[] bytes)
Verifies that the next bytes in the stream matches the specified bytes. |
void |
mustMatch(int b)
Verifies that the next byte in the stream matches the specified byte. |
byte[] |
next(int length)
Get the next length bytes from the stream. |
String |
nextAsText(int length)
Get the next length bytes from the stream, and return
it as a String |
int |
peek()
Return the next byte from the stream without forwarding the position. |
Integer |
readDecimal()
Read a non-negative integer from the stream. |
int |
revisionUpTo(int stop)
Read a revision number from the stream until a fixed byte is found. |
String |
textUpTo(byte[] end)
Read from the stream until end is found, return the
read portion as a String. |
String |
textUpTo(int b)
Read from the stream until the byte b is found, return
the read portion as a String. |
String |
toString()
|
byte[] |
upTo(byte[] stop)
Read from the stream until a fixed set of bytes are found. |
byte[] |
upTo(int stop)
Read from the stream until a fixed byte is found. |
Methods inherited from class java.io.BufferedInputStream |
---|
available, close, mark, markSupported, read, read, reset, skip |
Methods inherited from class java.io.FilterInputStream |
---|
read |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public HgInputStream(InputStream in, CharsetDecoder textDecoder)
in
- the byte stream.textDecoder
- the decoder used when Strings are extracted from the
byte stream.Method Detail |
---|
public int peek() throws IOException
IOException
public boolean isEof() throws IOException
IOException
public byte[] next(int length) throws IOException
length
bytes from the stream.
length
- the number of bytes to read.
null
if EOF is reached before
all the bytes have been read.
IOException
public String nextAsText(int length) throws IOException
length
bytes from the stream, and return
it as a String
length
-
IOException
public boolean match(byte[] bytes) throws IOException
bytes
- the bytes to look for
IOException
public boolean match(int b) throws IOException
b
- the byte to look for.
IOException
public void mustMatch(byte[] bytes) throws IOException, UnexpectedCommandOutputException
bytes
-
IOException
UnexpectedCommandOutputException
- if the stream doesn't match the specified bytespublic void mustMatch(int b) throws IOException, UnexpectedCommandOutputException
b
- the next byte
IOException
UnexpectedCommandOutputException
- if the stream doesn't match the specified bytespublic byte[] upTo(byte[] stop) throws IOException
stop
- the bytes to look for.
IOException
public byte[] upTo(int stop) throws IOException
stop
- the byte to look for.
IOException
public boolean find(byte[] bytes) throws IOException
bytes
-
IOException
public boolean find(int b) throws IOException
b
-
IOException
public int decimalIntUpTo(int stop) throws IOException
stop
- the byte to look for.
IOException
public Integer readDecimal() throws IOException
IOException
public int revisionUpTo(int stop) throws IOException
Initial spaces in the stream is skipped until a '-' or a digit is found.
stop
- the byte to look for.
IOException
public DateTime dateTimeUpTo(int stopByte) throws IOException
stopByte
- the stop byte
IOException
public String textUpTo(byte[] end) throws IOException
end
is found, return the
read portion as a String. The current position is left after
the end
marker.
end
- the stop marker.
IOException
public String textUpTo(int b) throws IOException
b
is found, return
the read portion as a String. The current position is left
after the b
marker.
b
- the stop marker.
IOException
public void consumeAll() throws IOException
IOException
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |