2009-03-30 01:10:25 -04:00
|
|
|
import mode, tab
|
2009-02-02 09:44:32 -05:00
|
|
|
import context
|
2009-03-28 22:20:37 -04:00
|
|
|
from lex import Grammar, PatternRule, RegionRule, PatternMatchRule
|
2008-10-01 16:58:43 -04:00
|
|
|
from mode.python import StringGrammar2
|
2008-10-02 16:06:16 -04:00
|
|
|
from mode.c import CTabber2
|
2009-02-03 09:56:22 -05:00
|
|
|
from parse import Any, And, Or, Optional, Name, Match, Matchs
|
2007-08-02 17:43:04 -04:00
|
|
|
|
2008-10-07 23:39:22 -04:00
|
|
|
class CommentGrammar(Grammar):
|
|
|
|
rules = [
|
2009-03-28 22:20:37 -04:00
|
|
|
PatternMatchRule(r'x', r'(@[a-z]+)( +)([^ ]+)', r'javadoc', r'spaces', r'javaname'),
|
2008-10-07 23:39:22 -04:00
|
|
|
PatternRule(r"javadoc", r"@[a-z]+"),
|
|
|
|
PatternRule(r"data", r"(?:[^@*]|\*(?!/))+"),
|
|
|
|
]
|
|
|
|
|
2009-03-30 01:10:25 -04:00
|
|
|
chr1 = '[a-zA-Z_]'
|
|
|
|
chr2 = '[a-zA-Z0-9_]'
|
|
|
|
word1 = chr1 + chr2 + '*'
|
|
|
|
word2 = '(?:' + word1 + r'\.' + ')*' + word1
|
|
|
|
|
2007-08-02 17:43:04 -04:00
|
|
|
class JavaGrammar(Grammar):
|
|
|
|
rules = [
|
2008-10-01 16:58:43 -04:00
|
|
|
PatternRule(r"spaces", r" +"),
|
2009-03-30 01:10:25 -04:00
|
|
|
PatternMatchRule('x', r'(import)( +)(' + word2 + '(?:\.\*)?)', 'keyword', 'spaces', 'import'),
|
|
|
|
PatternMatchRule('x', r'(package)( +)(' + word2 + ')', 'keyword', 'spaces', 'package'),
|
|
|
|
PatternMatchRule('x', r'(class)( +)(' + word1 + ')', 'keyword', 'spaces', 'java_class'),
|
|
|
|
PatternMatchRule('x', '(new)( +)(' + word2 + ')', 'keyword', 'spaces', 'java_class'),
|
2007-08-02 17:43:04 -04:00
|
|
|
|
2008-10-07 23:39:22 -04:00
|
|
|
RegionRule(r'java_comment', '/\*', CommentGrammar, '\*/'),
|
2009-03-30 01:10:25 -04:00
|
|
|
PatternRule(r'comment', r'//.*$'),
|
2007-08-02 17:43:04 -04:00
|
|
|
|
2009-03-30 01:10:25 -04:00
|
|
|
PatternRule(r'keyword', r"(?:abstract|assert|break|case|catch|class|continue|default|do|else|extends|finally|final|for|if|implements|import|instanceof|interface|native|new|package|private|protected|public|return|static|switch|super|synchronized|threadsafe|throws|throw|transient|try|while)(?![a-zA-Z_])"),
|
2008-03-16 01:23:14 -04:00
|
|
|
PatternRule(r'java_label', r'[a-zA-Z_][a-zA-Z0-9_]*(?=:)'),
|
2007-08-02 17:43:04 -04:00
|
|
|
|
2009-03-30 01:10:25 -04:00
|
|
|
PatternMatchRule('x', '(' + word2 + ')((?:\[\])?)( +)(' + word1 + ')( *)(\()',
|
|
|
|
'java_type', 'delimiter', 'spaces', 'java_function', 'spaces', 'delimiter'),
|
|
|
|
PatternMatchRule('x', '(' + word2 + ')((?:\[\])?)( +)(' + word1 + ')(?! *\()',
|
|
|
|
'java_type', 'delimiter', 'spaces', 'identifier'),
|
|
|
|
|
2008-03-16 01:23:14 -04:00
|
|
|
PatternRule(r'java_builtin', r"(?:null|true|false|this)"),
|
2009-03-30 01:10:25 -04:00
|
|
|
PatternRule(r'identifier', word1),
|
|
|
|
PatternRule(r"operator", r"\+=|-=|\*=|/=|//=|%=|&=\|\^=|>>=|<<=|\*\*="),
|
|
|
|
PatternRule(r'operator', r"\+|<>|<<|<=|<|-|>>|>=|>|\*\*|&|\*|\||/|\^|==|//|~|!=|%"),
|
2007-08-02 17:43:04 -04:00
|
|
|
|
|
|
|
PatternRule(r"delimiter", r"->|\.|\(|\)|\[|\]|{|}|@|,|:|`|;|=|\?"),
|
|
|
|
|
2009-03-30 01:10:25 -04:00
|
|
|
PatternRule(r"integer", r"(?:0(?![x0-9])|[1-9][0-9]*|0[0-7]+|0[xX][0-9a-fA-F]+)[lL]?"),
|
|
|
|
PatternRule(r"float", r"[0-9]+\.[0-9]*|\.[0-9]+|(?:[0-9]|[0-9]+\.[0-9]*|\.[0-9]+)[eE][\+-]?[0-9]+"),
|
2008-10-01 16:58:43 -04:00
|
|
|
RegionRule(r'string', '"', StringGrammar2, '"'),
|
2008-03-16 01:23:14 -04:00
|
|
|
PatternRule(r'java_char', r"'.'|'\\.'|'\\[0-7]{3}'"),
|
2007-08-02 17:43:04 -04:00
|
|
|
PatternRule(r"eol", r"\n$"),
|
|
|
|
]
|
|
|
|
|
2009-02-03 14:16:38 -05:00
|
|
|
|
|
|
|
CLASS_MATCH = And(Optional(Name('spaces')),
|
|
|
|
Matchs('keyword', ('public', 'protected', 'private')),
|
|
|
|
Name('spaces'),
|
|
|
|
Match('keyword', 'class'),
|
|
|
|
Name('spaces'),
|
2009-03-30 01:10:25 -04:00
|
|
|
Name('java_class'))
|
2009-02-03 14:16:38 -05:00
|
|
|
CLASS_OFFSET = 1
|
|
|
|
METHOD_MATCH = And(Optional(Name('spaces')),
|
|
|
|
Matchs('keyword', ('public', 'protected', 'private')),
|
|
|
|
Name('spaces'),
|
|
|
|
Optional(And(Match('keyword', 'static'), Name('spaces'))),
|
|
|
|
Any(),
|
|
|
|
Name('spaces'),
|
2009-03-30 01:10:25 -04:00
|
|
|
Name('java_function'),
|
2009-02-03 14:16:38 -05:00
|
|
|
Optional(Name('spaces')),
|
|
|
|
Match('delimiter', '('))
|
|
|
|
METHOD_OFFSET = 2
|
|
|
|
|
2009-02-02 09:44:32 -05:00
|
|
|
class JavaTabber2(tab.StackTabber2):
|
|
|
|
open_tokens = {'delimiter': {'{': '}', '(': ')', '[': ']'}}
|
|
|
|
close_tokens = {'delimiter': {'}': '{', ')': '(', ']': '['}}
|
|
|
|
control_tokens = {'keyword': {'if': 1, 'else': 1, 'while': 1, 'do': 1, 'for': 1}}
|
|
|
|
end_at_eof = False
|
|
|
|
end_at_tokens = {'delimiter': {';': 1}}
|
|
|
|
nocontinue_tokens = {'delimiter': {';': 1},
|
|
|
|
'java_comment.start': 1,
|
|
|
|
'java_comment.data': 1,
|
|
|
|
'java_comment.end': 1}
|
|
|
|
start_free_tokens = {'string.start': 'string.end'}
|
|
|
|
end_free_tokens = {'string.end': 'string.start'}
|
2009-03-30 01:10:25 -04:00
|
|
|
def is_base(self, y): return y == 0
|
|
|
|
def _is_indent(self, t): return t.name == 'spaces'
|
2009-02-02 09:44:32 -05:00
|
|
|
def _is_ignored(self, t):
|
|
|
|
return t.fqname() in ('spaces', 'eol', 'comment', 'comment.start',
|
|
|
|
'comment.data', 'comment.null', 'comment.end')
|
|
|
|
|
|
|
|
class JavaContext(context.Context):
|
2009-02-03 14:16:38 -05:00
|
|
|
class_match = CLASS_MATCH
|
|
|
|
class_offset = CLASS_OFFSET
|
|
|
|
method_match = METHOD_MATCH
|
|
|
|
method_offset = METHOD_OFFSET
|
2009-02-02 09:44:32 -05:00
|
|
|
def _regen_stack(self, y):
|
|
|
|
if y > 0 and self.namelines[y - 1][1]:
|
|
|
|
return list(self.namelines[y - 1][1])
|
|
|
|
else:
|
|
|
|
return []
|
|
|
|
|
|
|
|
def _build_name_map(self, y1, y2, last, curr, stack):
|
|
|
|
highlights = self.mode.window.get_highlighter()
|
|
|
|
|
2009-02-03 16:52:23 -05:00
|
|
|
i = y1
|
2009-02-02 09:44:32 -05:00
|
|
|
while i < y2:
|
2009-02-03 16:52:23 -05:00
|
|
|
if not stack: curr = None
|
|
|
|
tokens = highlights.tokens[i]
|
2009-02-02 09:44:32 -05:00
|
|
|
|
2009-02-03 16:52:23 -05:00
|
|
|
result = self.class_match.match(tokens)
|
|
|
|
if result: curr = tokens[result[0] - self.class_offset].string
|
|
|
|
result = self.method_match.match(tokens)
|
|
|
|
if result: curr = tokens[result[0] - self.method_offset].string
|
2009-02-03 09:56:22 -05:00
|
|
|
|
2009-02-03 16:52:23 -05:00
|
|
|
if curr is not None: self.names.setdefault(curr, i)
|
2009-02-02 09:44:32 -05:00
|
|
|
|
2009-02-03 16:52:23 -05:00
|
|
|
for t in tokens:
|
2009-02-02 09:44:32 -05:00
|
|
|
if t.match('delimiter', '{'):
|
2009-02-03 09:56:22 -05:00
|
|
|
stack.append(curr)
|
2009-02-02 09:44:32 -05:00
|
|
|
elif t.match('delimiter', '}'):
|
2009-02-03 16:52:23 -05:00
|
|
|
if stack: stack.pop(-1)
|
2009-02-03 09:56:22 -05:00
|
|
|
if stack:
|
|
|
|
curr = stack[-1]
|
|
|
|
else:
|
|
|
|
curr = None
|
2009-02-02 09:44:32 -05:00
|
|
|
|
2009-02-03 16:52:23 -05:00
|
|
|
if curr: self.namelines[i] = (curr, tuple(stack))
|
2009-02-02 09:44:32 -05:00
|
|
|
i += 1
|
2007-08-03 09:43:57 -04:00
|
|
|
|
2007-10-21 20:55:29 -04:00
|
|
|
class Java(mode.Fundamental):
|
2009-03-17 15:24:10 -04:00
|
|
|
name = 'Java'
|
2007-10-18 17:07:35 -04:00
|
|
|
extensions = ['.java']
|
2009-02-02 09:44:32 -05:00
|
|
|
tabbercls = JavaTabber2
|
2007-10-18 17:07:35 -04:00
|
|
|
grammar = JavaGrammar
|
2009-02-15 12:06:35 -05:00
|
|
|
commentc = '//'
|
2007-08-02 17:43:04 -04:00
|
|
|
opentokens = ('delimiter',)
|
2007-10-18 17:07:35 -04:00
|
|
|
opentags = {'(': ')', '[': ']', '{': '}'}
|
2007-08-02 17:43:04 -04:00
|
|
|
closetokens = ('delimiter',)
|
2007-10-18 17:07:35 -04:00
|
|
|
closetags = {')': '(', ']': '[', '}': '{'}
|
|
|
|
colors = {
|
2009-02-03 16:52:23 -05:00
|
|
|
'java_comment.start': ('red', 'default', 'bold'),
|
|
|
|
'java_comment.end': ('red', 'default', 'bold'),
|
|
|
|
'java_comment.javadoc': ('magenta', 'default', 'bold'),
|
|
|
|
'java_comment.javaname': ('yellow', 'default', 'bold'),
|
|
|
|
'java_comment.data': ('red', 'default', 'bold'),
|
|
|
|
'java_comment.null': ('red', 'default', 'bold'),
|
|
|
|
'import': ('blue', 'default', 'bold'),
|
2009-03-30 01:10:25 -04:00
|
|
|
'java_class': ('green', 'default', 'bold'),
|
2009-02-03 16:52:23 -05:00
|
|
|
'java_label': ('magenta', 'default', 'bold'),
|
|
|
|
'java_builtin': ('magenta', 'default', 'bold'),
|
|
|
|
'java_char': ('green', 'default', 'bold'),
|
2009-03-30 01:10:25 -04:00
|
|
|
'java_function': ('blue', 'default', 'bold'),
|
|
|
|
'java_type': ('magenta', 'default', 'bold'),
|
|
|
|
}
|
|
|
|
|
|
|
|
_bindings = {
|
|
|
|
'close-paren': (')',),
|
|
|
|
'close-brace': ('}',),
|
|
|
|
'close-bracket': (']',),
|
2007-08-02 17:43:04 -04:00
|
|
|
}
|
2009-02-02 09:44:32 -05:00
|
|
|
|
|
|
|
format = "%(flag)s %(bname)-18s (%(mname)s) %(indent)s %(cursor)s/%(mark)s %(perc)s [%(func)s]"
|
|
|
|
|
2007-08-02 17:43:04 -04:00
|
|
|
def __init__(self, w):
|
2007-10-21 20:55:29 -04:00
|
|
|
mode.Fundamental.__init__(self, w)
|
2009-02-02 09:44:32 -05:00
|
|
|
self.context = JavaContext(self)
|
|
|
|
|
2009-03-30 01:10:25 -04:00
|
|
|
def get_status_names(self):
|
|
|
|
names = mode.Fundamental.get_status_names(self)
|
|
|
|
c = self.window.logical_cursor()
|
|
|
|
names['func'] = self.get_line_function(c.y)
|
|
|
|
return names
|
2009-02-02 09:44:32 -05:00
|
|
|
def get_functions(self):
|
|
|
|
return self.context.get_names()
|
|
|
|
def get_function_names(self):
|
|
|
|
return self.context.get_name_list()
|
|
|
|
def get_line_function(self, y):
|
|
|
|
return self.context.get_line_name(y)
|
2007-10-19 02:41:33 -04:00
|
|
|
|
|
|
|
install = Java.install
|