aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/homemade/scl/scope.go
blob: e8105aefd4e319cd7ec493387ce7fa08b29a250a (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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package scl

import (
	"fmt"
	"unicode"
)

type variable struct {
	name  string
	value string
}

type mixin struct {
	declaration *scannerLine
	arguments   []variable
	defaults    []string
}

type scope struct {
	parent      *scope
	branch      *scannerLine
	branchScope *scope
	variables   map[string]*variable
	mixins      map[string]*mixin
}

func newScope() *scope {
	return &scope{
		variables: make(map[string]*variable),
		mixins:    make(map[string]*mixin),
	}
}

func (s *scope) setArgumentVariable(name, value string) {
	s.variables[name] = &variable{name, value}
}

func (s *scope) setVariable(name, value string) {

	v, ok := s.variables[name]

	if !ok || v == nil {
		s.variables[name] = &variable{name, value}
	} else {
		s.variables[name].value = value
	}
}

func (s *scope) variable(name string) string {

	value, ok := s.variables[name]

	if !ok || value == nil {
		return ""
	}

	return s.variables[name].value
}

func (s *scope) setMixin(name string, declaration *scannerLine, argumentTokens []token, defaults []string) {

	mixin := &mixin{
		declaration: declaration,
		defaults:    defaults,
	}

	for _, t := range argumentTokens {
		mixin.arguments = append(mixin.arguments, variable{name: t.content})
	}

	s.mixins[name] = mixin
}

func (s *scope) removeMixin(name string) {
	delete(s.mixins, name)
}

func (s *scope) mixin(name string) (*mixin, error) {

	m, ok := s.mixins[name]

	if !ok {
		return nil, fmt.Errorf("Mixin %s not declared in this scope", name)
	}

	return m, nil
}

func (s *scope) interpolateLiteral(literal string) (outp string, err error) {

	isVariableChar := func(c rune) bool {
		return unicode.IsLetter(c) || unicode.IsDigit(c) || c == '_'
	}

	unknownVariable := func(name []byte) {
		err = fmt.Errorf("Unknown variable '$%s'", name)
	}

	unfinishedVariable := func(name []byte) {
		err = fmt.Errorf("Expecting closing right brace in variable ${%s}", name)
	}

	result := func() (result []byte) {

		var (
			backSlash    = '\\'
			dollar       = '$'
			leftBrace    = '{'
			rightBrace   = '}'
			backtick     = '`'
			slashEscaped = false

			variableStarted        = false
			variableIsBraceEscaped = false
			variable               = []byte{}
			literalStarted         = false
		)

		for _, c := range []byte(literal) {

			if literalStarted {

				if rune(c) == backtick {
					literalStarted = false
					continue
				}

				result = append(result, c)
				continue
			}

			if variableStarted {

				if len(variable) == 0 {

					// If the first character is a dollar, then this
					// is a $$var escape
					if rune(c) == dollar {
						variableStarted = false
						variableIsBraceEscaped = false

						// Write out two dollars – one for the skipped var
						// signifier, and the current one
						result = append(result, byte(dollar))
						continue
					}

					// If the first character is a curl brace,
					// it's the start of a ${var} syntax
					if !variableIsBraceEscaped {
						if rune(c) == leftBrace {
							variableIsBraceEscaped = true
							continue
						} else {
							variableIsBraceEscaped = false
						}
					}
				}

				// If this is a valid variable character,
				// add it to the variable building
				if isVariableChar(rune(c)) {
					variable = append(variable, c)
					continue
				}

				// If the variable is zero length, then it's a dollar literal
				if len(variable) == 0 {
					variableStarted = false
					variableIsBraceEscaped = false
					result = append(result, byte(dollar), c)
					continue
				}

				// Brace-escaped variables must end with a closing brace
				if variableIsBraceEscaped {
					if rune(c) != rightBrace {
						unfinishedVariable(variable)
						return
					}
				}

				writeOutput := !variableIsBraceEscaped

				// The variable has ended
				variableStarted = false
				variableIsBraceEscaped = false

				// The variable is complete; look up its value
				if replacement := s.variable(string(variable)); replacement != "" {
					result = append(result, []byte(replacement)...)

					if writeOutput {
						result = append(result, c)
					}

					continue
				}

				unknownVariable(variable)
				return
			}

			if slashEscaped {
				result = append(result, c)
				slashEscaped = false
				continue
			}

			switch rune(c) {
			case backSlash:
				slashEscaped = true
				continue

			case dollar:
				variableStarted, variable = true, []byte{}
				continue

			case backtick:
				literalStarted = true
				continue
			}

			result = append(result, c)

			slashEscaped = false
		}

		if literalStarted {
			err = fmt.Errorf("Unterminated backtick literal")
			return
		}

		// If the last character is a slash, add it
		if slashEscaped {
			result = append(result, byte(backSlash))
		}

		// The string ended mid-variable, so add it if possible
		if variableStarted {

			if variableIsBraceEscaped {
				unfinishedVariable(variable)
				return
			} else if replacement := s.variable(string(variable)); replacement != "" {
				result = append(result, []byte(replacement)...)
			} else {
				unknownVariable(variable)
				return
			}
		}

		return
	}()

	outp = string(result)

	return
}

func (s *scope) clone() *scope {

	s2 := newScope()
	s2.parent = s
	s2.branch = s.branch
	s2.branchScope = s.branchScope

	for k, v := range s.variables {
		s2.variables[k] = v
	}

	for k, v := range s.mixins {
		s2.mixins[k] = v
	}

	return s2
}