File: viml.rake

package info (click to toggle)
ruby-rouge 4.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,836 kB
  • sloc: ruby: 38,168; sed: 2,071; perl: 152; makefile: 8
file content (86 lines) | stat: -rw-r--r-- 2,378 bytes parent folder | download | duplicates (4)
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
# -*- coding: utf-8 -*- #
# frozen_string_literal: true

require 'open-uri'

VIML_SYNTAX_URI = "https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/vim.vim"
VIML_KEYWORDS_FILE = "./lib/rouge/lexers/viml/keywords.rb"

namespace :builtins do
  task :viml do
    generator = Rouge::Tasks::Builtins::VimL.new

    input    = URI.open(VIML_SYNTAX_URI) { |f| f.read }
    keywords = generator.extract_keywords(input)

    output = generator.render_output(keywords)

    File.write(VIML_KEYWORDS_FILE, output)
  end
end

module Rouge
  module Tasks
    module Builtins
      class VimL
        def extract_keywords(input)
          keywords = Hash.new { |h,k| h[k] = Set.new }

          input.each_line do |line|
            line =~ %r(^
              (?: syn[ ]keyword[ ](vim(?:AutoEvent|Command|FuncName|Option))[ ]contained )
              (.*)
            $)x

            next unless $1

            name = $1
            functions = $2

            key = case name
                  when "vimAutoEvent"
                    :auto
                  when "vimCommand"
                    :command
                  when "vimFuncName"
                    :function
                  when "vimOption"
                    :option
                  end

            functions.scan(/([\w:]+)(?:\[(\w+)\])?/) do
              keywords[key].merge [$1, "#{$1}#{$2}"]
            end
          end

          keywords
        end

        def render_output(keywords, &b)
          return enum_for(:render_output, keywords).to_a.join("\n") unless b

          yield   "# -*- coding: utf-8 -*- #"
          yield   "# frozen_string_literal: true"
          yield   ""
          yield   "# DO NOT EDIT"
          yield   "# This file is automatically generated by `rake builtins:viml`."
          yield   "# See tasks/builtins/viml.rake for more info."
          yield   ""
          yield   "module Rouge"
          yield   "  module Lexers"
          yield   "    class VimL"
          yield   "      def self.keywords"
          yield   "        @keywords ||= {}.tap do |kw|"
          keywords.each do |k,v|
            yield "          kw[#{k.inspect}] = Set.new #{v.to_a.inspect}"
          end
          yield   "        end"
          yield   "      end"
          yield   "    end"
          yield   "  end"
          yield   "end"
        end
      end
    end
  end
end