2016-02-04 21:34:14 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2016-02-04 21:53:30 +00:00
|
|
|
"os"
|
2016-02-04 21:34:14 +00:00
|
|
|
|
2016-02-04 21:53:30 +00:00
|
|
|
"github.com/hashicorp/go-multierror"
|
2016-02-04 21:34:14 +00:00
|
|
|
"github.com/hashicorp/go-plugin"
|
2016-02-05 00:03:17 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/executor"
|
2016-02-04 21:34:14 +00:00
|
|
|
)
|
|
|
|
|
2016-02-05 00:03:17 +00:00
|
|
|
func createExecutor(config *plugin.ClientConfig, w io.Writer) (executor.Executor, *plugin.Client, error) {
|
|
|
|
config.HandshakeConfig = HandshakeConfig
|
|
|
|
config.Plugins = PluginMap
|
2016-02-04 21:34:14 +00:00
|
|
|
config.SyncStdout = w
|
|
|
|
config.SyncStderr = w
|
|
|
|
executorClient := plugin.NewClient(config)
|
|
|
|
rpcClient, err := executorClient.Client()
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf("error creating rpc client for executor plugin: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
raw, err := rpcClient.Dispense("executor")
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, fmt.Errorf("unable to dispense the executor plugin: %v", err)
|
|
|
|
}
|
2016-02-05 00:03:17 +00:00
|
|
|
executorPlugin := raw.(executor.Executor)
|
2016-02-04 21:34:14 +00:00
|
|
|
return executorPlugin, executorClient, nil
|
|
|
|
}
|
2016-02-04 21:53:30 +00:00
|
|
|
|
|
|
|
func killProcess(pid int) error {
|
|
|
|
proc, err := os.FindProcess(pid)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return proc.Kill()
|
|
|
|
}
|
|
|
|
|
|
|
|
func destroyPlugin(pluginPid int, userPid int) error {
|
|
|
|
var merr error
|
|
|
|
if err := killProcess(pluginPid); err != nil {
|
|
|
|
merr = multierror.Append(merr, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := killProcess(userPid); err != nil {
|
|
|
|
merr = multierror.Append(merr, err)
|
|
|
|
}
|
|
|
|
return merr
|
|
|
|
}
|