Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

# -*- coding: utf-8 -*- 

""" 

    pygments.lexers.make 

    ~~~~~~~~~~~~~~~~~~~~ 

 

    Lexers for Makefiles and similar. 

 

    :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. 

    :license: BSD, see LICENSE for details. 

""" 

 

import re 

 

from pygments.lexer import Lexer, RegexLexer, include, bygroups, \ 

    do_insertions, using 

from pygments.token import Text, Comment, Operator, Keyword, Name, String, \ 

    Punctuation 

from pygments.lexers.shell import BashLexer 

 

__all__ = ['MakefileLexer', 'BaseMakefileLexer', 'CMakeLexer'] 

 

 

class MakefileLexer(Lexer): 

    """ 

    Lexer for BSD and GNU make extensions (lenient enough to handle both in 

    the same file even). 

 

    *Rewritten in Pygments 0.10.* 

    """ 

 

    name = 'Makefile' 

    aliases = ['make', 'makefile', 'mf', 'bsdmake'] 

    filenames = ['*.mak', '*.mk', 'Makefile', 'makefile', 'Makefile.*', 'GNUmakefile'] 

    mimetypes = ['text/x-makefile'] 

 

    r_special = re.compile( 

        r'^(?:' 

        # BSD Make 

        r'\.\s*(include|undef|error|warning|if|else|elif|endif|for|endfor)|' 

        # GNU Make 

        r'\s*(ifeq|ifneq|ifdef|ifndef|else|endif|-?include|define|endef|:|vpath)|' 

        # GNU Automake 

        r'\s*(if|else|endif))(?=\s)') 

    r_comment = re.compile(r'^\s*@?#') 

 

    def get_tokens_unprocessed(self, text): 

        ins = [] 

        lines = text.splitlines(True) 

        done = '' 

        lex = BaseMakefileLexer(**self.options) 

        backslashflag = False 

        for line in lines: 

            if self.r_special.match(line) or backslashflag: 

                ins.append((len(done), [(0, Comment.Preproc, line)])) 

                backslashflag = line.strip().endswith('\\') 

            elif self.r_comment.match(line): 

                ins.append((len(done), [(0, Comment, line)])) 

            else: 

                done += line 

        for item in do_insertions(ins, lex.get_tokens_unprocessed(done)): 

            yield item 

 

    def analyse_text(text): 

        # Many makefiles have $(BIG_CAPS) style variables 

        if re.search(r'\$\([A-Z_]+\)', text): 

            return 0.1 

 

 

class BaseMakefileLexer(RegexLexer): 

    """ 

    Lexer for simple Makefiles (no preprocessing). 

 

    .. versionadded:: 0.10 

    """ 

 

    name = 'Base Makefile' 

    aliases = ['basemake'] 

    filenames = [] 

    mimetypes = [] 

 

    tokens = { 

        'root': [ 

            # recipes (need to allow spaces because of expandtabs) 

            (r'^(?:[\t ]+.*\n|\n)+', using(BashLexer)), 

            # special variables 

            (r'\$[<@$+%?|*]', Keyword), 

            (r'\s+', Text), 

            (r'#.*?\n', Comment), 

            (r'(export)(\s+)(?=[\w${}\t -]+\n)', 

             bygroups(Keyword, Text), 'export'), 

            (r'export\s+', Keyword), 

            # assignment 

            (r'([\w${}.-]+)(\s*)([!?:+]?=)([ \t]*)((?:.*\\\n)+|.*\n)', 

             bygroups(Name.Variable, Text, Operator, Text, using(BashLexer))), 

            # strings 

            (r'(?s)"(\\\\|\\.|[^"\\])*"', String.Double), 

            (r"(?s)'(\\\\|\\.|[^'\\])*'", String.Single), 

            # targets 

            (r'([^\n:]+)(:+)([ \t]*)', bygroups(Name.Function, Operator, Text), 

             'block-header'), 

            # expansions 

            (r'\$\(', Keyword, 'expansion'), 

        ], 

        'expansion': [ 

            (r'[^$a-zA-Z_)]+', Text), 

            (r'[a-zA-Z_]+', Name.Variable), 

            (r'\$', Keyword), 

            (r'\(', Keyword, '#push'), 

            (r'\)', Keyword, '#pop'), 

        ], 

        'export': [ 

            (r'[\w${}-]+', Name.Variable), 

            (r'\n', Text, '#pop'), 

            (r'\s+', Text), 

        ], 

        'block-header': [ 

            (r'[,|]', Punctuation), 

            (r'#.*?\n', Comment, '#pop'), 

            (r'\\\n', Text),  # line continuation 

            (r'\$\(', Keyword, 'expansion'), 

            (r'[a-zA-Z_]+', Name), 

            (r'\n', Text, '#pop'), 

            (r'.', Text), 

        ], 

    } 

 

 

class CMakeLexer(RegexLexer): 

    """ 

    Lexer for `CMake <http://cmake.org/Wiki/CMake>`_ files. 

 

    .. versionadded:: 1.2 

    """ 

    name = 'CMake' 

    aliases = ['cmake'] 

    filenames = ['*.cmake', 'CMakeLists.txt'] 

    mimetypes = ['text/x-cmake'] 

 

    tokens = { 

        'root': [ 

            # (r'(ADD_CUSTOM_COMMAND|ADD_CUSTOM_TARGET|ADD_DEFINITIONS|' 

            # r'ADD_DEPENDENCIES|ADD_EXECUTABLE|ADD_LIBRARY|ADD_SUBDIRECTORY|' 

            # r'ADD_TEST|AUX_SOURCE_DIRECTORY|BUILD_COMMAND|BUILD_NAME|' 

            # r'CMAKE_MINIMUM_REQUIRED|CONFIGURE_FILE|CREATE_TEST_SOURCELIST|' 

            # r'ELSE|ELSEIF|ENABLE_LANGUAGE|ENABLE_TESTING|ENDFOREACH|' 

            # r'ENDFUNCTION|ENDIF|ENDMACRO|ENDWHILE|EXEC_PROGRAM|' 

            # r'EXECUTE_PROCESS|EXPORT_LIBRARY_DEPENDENCIES|FILE|FIND_FILE|' 

            # r'FIND_LIBRARY|FIND_PACKAGE|FIND_PATH|FIND_PROGRAM|FLTK_WRAP_UI|' 

            # r'FOREACH|FUNCTION|GET_CMAKE_PROPERTY|GET_DIRECTORY_PROPERTY|' 

            # r'GET_FILENAME_COMPONENT|GET_SOURCE_FILE_PROPERTY|' 

            # r'GET_TARGET_PROPERTY|GET_TEST_PROPERTY|IF|INCLUDE|' 

            # r'INCLUDE_DIRECTORIES|INCLUDE_EXTERNAL_MSPROJECT|' 

            # r'INCLUDE_REGULAR_EXPRESSION|INSTALL|INSTALL_FILES|' 

            # r'INSTALL_PROGRAMS|INSTALL_TARGETS|LINK_DIRECTORIES|' 

            # r'LINK_LIBRARIES|LIST|LOAD_CACHE|LOAD_COMMAND|MACRO|' 

            # r'MAKE_DIRECTORY|MARK_AS_ADVANCED|MATH|MESSAGE|OPTION|' 

            # r'OUTPUT_REQUIRED_FILES|PROJECT|QT_WRAP_CPP|QT_WRAP_UI|REMOVE|' 

            # r'REMOVE_DEFINITIONS|SEPARATE_ARGUMENTS|SET|' 

            # r'SET_DIRECTORY_PROPERTIES|SET_SOURCE_FILES_PROPERTIES|' 

            # r'SET_TARGET_PROPERTIES|SET_TESTS_PROPERTIES|SITE_NAME|' 

            # r'SOURCE_GROUP|STRING|SUBDIR_DEPENDS|SUBDIRS|' 

            # r'TARGET_LINK_LIBRARIES|TRY_COMPILE|TRY_RUN|UNSET|' 

            # r'USE_MANGLED_MESA|UTILITY_SOURCE|VARIABLE_REQUIRES|' 

            # r'VTK_MAKE_INSTANTIATOR|VTK_WRAP_JAVA|VTK_WRAP_PYTHON|' 

            # r'VTK_WRAP_TCL|WHILE|WRITE_FILE|' 

            # r'COUNTARGS)\b', Name.Builtin, 'args'), 

            (r'\b(\w+)([ \t]*)(\()', bygroups(Name.Builtin, Text, 

                                              Punctuation), 'args'), 

            include('keywords'), 

            include('ws') 

        ], 

        'args': [ 

            (r'\(', Punctuation, '#push'), 

            (r'\)', Punctuation, '#pop'), 

            (r'(\$\{)(.+?)(\})', bygroups(Operator, Name.Variable, Operator)), 

            (r'(\$<)(.+?)(>)', bygroups(Operator, Name.Variable, Operator)), 

            (r'(?s)".*?"', String.Double), 

            (r'\\\S+', String), 

            (r'[^)$"# \t\n]+', String), 

            (r'\n', Text),  # explicitly legal 

            include('keywords'), 

            include('ws') 

        ], 

        'string': [ 

 

        ], 

        'keywords': [ 

            (r'\b(WIN32|UNIX|APPLE|CYGWIN|BORLAND|MINGW|MSVC|MSVC_IDE|MSVC60|' 

             r'MSVC70|MSVC71|MSVC80|MSVC90)\b', Keyword), 

        ], 

        'ws': [ 

            (r'[ \t]+', Text), 

            (r'#.*\n', Comment), 

        ] 

    } 

 

    def analyse_text(text): 

        exp = r'^ *CMAKE_MINIMUM_REQUIRED *\( *VERSION *\d(\.\d)* *( FATAL_ERROR)? *\) *$' 

        if re.search(exp, text, flags=re.MULTILINE | re.IGNORECASE): 

            return 0.8 

        return 0.0