Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/parser/SearchParser.java')
-rw-r--r--org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/parser/SearchParser.java84
1 files changed, 84 insertions, 0 deletions
diff --git a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/parser/SearchParser.java b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/parser/SearchParser.java
new file mode 100644
index 000000000..f152f474f
--- /dev/null
+++ b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/parser/SearchParser.java
@@ -0,0 +1,84 @@
+/*******************************************************************************
+ * Copyright (c) 2011 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.help.internal.webapp.parser;
+
+import java.util.Properties;
+
+import org.eclipse.help.internal.webapp.utils.JSonHelper;
+import org.eclipse.help.internal.webapp.utils.XMLHelper;
+import org.xml.sax.Attributes;
+
+public class SearchParser extends ResultParser {
+
+// private ParseElement element;
+ private Properties properties;
+ private String currentTag;
+
+ public SearchParser() {
+ super(JSonHelper.LABEL);
+ }
+
+ public void startElement(String uri,
+ String lname, String name, Attributes attrs) {
+
+ currentTag = name;
+ if (name.equalsIgnoreCase(XMLHelper.ELEMENT_HIT)) {
+
+ properties = new Properties();
+ properties.put(JSonHelper.PROPERTY_NAME, name);
+ for (int i = 0; i < attrs.getLength(); i++) {
+ String qname = attrs.getQName(i);
+ String val = attrs.getValue(i);
+ properties.put(qname, val);
+ }
+
+ String id = "" + items.size(); //$NON-NLS-1$
+ properties.put(JSonHelper.ID, id);
+
+ } else if (name.equalsIgnoreCase(XMLHelper.ELEMENT_CATEGORY)) {
+ for (int i = 0; i < attrs.getLength(); i++) {
+ String qname = attrs.getQName(i);
+ String val = attrs.getValue(i);
+ if (qname.equalsIgnoreCase(XMLHelper.ATTR_HREF))
+ qname = XMLHelper.CATEGORY_HREF;
+ properties.put(qname, val);
+ }
+ }
+ }
+
+ public void characters(char[] ch, int start, int length) {
+
+ if (currentTag.equalsIgnoreCase(XMLHelper.ELEMENT_HIT)
+ || currentTag.equalsIgnoreCase(XMLHelper.ELEMENT_HITS))
+ return;
+
+ if (properties != null)
+ {
+ String content = new String(ch, start, length);
+
+ String existing = (String) properties.get(currentTag);
+ if (existing == null)
+ existing = ""; //$NON-NLS-1$
+
+ content = content.replaceAll("[\\n\\t]", "").trim(); //$NON-NLS-1$ //$NON-NLS-2$
+
+ properties.put(currentTag, existing + content);
+ }
+ }
+
+ public void endElement(String uri, String lname, String name) {
+
+ if (name.equalsIgnoreCase(XMLHelper.ELEMENT_HIT)) {
+ ParseElement element = new ParseElement(properties);
+ items.add(element);
+ }
+ }
+}

Back to the top