MCPcopy Create free account
hub / github.com/alibaba/open-code-review / isMachineReadable

Function isMachineReadable

cmd/opencodereview/shared.go:317–324  ·  view source on GitHub ↗

isMachineReadable reports whether the output format writes a structured document to stdout that must not be interleaved with progress text. Both json and sarif move [ocr] progress lines off stdout and suppress the trace summary, which is already carried inside the document.

(outputFormat string)

Source from the content-addressed store, hash-verified

315// json and sarif move [ocr] progress lines off stdout and suppress the trace
316// summary, which is already carried inside the document.
317func isMachineReadable(outputFormat string) bool {
318 switch strings.ToLower(strings.TrimSpace(outputFormat)) {
319 case "json", "sarif":
320 return true
321 default:
322 return false
323 }
324}
325
326// newQuietHandle routes [ocr] progress lines away from stdout so they cannot
327// corrupt a structured output document. What it does depends on why stdout

Callers 5

newQuietHandleFunction · 0.85
resolveOutputWriterFunction · 0.85
emitRunResultFunction · 0.85
executeReviewContextFunction · 0.85
executeScanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected