...

Package memexec

import "github.com/amenzhinsky/go-memexec"
Overview
Index
Subdirectories

Overview ▾

type Exec

Exec is an in-memory executable code unit.

type Exec struct {
    // contains filtered or unexported fields
}

func New

func New(b []byte, opts ...Option) (*Exec, error)

New creates new memory execution object that can be used for executing commands on a memory based binary.

func (*Exec) Close

func (m *Exec) Close() error

Close closes Exec object.

Any further command will fail, it's client's responsibility to control the flow by using synchronization algorithms.

func (*Exec) Command

func (m *Exec) Command(args ...string) *exec.Cmd

Command is an equivalent of `exec.Command`, except that the path to the executable is being omitted.

func (*Exec) CommandContext

func (m *Exec) CommandContext(ctx context.Context, args ...string) *exec.Cmd

CommandContext is an equivalent of `exec.CommandContext`, except that the path to the executable is being omitted.

type Option

type Option func(e *Exec)

func WithCleanup

func WithCleanup(fn func() error) Option

WithCleanup is executed right after Exec.Close.

func WithPrepare

func WithPrepare(fn func(cmd *exec.Cmd)) Option

WithPrepare configures cmd with default values such as Env, Dir, etc.

Subdirectories

Name Synopsis
..
cmd
memexec-gen