-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ISSUE-1773 Tokeniser: recycle string builders too
- Loading branch information
Showing
3 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package org.jsoup.helper; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class StringBuilderRecycler { | ||
protected final ArrayList<StringBuilder> stringBuilders = new ArrayList<>(); | ||
|
||
public StringBuilder get(int minSize) { | ||
if (!stringBuilders.isEmpty()) { | ||
StringBuilder stringBuilder = stringBuilders.remove(stringBuilders.size() - 1); | ||
// Too small string builders are thrown away | ||
if (stringBuilder.capacity() >= minSize) { | ||
stringBuilder.setLength(0); | ||
return stringBuilder; | ||
} | ||
} | ||
return new StringBuilder(minSize); | ||
} | ||
|
||
public void releaseByteBuffer(StringBuilder stringBuilder) { | ||
stringBuilders.add(stringBuilder); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters