Package org.apache.tomcat.util.buf
Class CharChunk
java.lang.Object
org.apache.tomcat.util.buf.AbstractChunk
org.apache.tomcat.util.buf.CharChunk
- All Implemented Interfaces:
Serializable
,CharSequence
,Cloneable
Utilities to manipulate char chunks. While String is the easiest way to manipulate chars ( search, substrings, etc),
it is known to not be the most efficient solution - Strings are designed as immutable and secure objects.
- Author:
- dac@sun.com, James Todd [gonzo@sun.com], Costin Manolache, Remy Maucherat
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Input interface, used when the buffer is empty.static interface
When we need more space we'll either grow the buffer ( up to the limit ) or send it to a channel. -
Field Summary
Fields inherited from class org.apache.tomcat.util.buf.AbstractChunk
ARRAY_MAX_SIZE, end, hasHashCode, isSet, sm, start
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
allocate
(int initial, int limit) void
append
(char c) void
append
(char[] src, int off, int len) Add data to the buffer.void
Append a string to the buffer.void
Append a string to the buffer.void
char
charAt
(int index) clone()
boolean
boolean
equals
(char[] b2, int off2, int len2) boolean
boolean
Compares the message bytes to the specified String object.boolean
boolean
Compares the message bytes to the specified String object.void
Send the buffer to the sink.char[]
protected int
getBufferElement
(int index) char[]
getChars()
int
indexOf
(char c) static int
indexOf
(char[] chars, int start, int end, char s) Returns the first instance of the given character in the given char array between the specified start and end.int
indexOf
(char c, int starting) Returns the first instance of the given character in this CharChunk starting at the specified char.int
length()
void
makeSpace
(int count) Make space for len chars.void
When the buffer is empty, read the data from the input channel.void
When the buffer is full, write the data to the output channel.void
setChars
(char[] c, int off, int len) Sets the buffer to the specified subarray of characters.void
setOptimizedWrite
(boolean optimizedWrite) Deprecated.Unused code.boolean
startsWith
(String s) boolean
startsWithIgnoreCase
(String s, int pos) Returns true if the buffer starts with the specified string.subSequence
(int start, int end) int
Deprecated.int
substract
(char[] dest, int off, int len) Deprecated.int
subtract()
int
subtract
(char[] dest, int off, int len) toString()
Methods inherited from class org.apache.tomcat.util.buf.AbstractChunk
getEnd, getLength, getLimit, getLimitInternal, getOffset, getStart, hash, hashCode, indexOf, isNull, recycle, setEnd, setLimit, setOffset, setStart
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.CharSequence
chars, codePoints, isEmpty
-
Constructor Details
-
CharChunk
public CharChunk()Creates a new, uninitialized CharChunk object. -
CharChunk
public CharChunk(int initial)
-
-
Method Details
-
clone
- Overrides:
clone
in classObject
- Throws:
CloneNotSupportedException
-
allocate
public void allocate(int initial, int limit) -
setChars
public void setChars(char[] c, int off, int len) Sets the buffer to the specified subarray of characters.- Parameters:
c
- the charactersoff
- the start offset of the characterslen
- the length of the characters
-
getChars
public char[] getChars()- Returns:
- the buffer.
-
getBuffer
public char[] getBuffer()- Returns:
- the buffer.
-
setCharInputChannel
When the buffer is empty, read the data from the input channel.- Parameters:
in
- The input channel
-
setCharOutputChannel
When the buffer is full, write the data to the output channel. Also used when large amount of data is appended. If not set, the buffer will grow to the limit.- Parameters:
out
- The output channel
-
append
- Throws:
IOException
-
append
- Throws:
IOException
-
append
Add data to the buffer.- Parameters:
src
- Char arrayoff
- Offsetlen
- Length- Throws:
IOException
- Writing overflow data to the output channel failed
-
append
Append a string to the buffer.- Parameters:
s
- The string- Throws:
IOException
- Writing overflow data to the output channel failed
-
append
Append a string to the buffer.- Parameters:
s
- The stringoff
- Offsetlen
- Length- Throws:
IOException
- Writing overflow data to the output channel failed
-
substract
Deprecated.- Throws:
IOException
-
subtract
- Throws:
IOException
-
substract
Deprecated.- Throws:
IOException
-
subtract
- Throws:
IOException
-
flushBuffer
Send the buffer to the sink. Called by append() when the limit is reached. You can also call it explicitly to force the data to be written.- Throws:
IOException
- Writing overflow data to the output channel failed
-
makeSpace
public void makeSpace(int count) Make space for len chars. If len is small, allocate a reserve space too. Never grow bigger than the limit orAbstractChunk.ARRAY_MAX_SIZE
.- Parameters:
count
- The size
-
toString
- Specified by:
toString
in interfaceCharSequence
- Overrides:
toString
in classObject
-
toStringInternal
-
equals
-
equals
Compares the message bytes to the specified String object.- Parameters:
s
- the String to compare- Returns:
true
if the comparison succeeded,false
otherwise
-
equalsIgnoreCase
Compares the message bytes to the specified String object.- Parameters:
s
- the String to compare- Returns:
true
if the comparison succeeded,false
otherwise
-
equals
-
equals
public boolean equals(char[] b2, int off2, int len2) -
startsWith
- Parameters:
s
- The string- Returns:
true
if the message bytes starts with the specified string.
-
startsWithIgnoreCase
Returns true if the buffer starts with the specified string.- Parameters:
s
- the stringpos
- The position- Returns:
true
if the start matches
-
endsWith
- Parameters:
s
- The string- Returns:
true
if the message bytes end with the specified string.
-
getBufferElement
protected int getBufferElement(int index) - Specified by:
getBufferElement
in classAbstractChunk
- Parameters:
index
- the element location in the buffer- Returns:
- the element
-
indexOf
public int indexOf(char c) -
indexOf
public int indexOf(char c, int starting) Returns the first instance of the given character in this CharChunk starting at the specified char. If the character is not found, -1 is returned.- Parameters:
c
- The characterstarting
- The start position- Returns:
- The position of the first instance of the character or -1 if the character is not found.
-
indexOf
public static int indexOf(char[] chars, int start, int end, char s) Returns the first instance of the given character in the given char array between the specified start and end.- Parameters:
chars
- The array to searchstart
- The point to start searching from in the arrayend
- The point to stop searching in the arrays
- The character to search for- Returns:
- The position of the first instance of the character or -1 if the character is not found.
-
charAt
public char charAt(int index) - Specified by:
charAt
in interfaceCharSequence
-
subSequence
- Specified by:
subSequence
in interfaceCharSequence
-
length
public int length()- Specified by:
length
in interfaceCharSequence
-
setOptimizedWrite
Deprecated.Unused code. This is now a NO-OP and will be removed without replacement in Tomcat 10.NO-OP.- Parameters:
optimizedWrite
- Ignored
-