summaryrefslogtreecommitdiffstats
path: root/doc/extra/frrlexer.py
blob: 39ce5e620d2e24a10b0950973261170f1e188719 (plain)
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
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: ISC
# Copyright (c) 2017 Vincent Bernat <bernat@luffy.cx>

from pygments.lexer import RegexLexer, bygroups
from pygments.token import Text, Comment, Keyword
from pygments.token import String, Number, Name


class FRRLexer(RegexLexer):
    name = "frr"
    aliases = ["frr"]
    tokens = {
        "root": [
            (r"^[ \t]*!.*?\n", Comment.Singleline),
            (r'"(\\\\|\\"|[^"])*"', String.Double),
            (
                r"[a-f0-9]*:[a-f0-9]*:[a-f0-9:]*(:\d+\.\d+\.\d+\.\d+)?(/\d+)?",
                Number,
            ),  # IPv6
            (r"\d+\.\d+\.\d+\.\d+(/\d+)?", Number),  # IPv4
            (r"^([ \t]*)(no[ \t]+)?([-\w]+)", bygroups(Text, Keyword, Name.Function)),
            (r"[ \t]+", Text),
            (r"\n", Text),
            (r"\d+", Number),
            (r"\S+", Text),
        ],
    }