...
1 package memexec
2
3 import (
4 "context"
5 "os"
6 "os/exec"
7 )
8
9 type Option func(e *Exec)
10
11
12 type Exec struct {
13 f *os.File
14 opts []func(cmd *exec.Cmd)
15 clean func() error
16 }
17
18
19 func WithPrepare(fn func(cmd *exec.Cmd)) Option {
20 return func(e *Exec) {
21 e.opts = append(e.opts, fn)
22 }
23 }
24
25
26 func WithCleanup(fn func() error) Option {
27 return func(e *Exec) {
28 e.clean = fn
29 }
30 }
31
32
33
34 func New(b []byte, opts ...Option) (*Exec, error) {
35 f, err := open(b)
36 if err != nil {
37 return nil, err
38 }
39 e := &Exec{f: f}
40 for _, opt := range opts {
41 opt(e)
42 }
43 return e, nil
44 }
45
46
47
48 func (m *Exec) Command(args ...string) *exec.Cmd {
49 return m.CommandContext(context.Background(), args...)
50 }
51
52
53
54 func (m *Exec) CommandContext(ctx context.Context, args ...string) *exec.Cmd {
55 exe := exec.CommandContext(ctx, m.f.Name(), args...)
56 for _, opt := range m.opts {
57 opt(exe)
58 }
59 return exe
60 }
61
62
63
64
65
66 func (m *Exec) Close() error {
67 if err := clean(m.f); err != nil {
68 if m.clean != nil {
69 _ = m.clean()
70 }
71 return err
72 }
73 if m.clean == nil {
74 return nil
75 }
76 return m.clean()
77 }
78
View as plain text