Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3b84c04d5dcf9d839ed58ff4c22901c93a3ab0a0 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*******************************************************************************
 * Copyright (c) 2005, 2006 Erkki Lindpere 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:
 *     Erkki Lindpere - initial API and implementation
 *******************************************************************************/
package org.eclipse.ecf.internal.bulletinboard.commons.parsing;

import java.net.URL;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.regex.Matcher;

import org.eclipse.ecf.bulletinboard.IBBObject;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.identity.IDCreateException;
import org.eclipse.ecf.core.identity.Namespace;
import org.eclipse.ecf.internal.bulletinboard.commons.IBBObjectFactory;
import org.eclipse.ecf.internal.bulletinboard.commons.util.StringUtil;

public class GenericParser {

	private Namespace namespace;

	private URL baseURL;

	public GenericParser(Namespace namespace, URL baseURL) {
		super();
		this.namespace = namespace;
		this.baseURL = baseURL;
	}

	public IBBObject parseSingleIdName(IPatternDescriptor pattern,
			CharSequence sequence, IBBObjectFactory factory) {
		return (IBBObject) parseIdNamePairs(pattern, sequence, factory, false,
				false);
	}

	@SuppressWarnings("unchecked")
	public Map<ID, IBBObject> parseMultiIdName(IPatternDescriptor pattern,
			CharSequence sequence, IBBObjectFactory factory,
			boolean preserveOrder) {
		return (Map<ID, IBBObject>) parseIdNamePairs(pattern, sequence,
				factory, true, preserveOrder);
	}

	private Object parseIdNamePairs(IPatternDescriptor pattern,
			CharSequence sequence, IBBObjectFactory factory,
			boolean expectMultipleMatches, boolean preserveOrder) {
		Matcher m = pattern.getPattern().matcher(sequence);
		Map<ID, IBBObject> objectMap = null;
		if (expectMultipleMatches) {
			if (preserveOrder) {
				objectMap = new LinkedHashMap<ID, IBBObject>();
			} else {
				objectMap = new HashMap<ID, IBBObject>();
			}
		}
		while (m.find()) {
			Map<String, Object> values = pattern.getValueMap(m);
			ID id = null;
			try {
				id = factory.createBBObjectId(namespace, baseURL, (String) values.get(IPatternDescriptor.ID_PARAM));
			} catch (IDCreateException e) {
				// TODO autogen e
				e.printStackTrace();
			}
			String name = StringUtil.stripHTMLTrim((String) values.get(IPatternDescriptor.NAME_PARAM));
			IBBObject obj = factory.createBBObject(id, new String(name), values);
			if (expectMultipleMatches) {
				objectMap.put(id, obj);
			} else {
				return obj;
			}
		}
		if (expectMultipleMatches) {
			return objectMap;
		} else {
			return null;
		}
	}
}

Back to the top