blob: bf6cd9d4b963bcdb2742a5e58b26142c7c802667 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package swing
import groovy.swing.SwingBuilder
import java.awt.Color
import java.awt.event.ActionEvent
import java.awt.event.ActionListener
import java.awt.event.KeyAdapter
import java.awt.event.KeyEvent
import java.util.regex.PatternSyntaxException
import javax.swing.text.DefaultHighlighter.DefaultHighlightPainter
// inspired by http://weitz.de/regex-coach/
// define the view
def swing = new SwingBuilder()
def gui = swing.build(RegexCoachView)
def highlighter = new RegexHighliter(swing: swing)
swing.regexPane.addKeyListener(highlighter)
swing.targetPane.addKeyListener(highlighter)
swing.scanLeft.addActionListener(highlighter)
swing.scanRight.addActionListener(highlighter)
gui.show()
class RegexHighliter extends KeyAdapter implements ActionListener {
def swing // reference to the view
int scanIndex // how many times to execute matcher.find()
def orange = new DefaultHighlightPainter(Color.ORANGE)
def yellow = new DefaultHighlightPainter(Color.YELLOW)
def red = new DefaultHighlightPainter(Color.RED)
// react to user actions
public void actionPerformed(ActionEvent event) {
if (event.actionCommand == '<<-') {scanIndex = Math.max(scanIndex - 1, 0)}
if (event.actionCommand == '->>') {scanIndex++}
doHighlights()
}
public void keyReleased(KeyEvent event) {
scanIndex = 0
doHighlights()
}
private resetView() {
swing.regexPane.highlighter.removeAllHighlights()
swing.targetPane.highlighter.removeAllHighlights()
swing.regexStatus.text = ' '
swing.targetStatus.text = ' '
}
// the main regex logic
private doHighlights() {
try {
resetView()
// note: get the text from the underlying document,
// otherwise carriage return/line feeds different when using the JTextPane text
def regex = swing.regexPane.document.getText(0, swing.regexPane.document.length)
def target = swing.targetPane.document.getText(0, swing.targetPane.document.length)
def matcher = (target =~ regex)
// scan past the matches before the match we want
int scan = 0
while (scan < scanIndex) {
matcher.find()
scan++
}
if (matcher.find()) {
// highlight any captured groups
int i = 0
while (i++ < matcher.groupCount()) {
swing.targetPane.highlighter.addHighlight(matcher.start(i), matcher.end(i), orange)
}
// highlight whole match
swing.targetPane.highlighter.addHighlight(matcher.start(), matcher.end(), yellow)
if (regex.length() != 0) {
swing.targetStatus.text = "Match #${scanIndex + 1} from ${matcher.start()} to ${matcher.end()}."
}
} else {// not found
scanIndex = Math.max(scan - 1, 0)
if (scanIndex > 0) {doHighlights()}
swing.targetStatus.text = "No match."
}
} catch (PatternSyntaxException e) {
swing.regexPane.highlighter.addHighlight(e.index, e.index + 2, red)
swing.regexStatus.text = e.description
}
}
}