Skip to content

Commit

Permalink
internal/debug: use go/build's Context to get the source directory
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimehoshi committed Oct 18, 2024
1 parent 0ce1f22 commit aae3e73
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions internal/debug/caller.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@
package debug

import (
"bytes"
"errors"
"fmt"
"os"
"os/exec"
"go/build"
"path"
"path/filepath"
"runtime"
Expand All @@ -43,22 +39,13 @@ const (
// FirstCaller returns the file and line number of the first caller outside of Ebitengine.
func FirstCaller() (file string, line int, callerType CallerType) {
ebitengineFileDirOnce.Do(func() {
var stderr bytes.Buffer
cmd := exec.Command("go", "list", "-f", "{{.Dir}}", "github.com/hajimehoshi/ebiten/v2")
cmd.Stderr = &stderr
out, err := cmd.Output()
if errors.Is(err, exec.ErrNotFound) {
return
}
pkg, err := build.Default.Import("github.com/hajimehoshi/ebiten/v2", "", build.FindOnly)
if err != nil {
fmt.Fprintf(os.Stderr, "debug: go list -f {{.Dir}} failed: %v\n", err)
fmt.Fprintf(os.Stderr, "%s\n", stderr.String())
return
}
ebitengineFileDir = filepath.ToSlash(strings.TrimSpace(string(out)))
ebitengineFileDir = filepath.ToSlash(pkg.Dir)
})

// Go command is not found.
if ebitengineFileDir == "" {
return "", 0, CallerTypeNone
}
Expand Down

0 comments on commit aae3e73

Please sign in to comment.