123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- // Copyright 2015 CoreOS, Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package main
- import (
- "fmt"
- "net"
- "os"
- "os/exec"
- "path"
- "time"
- "github.com/coreos/etcd/pkg/netutil"
- "github.com/coreos/etcd/tools/functional-tester/etcd-agent/client"
- )
- const (
- stateUninitialized = "uninitialized"
- stateStarted = "started"
- stateStopped = "stopped"
- stateTerminated = "terminated"
- )
- type Agent struct {
- state string // the state of etcd process
- cmd *exec.Cmd
- logfile *os.File
- l net.Listener
- }
- func newAgent(etcd string) (*Agent, error) {
- // check if the file exists
- _, err := os.Stat(etcd)
- if err != nil {
- return nil, err
- }
- c := exec.Command(etcd)
- f, err := os.Create("etcd.log")
- if err != nil {
- return nil, err
- }
- return &Agent{state: stateUninitialized, cmd: c, logfile: f}, nil
- }
- // start starts a new etcd process with the given args.
- func (a *Agent) start(args ...string) error {
- a.cmd = exec.Command(a.cmd.Path, args...)
- a.cmd.Stdout = a.logfile
- a.cmd.Stderr = a.logfile
- err := a.cmd.Start()
- if err != nil {
- return err
- }
- a.state = stateStarted
- return nil
- }
- // stop stops the existing etcd process the agent started.
- func (a *Agent) stop() error {
- if a.state != stateStarted {
- return nil
- }
- err := a.cmd.Process.Kill()
- if err != nil {
- return err
- }
- _, err = a.cmd.Process.Wait()
- if err != nil {
- return err
- }
- a.state = stateStopped
- return nil
- }
- // restart restarts the stopped etcd process.
- func (a *Agent) restart() error {
- a.cmd = exec.Command(a.cmd.Path, a.cmd.Args[1:]...)
- a.cmd.Stdout = a.logfile
- a.cmd.Stderr = a.logfile
- err := a.cmd.Start()
- if err != nil {
- return err
- }
- a.state = stateStarted
- return nil
- }
- func (a *Agent) cleanup() error {
- err := a.stop()
- if err != nil {
- return err
- }
- a.state = stateUninitialized
- a.logfile.Close()
- if err := archiveLogAndDataDir("etcd.log", a.dataDir()); err != nil {
- return err
- }
- f, err := os.Create("etcd.log")
- a.logfile = f
- return err
- }
- // terminate stops the exiting etcd process the agent started
- // and removes the data dir.
- func (a *Agent) terminate() error {
- err := a.stop()
- if err != nil {
- return err
- }
- err = os.RemoveAll(a.dataDir())
- if err != nil {
- return err
- }
- a.state = stateTerminated
- return nil
- }
- func (a *Agent) dropPort(port int) error {
- return netutil.DropPort(port)
- }
- func (a *Agent) recoverPort(port int) error {
- return netutil.RecoverPort(port)
- }
- func (a *Agent) status() client.Status {
- return client.Status{State: a.state}
- }
- func (a *Agent) dataDir() string {
- datadir := path.Join(a.cmd.Path, "*.etcd")
- args := a.cmd.Args
- // only parse the simple case like "-data-dir /var/lib/etcd"
- for i, arg := range args {
- if arg == "-data-dir" {
- datadir = args[i+1]
- break
- }
- }
- return datadir
- }
- func archiveLogAndDataDir(log string, datadir string) error {
- dir := path.Join("failure_archive", fmt.Sprint(time.Now().Format(time.RFC3339)))
- if err := os.MkdirAll(dir, 0700); err != nil {
- return err
- }
- if err := os.Rename(log, path.Join(dir, log)); err != nil {
- return err
- }
- return os.Rename(datadir, path.Join(dir, datadir))
- }
|