Skip to content

Commit 8910b99

Browse files
author
Riyad Kalla
committed
Fixed isStartTag always true bug.
Removed use of enhanced for-loop in code.
1 parent a7c67aa commit 8910b99

File tree

4 files changed

+30
-18
lines changed

4 files changed

+30
-18
lines changed

README

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1-
Simple Java XML Parser (for any Java platform, including Android!)
1+
Simple Java XML Parser (SJXP) for any Java Platform including Android.
22
http://www.thebuzzmedia.com/software/simple-java-xml-parser-sjxp/
33

44

55
Changelog
66
---------
7+
2.1
8+
* Fixed bug where isStartTag was always true for TAG type rules
9+
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/6
10+
11+
* Removed use of enhanced for-loop in code base because it caused a large
12+
number of AbstractList$Itr classes to be created for no great reason.
13+
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/5
14+
715
2.0
816
* MAJOR PERFORMANCE IMPROVEMENT
917

@@ -19,14 +27,12 @@ Changelog
1927

2028
Memory usage and performance are increased drastically in this release on all
2129
platforms (especially good for Android).
22-
2330
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/4
2431

2532
* New IRule.Type.TAG type is defined which allows rules to be called when
2633
START and END tag events occur without the overhead of parsing data from the
2734
underlying XML stream. This is valuable when you want to examine (e.g. count
2835
elements) the XML content without actually parsing data out of it.
29-
3036
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/3
3137

3238
* Support for passing through a user-object from XMLParser to the IRule
@@ -43,7 +49,6 @@ Changelog
4349
Then in the IRule handler code your "user object" object is the passed-through
4450
store object that you can use to store the parsed value. This is just an
4551
example, it can be anything.
46-
4752
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/1
4853

4954
1.1

build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</path>
1212

1313
<property name="version.major" value="2" />
14-
<property name="version.minor" value="0" />
14+
<property name="version.minor" value="1" />
1515

1616
<property name="name.file" value="sjxp" />
1717
<property name="name.file.javadoc" value="${name.file}-${version.major}.${version.minor}-javadoc.jar" />

src/main/java/com/thebuzzmedia/sjxp/XMLParser.java

+19-13
Original file line numberDiff line numberDiff line change
@@ -471,18 +471,16 @@ protected void initRules(IRule<T>... rules) {
471471
int optSize = (rules.length > 64 ? rules.length * 2 : 64);
472472

473473
// init the rule maps
474-
// tagRuleMap = new HashMap<String, List<IRule<T>>>(optSize);
475-
// attrRuleMap = new HashMap<String, List<IRule<T>>>(optSize);
476-
// charRuleMap = new HashMap<String, List<IRule<T>>>(optSize);
477-
478474
tagRuleMap = new HashMap<Integer, List<IRule<T>>>(optSize);
479475
attrRuleMap = new HashMap<Integer, List<IRule<T>>>(optSize);
480476
charRuleMap = new HashMap<Integer, List<IRule<T>>>(optSize);
481477

482478
// init the rules
483479
List<IRule<T>> ruleList = null;
484480

485-
for (IRule<T> rule : rules) {
481+
for (int i = 0, length = rules.length; i < length; i++) {
482+
IRule<T> rule = rules[i];
483+
486484
switch (rule.getType()) {
487485
case TAG:
488486
// Get the rule list for this path
@@ -645,7 +643,9 @@ protected void doStartTag(T userObject) {
645643

646644
// Process the TAG rules
647645
if (tagRuleList != null) {
648-
for (IRule<T> rule : tagRuleList) {
646+
for (int i = 0, size = tagRuleList.size(); i < size; i++) {
647+
IRule<T> rule = tagRuleList.get(i);
648+
649649
if (DEBUG)
650650
log("\t\tRunning TAG Rule: %s", rule);
651651

@@ -655,7 +655,9 @@ protected void doStartTag(T userObject) {
655655

656656
// Process the ATTR rules
657657
if (attrRuleList != null) {
658-
for (IRule<T> rule : attrRuleList) {
658+
for (int i = 0, size = attrRuleList.size(); i < size; i++) {
659+
IRule<T> rule = attrRuleList.get(i);
660+
659661
if (DEBUG)
660662
log("\t\tRunning ATTR Rule: %s", rule);
661663

@@ -678,8 +680,8 @@ protected void doStartTag(T userObject) {
678680
* other approach would have been magnitudes more expensive both
679681
* in memory and CPU requirements than doing a simple substring.
680682
*/
681-
for (int i = 0; i < attrNames.length; i++) {
682-
String attrName = attrNames[i];
683+
for (int j = 0; j < attrNames.length; j++) {
684+
String attrName = attrNames[j];
683685
String localName = null;
684686
String namespaceURI = null;
685687

@@ -718,7 +720,7 @@ protected void doStartTag(T userObject) {
718720
attrName.length());
719721

720722
// Give the parsed attribute value to the matching rule
721-
rule.handleParsedAttribute(this, i,
723+
rule.handleParsedAttribute(this, j,
722724
xpp.getAttributeValue(namespaceURI, localName),
723725
userObject);
724726
}
@@ -758,7 +760,9 @@ protected void doText(T userObject) {
758760
String text = xpp.getText();
759761

760762
// Give the parsed text to all matching IRules for this path
761-
for (IRule<T> rule : ruleList) {
763+
for (int i = 0, size = ruleList.size(); i < size; i++) {
764+
IRule<T> rule = ruleList.get(i);
765+
762766
if (DEBUG)
763767
log("\t\tRunning Rule: %s", rule);
764768

@@ -789,11 +793,13 @@ protected void doEndTag(T userObject) {
789793
log("\t%d TAG rules found for END_TAG...", tagRuleList.size());
790794

791795
// Process the TAG rules
792-
for (IRule<T> rule : tagRuleList) {
796+
for (int i = 0, size = tagRuleList.size(); i < size; i++) {
797+
IRule<T> rule = tagRuleList.get(i);
798+
793799
if (DEBUG)
794800
log("\t\tRunning TAG Rule: %s", rule);
795801

796-
rule.handleTag(this, true, userObject);
802+
rule.handleTag(this, false, userObject);
797803
}
798804
}
799805

src/test/java/com/thebuzzmedia/sjxp/rule/DefaultRuleTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
import static junit.framework.Assert.*;
2323

24+
@SuppressWarnings("rawtypes")
2425
public class DefaultRuleTest {
2526
public static final String PATH_EMPTY = "";
2627
public static final String PATH_SIMPLE = "/library/book";

0 commit comments

Comments
 (0)