Last active
August 29, 2015 14:09
-
-
Save grigorescu/19b9933272ae634c6fb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From: https://bitbucket.org/birkenfeld/pygments-main/src/863c453b293e2db0d63b52d517d4ca994725e364/pygments/lexers/dsls.py?at=default | |
class BroLexer(RegexLexer): | |
""" | |
For `Bro <http://bro-ids.org/>`_ scripts. | |
.. versionadded:: 1.5 | |
""" | |
name = 'Bro' | |
aliases = ['bro'] | |
filenames = ['*.bro'] | |
_hex = r'[0-9a-fA-F_]' | |
_float = r'((\d*\.?\d+)|(\d+\.?\d*))([eE][-+]?\d+)?' | |
_h = r'[A-Za-z0-9][-A-Za-z0-9]*' | |
tokens = { | |
'root': [ | |
# Whitespace | |
(r'^@.*?\n', Comment.Preproc), | |
(r'#.*?\n', Comment.Single), | |
(r'\n', Text), | |
(r'\s+', Text), | |
(r'\\\n', Text), | |
# Keywords | |
(r'(add|alarm|break|case|const|continue|delete|do|else|enum|event' | |
r'|export|for|function|if|global|hook|local|module|next' | |
r'|of|print|redef|return|schedule|switch|type|when|while)\b', Keyword), | |
(r'(addr|any|bool|count|counter|double|file|int|interval|net' | |
r'|pattern|port|record|set|string|subnet|table|time|timer' | |
r'|vector)\b', Keyword.Type), | |
(r'(T|F)\b', Keyword.Constant), | |
(r'(&)((?:add|delete|expire)_func|attr|(?:create|read|write)_expire' | |
r'|default|disable_print_hook|raw_output|encrypt|group|log' | |
r'|mergeable|optional|persistent|priority|redef' | |
r'|rotate_(?:interval|size)|synchronized)\b', | |
bygroups(Punctuation, Keyword)), | |
(r'\s+module\b', Keyword.Namespace), | |
# Addresses, ports and networks | |
(r'\d+/(tcp|udp|icmp|unknown)\b', Number), | |
(r'(\d+\.){3}\d+', Number), | |
(r'(' + _hex + r'){7}' + _hex, Number), | |
(r'0x' + _hex + r'(' + _hex + r'|:)*::(' + _hex + r'|:)*', Number), | |
(r'((\d+|:)(' + _hex + r'|:)*)?::(' + _hex + r'|:)*', Number), | |
(r'(\d+\.\d+\.|(\d+\.){2}\d+)', Number), | |
# Hostnames | |
(_h + r'(\.' + _h + r')+', String), | |
# Numeric | |
(_float + r'\s+(day|hr|min|sec|msec|usec)s?\b', Literal.Date), | |
(r'0[xX]' + _hex, Number.Hex), | |
(_float, Number.Float), | |
(r'\d+', Number.Integer), | |
(r'/', String.Regex, 'regex'), | |
(r'"', String, 'string'), | |
# Operators | |
(r'[!%*/+:<=>?~|-]', Operator), | |
(r'([-+=&|]{2}|[+=!><-]=)', Operator), | |
(r'(in|match)\b', Operator.Word), | |
(r'[{}()\[\]$.,;]', Punctuation), | |
# Identfier | |
(r'([_a-zA-Z]\w*)(::)', bygroups(Name, Name.Namespace)), | |
(r'[a-zA-Z_]\w*', Name) | |
], | |
'string': [ | |
(r'"', String, '#pop'), | |
(r'\\([\\abfnrtv"\']|x[a-fA-F0-9]{2,4}|[0-7]{1,3})', String.Escape), | |
(r'[^\\"\n]+', String), | |
(r'\\\n', String), | |
(r'\\', String) | |
], | |
'regex': [ | |
(r'/', String.Regex, '#pop'), | |
(r'\\[\\nt/]', String.Regex), # String.Escape is too intense here. | |
(r'[^\\/\n]+', String.Regex), | |
(r'\\\n', String.Regex), | |
(r'\\', String.Regex) | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment