Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4de0f7c7769e380403714cf14975bc8cfc0cf5c1 (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, 2013 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Bjorn Freeman-Benson - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.examples.ui.pda.editor;

import org.eclipse.debug.examples.ui.pda.DebugUIPlugin;
import org.eclipse.jface.text.TextAttribute;
import org.eclipse.jface.text.rules.BufferedRuleBasedScanner;
import org.eclipse.jface.text.rules.IRule;
import org.eclipse.jface.text.rules.IWordDetector;
import org.eclipse.jface.text.rules.Token;
import org.eclipse.jface.text.rules.WordRule;


/**
 * PDA editor keyword scanner.
 */
public class PDAScanner extends BufferedRuleBasedScanner {

	/**
	 * PDA keywods
	 */
	public static final String[] fgKeywords = new String[] {
 "add", "branch_not_zero", "call", "dec", "dup", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
	"halt", "output", "pop", "push", "return", "var" //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
	};

	/**
	 * Detects potential keywords
	 */
	static class PDAWordDetector implements IWordDetector {

		@Override
		public boolean isWordStart(char c) {
			return Character.isLetter(c);
		}

		@Override
		public boolean isWordPart(char c) {
			return Character.isLetter(c) || c == '_';
		}
	}

	/**
	 * Detects PDA branch labels
	 */
	class PDALabelDetector extends PDAWordDetector {

		@Override
		public boolean isWordStart(char c) {
			return c == ':';
		}

		@Override
		public boolean isWordPart(char c) {
			return super.isWordPart(c) || Character.isDigit(c);
		}
	}

	/**
	 * Constructs a scanner that identifies PDA keywords.
	 */
	public PDAScanner() {
		// keywords
		Token token = new Token(new TextAttribute(DebugUIPlugin.getDefault().getColor(DebugUIPlugin.KEYWORD)));
		WordRule keywords = new WordRule(new PDAWordDetector());
		for (int i = 0; i < fgKeywords.length; i++) {
			String keyword = fgKeywords[i];
			keywords.addWord(keyword, token);
		}
		// labels
		token = new Token(new TextAttribute(DebugUIPlugin.getDefault().getColor(DebugUIPlugin.LABEL)));
		WordRule labels = new WordRule(new PDALabelDetector(), token);
		setRules(new IRule[]{keywords, labels});
	}
}

Back to the top