Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eb7a7c4813bd50a809fa71d1c8826793b901e9a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation.
 * 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.equinox.ds.parser;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

/**
 * Base class for element handlers to provide some common behavior.
 * 
 */
abstract class ElementHandler extends DefaultHandler {
	
	protected ParserHandler	root;

	/**
	 * Return the name of the handled element.
	 * 
	 * @return The name of the handled element.
	 */
	protected abstract String getElementName();
	
	protected boolean isSCRNamespace(String uri) {
		return (uri.length() == 0) || uri.equals(ParserConstants.SCR_NAMESPACE);
	}
	
	protected void processAttributes(Attributes attributes) {
		int size = attributes.getLength();
		for (int i = 0; i < size; i++) {
			if (isSCRNamespace(attributes.getURI(i))) {
				handleAttribute(attributes.getLocalName(i), attributes.getValue(i));
			}
		}
	}
	
	protected abstract void handleAttribute(String name, String value);

	public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
		if (isSCRNamespace(uri)) {
			root.logError("unrecognized element "+ qName);
		}
		
		root.setHandler(new IgnoredElement(root, this));
	}

	public void characters(char[] ch, int start, int length) {
		int end = start + length;
		for (int i = start; i < end; i++) {
			if (!Character.isWhitespace(ch[i])) {
				root.logError(getElementName()+ " element body must be empty");
			}
		}
	}

}

Back to the top