-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathconsole.go
More file actions
419 lines (380 loc) · 12.9 KB
/
console.go
File metadata and controls
419 lines (380 loc) · 12.9 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
// SPDX-License-Identifier: MIT
package main
import (
"context"
"encoding/json"
"fmt"
"os"
"strings"
str "github.com/boyter/go-string"
"github.com/fatih/color"
"github.com/mattn/go-isatty"
"github.com/boyter/cs/v3/pkg/common"
"github.com/boyter/cs/v3/pkg/ranker"
"github.com/boyter/cs/v3/pkg/snippet"
)
// ConsoleSearch runs a non-interactive search and prints results to stdout.
func ConsoleSearch(cfg *Config) {
query := strings.Join(cfg.SearchString, " ")
ctx := context.Background()
ch, stats, err := DoSearch(ctx, cfg, query, nil)
if err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
// Collect all results
var results []*common.FileJob
for fj := range ch {
results = append(results, fj)
}
// Rank results
textFileCount := int(stats.TextFileCount.Load())
testIntent := ranker.HasTestIntent(strings.Fields(query))
results = ranker.RankResults(cfg.Ranker, textFileCount, results, cfg.StructuralRankerConfig(), cfg.ResolveRankingProfile(), testIntent)
// Dedup (before limit, so freed slots get backfilled)
if cfg.Dedup {
results = ranker.DeduplicateResults(results)
}
// Apply result limit (after dedup)
if cfg.ResultLimit > 0 && len(results) > cfg.ResultLimit {
results = results[:cfg.ResultLimit]
}
// Reverse result order if requested
if cfg.Reverse {
for i, j := 0, len(results)-1; i < j; i, j = i+1, j-1 {
results[i], results[j] = results[j], results[i]
}
}
// Route to formatter
switch cfg.Format {
case "json":
formatJSON(cfg, results)
case "vimgrep":
formatVimGrep(cfg, results)
default:
formatDefault(cfg, results)
}
}
func formatDefault(cfg *Config, results []*common.FileJob) {
var noColor bool
switch cfg.Color {
case "always":
noColor = false
case "never":
noColor = true
default: // "auto"
noColor = os.Getenv("TERM") == "dumb" ||
(!isatty.IsTerminal(os.Stdout.Fd()) && !isatty.IsCygwinTerminal(os.Stdout.Fd()))
}
color.NoColor = noColor
fmtBegin := "\033[1;31m"
fmtEnd := "\033[0m"
if noColor {
fmtBegin = ""
fmtEnd = ""
}
documentFrequency := ranker.CalculateDocumentTermFrequency(results)
for _, res := range results {
fileMode := resolveSnippetMode(cfg.SnippetMode, res.Filename)
prose := snippet.IsProseFile(res.Extension)
if fileMode == "grep" {
ctxBefore, ctxAfter := cfg.ResolveContext()
lineResults := snippet.FindAllMatchingLines(res, cfg.LineLimit, ctxBefore, ctxAfter)
if len(lineResults) == 0 {
continue
}
lines := fmt.Sprintf("%d-%d", lineResults[0].LineNumber, lineResults[len(lineResults)-1].LineNumber)
codeStats := formatCodeStats(res)
if res.Language != "" {
color.Magenta(fmt.Sprintf("%s (%s) Lines %s (%.3f)%s", res.Location, res.Language, lines, res.Score, codeStats))
} else {
color.Magenta(fmt.Sprintf("%s Lines %s (%.3f)%s", res.Location, lines, res.Score, codeStats))
}
if res.DuplicateCount > 0 {
color.Cyan(fmt.Sprintf(" +%d duplicate(s) in: %s", res.DuplicateCount, strings.Join(res.DuplicateLocations, ", ")))
}
for _, lr := range lineResults {
var displayContent string
if !noColor && !cfg.NoSyntax {
displayContent = RenderANSILine(lr.Content, lr.Locs, prose)
} else {
displayContent = str.HighlightString(lr.Content, lr.Locs, fmtBegin, fmtEnd)
}
fmt.Printf("%4d %s\n", lr.LineNumber, displayContent)
}
fmt.Println("")
} else if fileMode == "lines" {
lineResults := snippet.FindMatchingLines(res, 2)
if len(lineResults) == 0 {
continue
}
lines := fmt.Sprintf("%d-%d", lineResults[0].LineNumber, lineResults[len(lineResults)-1].LineNumber)
codeStats := formatCodeStats(res)
if res.Language != "" {
color.Magenta(fmt.Sprintf("%s (%s) Lines %s (%.3f)%s", res.Location, res.Language, lines, res.Score, codeStats))
} else {
color.Magenta(fmt.Sprintf("%s Lines %s (%.3f)%s", res.Location, lines, res.Score, codeStats))
}
if res.DuplicateCount > 0 {
color.Cyan(fmt.Sprintf(" +%d duplicate(s) in: %s", res.DuplicateCount, strings.Join(res.DuplicateLocations, ", ")))
}
prevLine := 0
for _, lr := range lineResults {
if prevLine > 0 && lr.LineNumber > prevLine+1 {
fmt.Println("")
}
prevLine = lr.LineNumber
var displayContent string
if !noColor && !cfg.NoSyntax {
displayContent = RenderANSILine(lr.Content, lr.Locs, prose)
} else {
displayContent = str.HighlightString(lr.Content, lr.Locs, fmtBegin, fmtEnd)
}
fmt.Printf("%4d %s\n", lr.LineNumber, displayContent)
}
fmt.Println("")
} else {
snippets := snippet.ExtractRelevant(res, documentFrequency, cfg.SnippetLength)
if len(snippets) > cfg.SnippetCount {
snippets = snippets[:cfg.SnippetCount]
}
lines := ""
for i := 0; i < len(snippets); i++ {
lines += fmt.Sprintf("%d-%d ", snippets[i].LineStart, snippets[i].LineEnd)
}
codeStats := formatCodeStats(res)
if res.Language != "" {
color.Magenta(fmt.Sprintf("%s (%s) Lines %s(%.3f)%s", res.Location, res.Language, lines, res.Score, codeStats))
} else {
color.Magenta(fmt.Sprintf("%s Lines %s(%.3f)%s", res.Location, lines, res.Score, codeStats))
}
if res.DuplicateCount > 0 {
color.Cyan(fmt.Sprintf(" +%d duplicate(s) in: %s", res.DuplicateCount, strings.Join(res.DuplicateLocations, ", ")))
}
for i := 0; i < len(snippets); i++ {
// Get all match locations that fall within this snippet
var l [][]int
for _, value := range res.MatchLocations {
for _, s := range value {
if len(s) < 2 {
continue
}
if s[0] >= snippets[i].StartPos && s[1] <= snippets[i].EndPos {
l = append(l, []int{
s[0] - snippets[i].StartPos,
s[1] - snippets[i].StartPos,
})
}
}
}
displayContent := snippets[i].Content
// Highlight if we have positions to highlight
if !(snippets[i].StartPos == 0 && snippets[i].EndPos == 0) {
if !noColor && !cfg.NoSyntax {
displayContent = RenderANSILine(snippets[i].Content, l, prose)
} else {
displayContent = str.HighlightString(snippets[i].Content, l, fmtBegin, fmtEnd)
}
}
fmt.Println(displayContent)
if i == len(snippets)-1 {
fmt.Println("")
} else {
fmt.Println("")
fmt.Println("\u001B[1;37m……………snip……………\u001B[0m")
fmt.Println("")
}
}
}
}
}
// formatCodeStats returns a formatted string of code counting stats for a file result.
// Returns empty string if no stats are available.
func formatCodeStats(res *common.FileJob) string {
if res.Lines == 0 {
return ""
}
return fmt.Sprintf(" Lines:%d (Code:%d Comment:%d Blank:%d Complexity:%d)", res.Lines, res.Code, res.Comment, res.Blank, res.Complexity)
}
type jsonLineResult struct {
LineNumber int `json:"line_number"`
Content string `json:"content"`
Locs [][]int `json:"match_positions,omitempty"`
}
type jsonResult struct {
Filename string `json:"filename"`
Location string `json:"location"`
Content string `json:"content,omitempty"`
Score float64 `json:"score"`
MatchLocations [][]int `json:"matchlocations,omitempty"`
Lines []jsonLineResult `json:"lines,omitempty"`
Language string `json:"language,omitempty"`
TotalLines int64 `json:"total_lines"`
Code int64 `json:"code"`
Comment int64 `json:"comment"`
Blank int64 `json:"blank"`
Complexity int64 `json:"complexity"`
DuplicateCount int `json:"duplicate_count,omitempty"`
DuplicateLocations []string `json:"duplicate_locations,omitempty"`
}
// buildJSONResults converts ranked FileJob results into a slice of jsonResult
// suitable for JSON serialization. Used by both formatJSON and the MCP server.
func buildJSONResults(cfg *Config, results []*common.FileJob) []jsonResult {
var jsonResults []jsonResult
documentFrequency := ranker.CalculateDocumentTermFrequency(results)
for _, res := range results {
fileMode := resolveSnippetMode(cfg.SnippetMode, res.Filename)
if fileMode == "grep" {
ctxBefore, ctxAfter := cfg.ResolveContext()
lineResults := snippet.FindAllMatchingLines(res, cfg.LineLimit, ctxBefore, ctxAfter)
if len(lineResults) == 0 {
continue
}
var jLines []jsonLineResult
for _, lr := range lineResults {
jLines = append(jLines, jsonLineResult{
LineNumber: lr.LineNumber,
Content: lr.Content,
Locs: lr.Locs,
})
}
jsonResults = append(jsonResults, jsonResult{
Filename: res.Filename,
Location: res.Location,
Score: res.Score,
Lines: jLines,
Language: res.Language,
TotalLines: res.Lines,
Code: res.Code,
Comment: res.Comment,
Blank: res.Blank,
Complexity: res.Complexity,
DuplicateCount: res.DuplicateCount,
DuplicateLocations: res.DuplicateLocations,
})
} else if fileMode == "lines" {
lineResults := snippet.FindMatchingLines(res, 2)
if len(lineResults) == 0 {
continue
}
var jLines []jsonLineResult
for _, lr := range lineResults {
jLines = append(jLines, jsonLineResult{
LineNumber: lr.LineNumber,
Content: lr.Content,
Locs: lr.Locs,
})
}
jsonResults = append(jsonResults, jsonResult{
Filename: res.Filename,
Location: res.Location,
Score: res.Score,
Lines: jLines,
Language: res.Language,
TotalLines: res.Lines,
Code: res.Code,
Comment: res.Comment,
Blank: res.Blank,
Complexity: res.Complexity,
DuplicateCount: res.DuplicateCount,
DuplicateLocations: res.DuplicateLocations,
})
} else {
snippets := snippet.ExtractRelevant(res, documentFrequency, cfg.SnippetLength)
if len(snippets) == 0 {
continue
}
v3 := snippets[0]
var l [][]int
for _, value := range res.MatchLocations {
for _, s := range value {
if len(s) < 2 {
continue
}
if s[0] >= v3.StartPos && s[1] <= v3.EndPos {
l = append(l, []int{
s[0] - v3.StartPos,
s[1] - v3.StartPos,
})
}
}
}
jsonResults = append(jsonResults, jsonResult{
Filename: res.Filename,
Location: res.Location,
Content: v3.Content,
Score: res.Score,
MatchLocations: l,
Language: res.Language,
TotalLines: res.Lines,
Code: res.Code,
Comment: res.Comment,
Blank: res.Blank,
Complexity: res.Complexity,
DuplicateCount: res.DuplicateCount,
DuplicateLocations: res.DuplicateLocations,
})
}
}
return jsonResults
}
func formatJSON(cfg *Config, results []*common.FileJob) {
jsonResults := buildJSONResults(cfg, results)
jsonString, err := json.Marshal(jsonResults)
if err != nil {
fmt.Fprintf(os.Stderr, "error: failed to marshal JSON: %v\n", err)
os.Exit(1)
}
if cfg.FileOutput == "" {
fmt.Println(string(jsonString))
} else {
if err := os.WriteFile(cfg.FileOutput, jsonString, 0600); err != nil {
fmt.Fprintf(os.Stderr, "error: failed to write to %s: %v\n", cfg.FileOutput, err)
os.Exit(1)
}
fmt.Println("results written to " + cfg.FileOutput)
}
}
func formatVimGrep(cfg *Config, results []*common.FileJob) {
snippetLen := 50 // vim quickfix puts each hit on its own line
documentFrequency := ranker.CalculateDocumentTermFrequency(results)
var vimGrepOutput []string
for _, res := range results {
fileMode := resolveSnippetMode(cfg.SnippetMode, res.Filename)
if fileMode == "grep" {
lineResults := snippet.FindAllMatchingLines(res, cfg.LineLimit, 0, 0)
for _, lr := range lineResults {
col := 1
if len(lr.Locs) > 0 {
col = lr.Locs[0][0] + 1
}
hint := strings.ReplaceAll(lr.Content, "\n", "\\n")
line := fmt.Sprintf("%v:%v:%v:%v", res.Location, lr.LineNumber, col, hint)
vimGrepOutput = append(vimGrepOutput, line)
}
} else if fileMode == "lines" {
lineResults := snippet.FindMatchingLines(res, 0)
for _, lr := range lineResults {
col := 1
if len(lr.Locs) > 0 {
col = lr.Locs[0][0] + 1
}
hint := strings.ReplaceAll(lr.Content, "\n", "\\n")
line := fmt.Sprintf("%v:%v:%v:%v", res.Location, lr.LineNumber, col, hint)
vimGrepOutput = append(vimGrepOutput, line)
}
} else {
snippets := snippet.ExtractRelevant(res, documentFrequency, snippetLen)
if len(snippets) > cfg.SnippetCount {
snippets = snippets[:cfg.SnippetCount]
}
for _, snip := range snippets {
hint := strings.ReplaceAll(snip.Content, "\n", "\\n")
line := fmt.Sprintf("%v:%v:%v:%v", res.Location, snip.LineStart, snip.StartPos, hint)
vimGrepOutput = append(vimGrepOutput, line)
}
}
}
printable := strings.Join(vimGrepOutput, "\n")
fmt.Println(printable)
}