File: exec_other.go

package info (click to toggle)
gdu 5.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,280 kB
  • sloc: makefile: 145
file content (47 lines) | stat: -rw-r--r-- 787 bytes parent folder | download | duplicates (5)
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
//go:build !windows

package tui

import (
	"os"
	"os/signal"
	"syscall"
)

func getShellBin() string {
	shellbin, ok := os.LookupEnv("SHELL")
	if !ok {
		shellbin = "/bin/bash"
	}
	return shellbin
}

func (ui *UI) spawnShell() {
	if ui.currentDir == nil {
		return
	}

	ui.app.Suspend(func() {
		if err := os.Chdir(ui.currentDirPath); err != nil {
			ui.showErr("Error changing directory", err)
			return
		}

		if err := ui.exec(getShellBin(), nil, os.Environ()); err != nil {
			ui.showErr("Error executing shell", err)
		}
	})
}

func stopProcess() error {
	// chan for signal
	sigChan := make(chan os.Signal, 1)
	signal.Notify(sigChan, syscall.SIGCONT)
	defer signal.Stop(sigChan)

	err := syscall.Kill(syscall.Getpid(), syscall.SIGTSTP)
	// wait continue
	<-sigChan

	return err
}