Class: DotStrings::Parser

Inherits:
Object
  • Object
show all
Defined in:
lib/dotstrings/parser.rb

Overview

rubocop:disable Metrics/ClassLength

Constant Summary collapse

TOK_SLASH =

Special tokens

'/'
TOK_ASTERISK =
'*'
TOK_QUOTE =
'"'
TOK_SINGLE_QUOTE =
"'"
TOK_BACKSLASH =
'\\'
TOK_EQUALS =
'='
TOK_SEMICOLON =
';'
TOK_NEW_LINE =
"\n"
TOK_N =
'n'
TOK_R =
'r'
TOK_T =
't'
TOK_CAP_U =
'U'
TOK_ZERO =
'0'
TOK_HEX_DIGIT =
/[0-9a-fA-F]/.freeze
STATE_START =

States

0
STATE_COMMENT_START =
1
STATE_COMMENT =
2
STATE_MULTILINE_COMMENT =
3
STATE_COMMENT_END =
4
STATE_KEY =
5
STATE_KEY_END =
6
STATE_VALUE_SEPARATOR =
7
STATE_VALUE =
8
STATE_VALUE_END =
9
STATE_UNICODE =
10
STATE_UNICODE_SURROGATE =
11
STATE_UNICODE_SURROGATE_U =
12

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeParser

Returns a new instance of Parser.



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/dotstrings/parser.rb', line 41

def initialize
  @state = STATE_START
  @temp_state = nil

  @buffer = []
  @unicode_buffer = []
  @high_surrogate = nil

  @escaping = false

  @current_comment = nil
  @current_key = nil
  @current_value = nil

  @item_block = nil

  @offset = 0
  @line = 1
  @column = 1
end

Instance Attribute Details

#itemsObject (readonly)

Returns the value of attribute items.



39
40
41
# File 'lib/dotstrings/parser.rb', line 39

def items
  @items
end

Instance Method Details

#<<(data) ⇒ Object

rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity, Metrics/BlockLength



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
# File 'lib/dotstrings/parser.rb', line 67

def <<(data)
  data.each_char do |ch|
    case @state
    when STATE_START
      start_value(ch)
    when STATE_COMMENT_START
      case ch
      when TOK_SLASH
        @state = STATE_COMMENT
      when TOK_ASTERISK
        @state = STATE_MULTILINE_COMMENT
      else
        raise_error("Unexpected character '#{ch}'")
      end
    when STATE_COMMENT
      if ch == TOK_NEW_LINE
        @state = STATE_COMMENT_END
        @current_comment = @buffer.join.strip
        @buffer.clear
      else
        @buffer << ch
      end
    when STATE_MULTILINE_COMMENT
      if ch == TOK_SLASH && @buffer.last == TOK_ASTERISK
        @state = STATE_COMMENT_END
        @current_comment = @buffer.slice(0, @buffer.length - 1).join.strip
        @buffer.clear
      else
        @buffer << ch
      end
    when STATE_COMMENT_END
      if ch == TOK_QUOTE
        @state = STATE_KEY
      else
        raise_error("Unexpected character '#{ch}'") unless whitespace?(ch)
      end
    when STATE_KEY
      parse_string(ch) do |key|
        @current_key = key
        @state = STATE_KEY_END
      end
    when STATE_KEY_END
      if ch == TOK_EQUALS
        @state = STATE_VALUE_SEPARATOR
      else
        raise_error("Unexpected character '#{ch}', expecting '#{TOK_EQUALS}'") unless whitespace?(ch)
      end
    when STATE_VALUE_SEPARATOR
      if ch == TOK_QUOTE
        @state = STATE_VALUE
      else
        raise_error("Unexpected character '#{ch}'") unless whitespace?(ch)
      end
    when STATE_VALUE
      parse_string(ch) do |value|
        @current_value = value
        @state = STATE_VALUE_END

        @item_block&.call(Item.new(
          comment: @current_comment,
          key: @current_key,
          value: @current_value
        ))
      end
    when STATE_VALUE_END
      if ch == TOK_SEMICOLON
        @state = STATE_START
      else
        raise_error("Unexpected character '#{ch}', expecting '#{TOK_SEMICOLON}'") unless whitespace?(ch)
      end
    when STATE_UNICODE
      parse_unicode(ch) do |unicode_ch|
        @buffer << unicode_ch
        # Restore state
        @state = @temp_state
      end
    when STATE_UNICODE_SURROGATE
      if ch == TOK_BACKSLASH
        @state = STATE_UNICODE_SURROGATE_U
      else
        raise_error("Unexpected character '#{ch}', expecting another unicode codepoint")
      end
    when STATE_UNICODE_SURROGATE_U
      if ch == TOK_CAP_U
        @state = STATE_UNICODE
      else
        raise_error("Unexpected character '#{ch}', expecting '#{TOK_CAP_U}'")
      end
    end

    update_position(ch)
  end
end

#on_item(&block) ⇒ Object



62
63
64
# File 'lib/dotstrings/parser.rb', line 62

def on_item(&block)
  @item_block = block
end