a06f331eb8
CI / benchmark (push) Has been skipped
install-script / posix-syntax (push) Successful in 6m1s
CI / build-onnx (push) Failing after 6m43s
init-smoke / dry-run (push) Failing after 15m57s
security / govulncheck (push) Has been cancelled
security / trivy-fs (push) Has been cancelled
CI / test (1.26, ubuntu-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
CI / test (1.26, macos-latest) (push) Has been cancelled
CI / build-windows (push) Has been cancelled
CI / lint (push) Has been cancelled
install-script / powershell-syntax (push) Has been cancelled
install-script / install (macos-14) (push) Has been cancelled
install-script / install (ubuntu-latest) (push) Has been cancelled
96 lines
3.0 KiB
Go
96 lines
3.0 KiB
Go
package languages
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/zzet/gortex/internal/graph"
|
|
"github.com/zzet/gortex/internal/parser"
|
|
)
|
|
|
|
// PowerShell. Shapes we capture: `function Verb-Noun` and `filter`
|
|
// definitions, `class` declarations (PS 5.0+), `Import-Module` and
|
|
// dot-source statements. Verb-noun pairs may contain dashes — the name
|
|
// regex uses `[\w-]+`.
|
|
var (
|
|
psFunctionRe = regexp.MustCompile(`(?im)^\s*(?:function|filter)\s+(?:(?:global|local|script|private):)?([\w-]+)`)
|
|
psClassRe = regexp.MustCompile(`(?im)^\s*class\s+(\w+)`)
|
|
psImportRe = regexp.MustCompile(`(?im)^\s*Import-Module\s+(?:-Name\s+)?['"]?([\w./\\-]+)['"]?`)
|
|
psDotSourceRe = regexp.MustCompile(`(?im)^\s*\.\s+['"]?([\w./\\-]+\.ps[md]?1)['"]?`)
|
|
)
|
|
|
|
// PowerShellExtractor extracts PowerShell source using regex.
|
|
type PowerShellExtractor struct{}
|
|
|
|
func NewPowerShellExtractor() *PowerShellExtractor { return &PowerShellExtractor{} }
|
|
|
|
func (e *PowerShellExtractor) Language() string { return "powershell" }
|
|
func (e *PowerShellExtractor) Extensions() []string {
|
|
return []string{".ps1", ".psm1", ".psd1"}
|
|
}
|
|
|
|
func (e *PowerShellExtractor) Extract(filePath string, src []byte) (*parser.ExtractionResult, error) {
|
|
lines := strings.Split(string(src), "\n")
|
|
result := &parser.ExtractionResult{}
|
|
|
|
fileNode := &graph.Node{
|
|
ID: filePath, Kind: graph.KindFile, Name: filePath,
|
|
FilePath: filePath, StartLine: 1, EndLine: len(lines),
|
|
Language: "powershell",
|
|
}
|
|
result.Nodes = append(result.Nodes, fileNode)
|
|
|
|
seen := make(map[string]bool)
|
|
add := func(name string, kind graph.NodeKind, start, end int) {
|
|
if name == "" {
|
|
return
|
|
}
|
|
id := filePath + "::" + name
|
|
if seen[id] {
|
|
return
|
|
}
|
|
seen[id] = true
|
|
result.Nodes = append(result.Nodes, &graph.Node{
|
|
ID: id, Kind: kind, Name: name,
|
|
FilePath: filePath, StartLine: start, EndLine: end,
|
|
Language: "powershell",
|
|
})
|
|
result.Edges = append(result.Edges, &graph.Edge{
|
|
From: fileNode.ID, To: id, Kind: graph.EdgeDefines,
|
|
FilePath: filePath, Line: start,
|
|
})
|
|
}
|
|
|
|
for _, m := range psClassRe.FindAllSubmatchIndex(src, -1) {
|
|
name := string(src[m[2]:m[3]])
|
|
line := lineAt(src, m[0])
|
|
add(name, graph.KindType, line, findBlockEnd(lines, line))
|
|
}
|
|
for _, m := range psFunctionRe.FindAllSubmatchIndex(src, -1) {
|
|
name := string(src[m[2]:m[3]])
|
|
line := lineAt(src, m[0])
|
|
add(name, graph.KindFunction, line, findBlockEnd(lines, line))
|
|
}
|
|
|
|
for _, m := range psImportRe.FindAllSubmatchIndex(src, -1) {
|
|
mod := string(src[m[2]:m[3]])
|
|
line := lineAt(src, m[0])
|
|
result.Edges = append(result.Edges, &graph.Edge{
|
|
From: fileNode.ID, To: "unresolved::import::" + mod,
|
|
Kind: graph.EdgeImports, FilePath: filePath, Line: line,
|
|
})
|
|
}
|
|
for _, m := range psDotSourceRe.FindAllSubmatchIndex(src, -1) {
|
|
path := string(src[m[2]:m[3]])
|
|
line := lineAt(src, m[0])
|
|
result.Edges = append(result.Edges, &graph.Edge{
|
|
From: fileNode.ID, To: "unresolved::import::" + path,
|
|
Kind: graph.EdgeImports, FilePath: filePath, Line: line,
|
|
})
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
var _ parser.Extractor = (*PowerShellExtractor)(nil)
|