forked from DataDog/go-sqllexer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalizer.go
More file actions
493 lines (428 loc) · 17.8 KB
/
normalizer.go
File metadata and controls
493 lines (428 loc) · 17.8 KB
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
package sqllexer
import (
"fmt"
"strings"
)
type normalizerConfig struct {
// CollectTables specifies whether the normalizer should also extract the table names that a query addresses
CollectTables bool `json:"collect_tables"`
// CollectCommands specifies whether the normalizer should extract and return commands as SQL metadata
CollectCommands bool `json:"collect_commands"`
// CollectComments specifies whether the normalizer should extract and return comments as SQL metadata
CollectComments bool `json:"collect_comments"`
// CollectProcedure specifies whether the normalizer should extract and return procedure name as SQL metadata
CollectProcedure bool `json:"collect_procedure"`
// KeepSQLAlias specifies whether SQL aliases ("AS") should be truncated.
KeepSQLAlias bool `json:"keep_sql_alias"`
// UppercaseKeywords specifies whether SQL keywords should be uppercased.
UppercaseKeywords bool `json:"uppercase_keywords"`
// RemoveSpaceBetweenParentheses specifies whether spaces should be kept between parentheses.
// Spaces are inserted between parentheses by default. but this can be disabled by setting this to true.
RemoveSpaceBetweenParentheses bool `json:"remove_space_between_parentheses"`
// KeepTrailingSemicolon specifies whether the normalizer should keep the trailing semicolon.
// The trailing semicolon is removed by default, but this can be disabled by setting this to true.
// PL/SQL requires a trailing semicolon, so this should be set to true when normalizing PL/SQL.
KeepTrailingSemicolon bool `json:"keep_trailing_semicolon"`
// KeepIdentifierQuotation specifies whether the normalizer should keep the quotation of identifiers.
KeepIdentifierQuotation bool `json:"keep_identifier_quotation"`
}
type normalizerOption func(*normalizerConfig)
func WithCollectTables(collectTables bool) normalizerOption {
return func(c *normalizerConfig) {
c.CollectTables = collectTables
}
}
func WithCollectCommands(collectCommands bool) normalizerOption {
return func(c *normalizerConfig) {
c.CollectCommands = collectCommands
}
}
func WithCollectComments(collectComments bool) normalizerOption {
return func(c *normalizerConfig) {
c.CollectComments = collectComments
}
}
func WithKeepSQLAlias(keepSQLAlias bool) normalizerOption {
return func(c *normalizerConfig) {
c.KeepSQLAlias = keepSQLAlias
}
}
func WithUppercaseKeywords(uppercaseKeywords bool) normalizerOption {
return func(c *normalizerConfig) {
c.UppercaseKeywords = uppercaseKeywords
}
}
func WithCollectProcedures(collectProcedure bool) normalizerOption {
return func(c *normalizerConfig) {
c.CollectProcedure = collectProcedure
}
}
func WithRemoveSpaceBetweenParentheses(removeSpaceBetweenParentheses bool) normalizerOption {
return func(c *normalizerConfig) {
c.RemoveSpaceBetweenParentheses = removeSpaceBetweenParentheses
}
}
func WithKeepTrailingSemicolon(keepTrailingSemicolon bool) normalizerOption {
return func(c *normalizerConfig) {
c.KeepTrailingSemicolon = keepTrailingSemicolon
}
}
func WithKeepIdentifierQuotation(keepIdentifierQuotation bool) normalizerOption {
return func(c *normalizerConfig) {
c.KeepIdentifierQuotation = keepIdentifierQuotation
}
}
type StatementMetadata struct {
Size int `json:"size"`
Tables []string `json:"tables"`
Comments []string `json:"comments"`
Commands []string `json:"commands"`
Procedures []string `json:"procedures"`
}
type metadataSet struct {
size int
tablesSet map[string]struct{}
commentsSet map[string]struct{}
commandsSet map[string]struct{}
proceduresSet map[string]struct{}
}
// addMetadata adds a value to a metadata slice if it doesn't exist in the set.
// The value is cloned to prevent retaining references to the original input string's
// backing array, which could cause memory retention issues if the caller holds on to the result.
func (m *metadataSet) addMetadata(value string, set map[string]struct{}, slice *[]string) {
if _, exists := set[value]; !exists {
cloned := strings.Clone(value)
set[cloned] = struct{}{}
*slice = append(*slice, cloned)
m.size += len(value)
}
}
type colonContext struct {
// Track the token type before a colon operator to distinguish between
// Oracle bind variables (:param) vs MySQL labels (label:) vs Snowflake semi-structured (obj:field)
tokenTypeBeforeColon TokenType
hasColon bool
}
type groupablePlaceholder struct {
groupable bool
}
type headState struct {
readFirstNonSpaceNonComment bool
inLeadingParenthesesExpression bool
foundLeadingExpressionInParentheses bool
standaloneExpressionInParentheses bool
expressionInParentheses strings.Builder
hasCommandInLeadingParentheses bool
parenthesesDepth int
}
type Normalizer struct {
config *normalizerConfig
}
func NewNormalizer(opts ...normalizerOption) *Normalizer {
normalizer := Normalizer{
config: &normalizerConfig{},
}
for _, opt := range opts {
opt(normalizer.config)
}
return &normalizer
}
// normalizeToken is a helper function that handles the common normalization logic
func (n *Normalizer) normalizeToken(lexer *Lexer, normalizedSQLBuilder *strings.Builder, meta *metadataSet, statementMetadata *StatementMetadata, preProcessToken func(*Token, *LastValueToken), lexerOpts ...lexerOption) (err error) {
defer func() {
if r := recover(); r != nil {
err = fmt.Errorf("error normalizing SQL token: %v", r)
}
}()
var groupablePlaceholder groupablePlaceholder
var headState headState
var colonCtx colonContext
var ctes map[string]bool // Lazily initialized when first CTE is encountered
var lastValueToken *LastValueToken
for {
token := lexer.Scan()
if preProcessToken != nil {
// pre-process the token, often used for obfuscation
preProcessToken(token, lastValueToken)
}
if n.shouldCollectMetadata() {
n.collectMetadata(token, lastValueToken, meta, statementMetadata, &ctes)
}
n.normalizeSQL(token, lastValueToken, normalizedSQLBuilder, &groupablePlaceholder, &headState, &colonCtx, lexerOpts...)
if token.Type == EOF {
break
}
if isValueToken(token) {
lastValueToken = token.getLastValueToken()
}
}
return nil
}
func (n *Normalizer) Normalize(input string, lexerOpts ...lexerOption) (normalizedSQL string, statementMetadata *StatementMetadata, err error) {
return n.normalize(input, nil, lexerOpts...)
}
// normalize is the internal implementation that handles the common normalization logic.
// preProcessToken is an optional function to process tokens before normalization (e.g., obfuscation).
func (n *Normalizer) normalize(input string, preProcessToken func(*Token, *LastValueToken), lexerOpts ...lexerOption) (normalizedSQL string, statementMetadata *StatementMetadata, err error) {
lexer := New(input, lexerOpts...)
var normalizedSQLBuilder strings.Builder
normalizedSQLBuilder.Grow(len(input))
meta := &metadataSet{
tablesSet: map[string]struct{}{},
commentsSet: map[string]struct{}{},
commandsSet: map[string]struct{}{},
proceduresSet: map[string]struct{}{},
}
statementMetadata = &StatementMetadata{
Tables: []string{},
Comments: []string{},
Commands: []string{},
Procedures: []string{},
}
if err = n.normalizeToken(lexer, &normalizedSQLBuilder, meta, statementMetadata, preProcessToken, lexerOpts...); err != nil {
return "", nil, err
}
normalizedSQL = strings.Clone(normalizedSQLBuilder.String())
statementMetadata.Size = meta.size
return n.trimNormalizedSQL(normalizedSQL), statementMetadata, nil
}
func (n *Normalizer) shouldCollectMetadata() bool {
return n.config.CollectTables || n.config.CollectCommands || n.config.CollectComments || n.config.CollectProcedure
}
func (n *Normalizer) collectMetadata(token *Token, lastValueToken *LastValueToken, meta *metadataSet, statementMetadata *StatementMetadata, ctes *map[string]bool) {
if n.config.CollectComments && (token.Type == COMMENT || token.Type == MULTILINE_COMMENT) {
comment := token.Value
meta.addMetadata(comment, meta.commentsSet, &statementMetadata.Comments)
} else if token.Type == COMMAND {
if n.config.CollectCommands {
command := strings.ToUpper(token.Value)
meta.addMetadata(command, meta.commandsSet, &statementMetadata.Commands)
}
} else if token.Type == IDENT || token.Type == QUOTED_IDENT || token.Type == FUNCTION {
tokenVal := token.Value
if token.Type == QUOTED_IDENT {
tokenVal = trimQuotes(token)
if n.shouldStripIdentifierQuotes(token, lastValueToken) {
// trim quotes and set the token type to IDENT
token.Value = tokenVal
token.Type = IDENT
}
}
// Only collect metadata if we have context from the previous token
if lastValueToken != nil {
// Track CTE names so we can exclude them from the tables list
if lastValueToken.Type == CTE_INDICATOR {
if *ctes == nil {
*ctes = make(map[string]bool, 2)
}
(*ctes)[tokenVal] = true
} else if n.config.CollectTables && lastValueToken.isTableIndicator {
// Collect table names, excluding any CTEs
isCTE := *ctes != nil && (*ctes)[tokenVal]
if !isCTE {
meta.addMetadata(tokenVal, meta.tablesSet, &statementMetadata.Tables)
}
} else if n.config.CollectProcedure && lastValueToken.Type == PROC_INDICATOR {
// Collect procedure names
meta.addMetadata(tokenVal, meta.proceduresSet, &statementMetadata.Procedures)
}
}
}
}
func (n *Normalizer) normalizeSQL(token *Token, lastValueToken *LastValueToken, normalizedSQLBuilder *strings.Builder, groupablePlaceholder *groupablePlaceholder, headState *headState, colonCtx *colonContext, lexerOpts ...lexerOption) {
if token.Type != SPACE && token.Type != COMMENT && token.Type != MULTILINE_COMMENT {
if token.Type == QUOTED_IDENT && !n.config.KeepIdentifierQuotation {
if n.shouldStripIdentifierQuotes(token, lastValueToken) {
token.Value = trimQuotes(token)
}
}
// handle leading expression in parentheses
if !headState.readFirstNonSpaceNonComment {
headState.readFirstNonSpaceNonComment = true
if token.Type == PUNCTUATION && token.Value == "(" {
headState.inLeadingParenthesesExpression = true
headState.standaloneExpressionInParentheses = true
headState.parenthesesDepth = 1
// Write the opening parenthesis to the buffer and return
// to avoid double-processing it in the inLeadingParenthesesExpression block below
headState.expressionInParentheses.WriteString(token.Value)
return
}
}
if token.Type == EOF {
if headState.standaloneExpressionInParentheses {
normalizedSQLBuilder.WriteString(headState.expressionInParentheses.String())
}
return
} else if headState.foundLeadingExpressionInParentheses {
// If the leading parentheses contained a SQL command (like SELECT),
// it's a SQL statement, not a parameter declaration, so write it out
if headState.hasCommandInLeadingParentheses {
normalizedSQLBuilder.WriteString(headState.expressionInParentheses.String())
}
headState.standaloneExpressionInParentheses = false
headState.foundLeadingExpressionInParentheses = false
}
if token.Type == DOLLAR_QUOTED_FUNCTION && token.Value != StringPlaceholder {
// if the token is a dollar quoted function and it is not obfuscated,
// we need to recusively normalize the content of the dollar quoted function
quotedFunc := token.Value[6 : len(token.Value)-6] // remove the $func$ prefix and suffix
normalizedQuotedFunc, _, err := n.Normalize(quotedFunc)
if err == nil {
// replace the content of the dollar quoted function with the normalized content
// if there is an error, we just keep the original content
var normalizedDollarQuotedFunc strings.Builder
normalizedDollarQuotedFunc.Grow(len(normalizedQuotedFunc) + 12)
normalizedDollarQuotedFunc.WriteString("$func$")
normalizedDollarQuotedFunc.WriteString(normalizedQuotedFunc)
normalizedDollarQuotedFunc.WriteString("$func$")
token.Value = normalizedDollarQuotedFunc.String()
}
}
if !n.config.KeepSQLAlias {
// discard SQL alias
if token.Type == ALIAS_INDICATOR {
return
}
if lastValueToken != nil && lastValueToken.Type == ALIAS_INDICATOR {
if token.Type == IDENT || token.Type == QUOTED_IDENT {
return
} else {
// if the last token is AS and the current token is not IDENT,
// this could be a CTE like WITH ... AS (...),
// so we do not discard the current token
n.appendSpace(token, lastValueToken, normalizedSQLBuilder, colonCtx)
n.writeToken(lastValueToken.Type, lastValueToken.Value, normalizedSQLBuilder)
}
}
}
// group consecutive obfuscated values into single placeholder
if n.isObfuscatedValueGroupable(token, lastValueToken, groupablePlaceholder, normalizedSQLBuilder) {
// return the token but not write it to the normalizedSQLBuilder
return
}
if headState.inLeadingParenthesesExpression {
n.appendSpace(token, lastValueToken, &headState.expressionInParentheses, colonCtx)
n.writeToken(token.Type, token.Value, &headState.expressionInParentheses)
// Track if we find a SQL command in the leading parentheses
if token.Type == COMMAND {
headState.hasCommandInLeadingParentheses = true
}
if token.Type == PUNCTUATION && token.Value == "(" {
headState.parenthesesDepth++
} else if token.Type == PUNCTUATION && token.Value == ")" {
headState.parenthesesDepth--
if headState.parenthesesDepth == 0 {
headState.inLeadingParenthesesExpression = false
headState.foundLeadingExpressionInParentheses = true
}
}
} else {
n.appendSpace(token, lastValueToken, normalizedSQLBuilder, colonCtx)
n.writeToken(token.Type, token.Value, normalizedSQLBuilder)
}
// Track colon context for next token
if token.Value == ":" {
colonCtx.hasColon = true
if lastValueToken != nil {
colonCtx.tokenTypeBeforeColon = lastValueToken.Type
} else {
colonCtx.tokenTypeBeforeColon = EOF // Use EOF as "no token"
}
} else if colonCtx.hasColon {
// Reset after processing the token following the colon
colonCtx.hasColon = false
colonCtx.tokenTypeBeforeColon = EOF
}
}
}
func (n *Normalizer) shouldStripIdentifierQuotes(token *Token, lastValueToken *LastValueToken) bool {
if n.config.KeepIdentifierQuotation {
return false
}
if token == nil {
return true
}
if isAliasContext(lastValueToken) && !token.isSimpleIdentifier {
return false
}
return true
}
func isAliasContext(lastValueToken *LastValueToken) bool {
return lastValueToken != nil && lastValueToken.Type == ALIAS_INDICATOR
}
func (n *Normalizer) writeToken(tokenType TokenType, tokenValue string, normalizedSQLBuilder *strings.Builder) {
if n.config.UppercaseKeywords && (tokenType == COMMAND || tokenType == KEYWORD) {
normalizedSQLBuilder.WriteString(strings.ToUpper(tokenValue))
} else {
normalizedSQLBuilder.WriteString(tokenValue)
}
}
func (n *Normalizer) isObfuscatedValueGroupable(token *Token, lastValueToken *LastValueToken, groupablePlaceholder *groupablePlaceholder, normalizedSQLBuilder *strings.Builder) bool {
if token.Value == NumberPlaceholder || token.Value == StringPlaceholder {
if lastValueToken == nil {
// if the last token is nil, we know it's the start of groupable placeholders
return false
}
if lastValueToken.Value == "(" || lastValueToken.Value == "[" {
// if the last token is "(" or "[", and the current token is a placeholder,
// we know it's the start of groupable placeholders
// we don't return here because we still need to write the first placeholder
groupablePlaceholder.groupable = true
} else if lastValueToken.Value == "," && groupablePlaceholder.groupable {
return true
}
}
if lastValueToken != nil && (lastValueToken.Value == NumberPlaceholder || lastValueToken.Value == StringPlaceholder) && token.Value == "," && groupablePlaceholder.groupable {
return true
}
if groupablePlaceholder.groupable && (token.Value == ")" || token.Value == "]") {
// end of groupable placeholders
groupablePlaceholder.groupable = false
return false
}
if groupablePlaceholder.groupable && token.Value != NumberPlaceholder && token.Value != StringPlaceholder && lastValueToken != nil && lastValueToken.Value == "," {
// This is a tricky edge case. If we are inside a groupbale block, and the current token is not a placeholder,
// we not only want to write the current token to the normalizedSQLBuilder, but also write the last comma that we skipped.
// For example, (?, ARRAY[?, ?, ?]) should be normalized as (?, ARRAY[?])
normalizedSQLBuilder.WriteString(lastValueToken.Value)
return false
}
return false
}
func (n *Normalizer) appendSpace(token *Token, lastValueToken *LastValueToken, normalizedSQLBuilder *strings.Builder, colonCtx *colonContext) {
// do not add a space between parentheses if RemoveSpaceBetweenParentheses is true
if n.config.RemoveSpaceBetweenParentheses && lastValueToken != nil && (lastValueToken.Type == FUNCTION || lastValueToken.Value == "(" || lastValueToken.Value == "[") {
return
}
if n.config.RemoveSpaceBetweenParentheses && (token.Value == ")" || token.Value == "]") {
return
}
// do not add a space after a colon when followed by an identifier or quoted identifier,
// BUT only if the token before the colon was NOT an identifier (to preserve MySQL labels and Snowflake semi-structured access)
// This handles Oracle bind variables like :param or :"param"
if lastValueToken != nil && lastValueToken.Value == ":" && (token.Type == IDENT || token.Type == QUOTED_IDENT) {
if colonCtx.hasColon && colonCtx.tokenTypeBeforeColon != IDENT && colonCtx.tokenTypeBeforeColon != QUOTED_IDENT {
// This is likely a bind variable (e.g., = :param), not a label (e.g., label : LOOP)
return
}
}
switch token.Value {
case ",", ";":
return
case "=":
if lastValueToken != nil && lastValueToken.Value == ":" {
return
}
fallthrough
default:
normalizedSQLBuilder.WriteString(" ")
}
}
func (n *Normalizer) trimNormalizedSQL(normalizedSQL string) string {
if !n.config.KeepTrailingSemicolon {
// Remove trailing semicolon
normalizedSQL = strings.TrimSuffix(normalizedSQL, ";")
}
return strings.TrimSpace(normalizedSQL)
}