_groovy.py 4.7 KB
###############################################################################
# Name: groovy.py                                                             #
# Purpose: Define Groovy syntax for highlighting and other features           #
# Author: Omar Gomez <omar.gomez@gmail.com>                                   #
# Copyright: (c) 2009 Omar Gomez <omar.gomez@gmail.com>                       #
# License: wxWindows License                                                  #
###############################################################################

"""
FILE: groovy.py
AUTHOR: Omar Gomez
@summary: Lexer configuration module for Groovy (based on the Java one).

"""

__author__ = "Omar Gomez <omar.gomez@gmail.com>"
__svnid__ = "$Id: _groovy.py 68798 2011-08-20 17:17:05Z CJP $"
__revision__ = "$Revision: 68798 $"

#-----------------------------------------------------------------------------#
# Imports
import wx.stc as stc

# Local Imports
import synglob
import syndata
from _cpp import AutoIndenter

#-----------------------------------------------------------------------------#

#---- Keyword Specifications ----#

MAIN_KEYWORDS = (0, 
"""
as assert Boolean Byte Character Class Double Float Integer Long Number Object 
Short String property void abstract assert boolean break byte case catch char 
class const continue default do double else extends false final finally float 
for goto if implements import instanceof in int interface long native new null 
package private protected public return short static strictfp super switch 
synchronized this throw throws transient true try void volatile while def
"""
)

SECONDARY_KEYWORDS= (1, 
"""
abs accept allProperties and any append asImmutable asSynchronized asWritable 
center collect compareTo contains count decodeBase64 div dump each eachByte 
eachFile eachFileRecurse eachLine eachMatch eachProperty eachPropertyName 
eachWithIndex encodeBase64 every execute filterLine find findAll findIndexOf 
flatten getErr getIn getOut getText inject inspect intersect intdiv invokeMethod 
isCase join leftShift max min minus mod multiply negate newInputStream 
newOutputStream newPrintWriter newReader newWriter next or padLeft padRight 
plus pop previous print println readBytes readLine readLines reverse 
reverseEach rightShift rightShiftUnsigned round size sort splitEachLine step 
subMap times toDouble toFloat toInteger tokenize toList toLong toURL 
transformChar transformLine upto use waitForOrKill withInputStream 
withOutputStream withPrintWriter withReader withStream withStreams withWriter 
withWriterAppend write writeLine
"""
)


#---- Syntax Style Specs ----#
SYNTAX_ITEMS = [ (stc.STC_C_DEFAULT, 'default_style'),
                 (stc.STC_C_COMMENT, 'comment_style'),
                 (stc.STC_C_COMMENTDOC, 'comment_style'),
                 (stc.STC_C_COMMENTDOCKEYWORD, 'dockey_style'),
                 (stc.STC_C_COMMENTDOCKEYWORDERROR, 'error_style'),
                 (stc.STC_C_COMMENTLINE, 'comment_style'),
                 (stc.STC_C_COMMENTLINEDOC, 'comment_style'),
                 (stc.STC_C_CHARACTER, 'char_style'),
                 (stc.STC_C_GLOBALCLASS, 'global_style'),
                 (stc.STC_C_IDENTIFIER, 'default_style'),
                 (stc.STC_C_NUMBER, 'number_style'),
                 (stc.STC_C_OPERATOR, 'operator_style'),
                 (stc.STC_C_PREPROCESSOR, 'pre_style'),
                 (stc.STC_C_REGEX, 'pre_style'),
                 (stc.STC_C_STRING, 'string_style'),
                 (stc.STC_C_STRINGEOL, 'stringeol_style'),
                 (stc.STC_C_UUID, 'pre_style'),
                 (stc.STC_C_VERBATIM, 'number2_style'),
                 (stc.STC_C_WORD, 'keyword_style'),
                 (stc.STC_C_WORD2, 'keyword2_style') ]

#---- Extra Properties ----#
FOLD = ("fold", "1")
FOLD_PRE = ("styling.within.preprocessor", "0")
FOLD_COM = ("fold.comment", "1")
FOLD_COMP = ("fold.compact", "1")
FOLD_ELSE = ("fold.at.else", "0")

#------------------------------------------------------------------------------#

class SyntaxData(syndata.SyntaxDataBase):
    """SyntaxData object for Groovy""" 
    def __init__(self, langid):
        super(SyntaxData, self).__init__(langid)

        # Setup
        self.SetLexer(stc.STC_LEX_CPP)
        self.RegisterFeature(synglob.FEATURE_AUTOINDENT, AutoIndenter)

    def GetKeywords(self):
        """Returns Specified Keywords List """
        return [MAIN_KEYWORDS, SECONDARY_KEYWORDS]

    def GetSyntaxSpec(self):
        """Syntax Specifications """
        return SYNTAX_ITEMS

    def GetProperties(self):
        """Returns a list of Extra Properties to set """
        return [FOLD, FOLD_PRE]

    def GetCommentPattern(self):
        """Returns a list of characters used to comment a block of code """
        return [ u'//' ]