Skip to content

Commit

Permalink
Merge branch 'release/0.7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
takama committed Oct 22, 2016
2 parents 2d1aaa3 + e2d744b commit 8b61c63
Show file tree
Hide file tree
Showing 3 changed files with 285 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ func main() {
- [Pichu Chen](https://github.com/PichuChen)
- [Eric Halpern](https://github.com/ehalpern)
- [Yota](https://github.com/nus)
- [Erkan Durmus](https://github.com/derkan)

All the contributors are welcome. If you would like to be the contributor please accept some rules.
- The pull requests will be accepted only in "develop" branch
Expand Down
2 changes: 1 addition & 1 deletion daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.

/*
Package daemon 0.6.2 for use with Go (golang) services.
Package daemon 0.7.0 for use with Go (golang) services.
Package daemon provides primitives for daemonization of golang services.
This package is not provide implementation of user daemon,
Expand Down
283 changes: 283 additions & 0 deletions daemon_freebsd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,283 @@
package daemon

//#include <sys/types.h>
//#include <sys/sysctl.h>
import "C"

import (
"unsafe"
"fmt"
"bytes"
"path/filepath"
"os"
"os/exec"
"regexp"
"strings"
"text/template"
"io/ioutil"
)


// systemVRecord - standard record (struct) for linux systemV version of daemon package
type bsdRecord struct {
name string
description string
dependencies []string
}

// Standard service path for systemV daemons
func (bsd *bsdRecord) servicePath() string {
return "/usr/local/etc/rc.d/" + bsd.name
}

// Is a service installed
func (bsd *bsdRecord) isInstalled() bool {

if _, err := os.Stat(bsd.servicePath()); err == nil {
return true
}

return false
}

// Is a service is enabled
func (bsd *bsdRecord) isEnabled() (bool, error) {
rcConf, err := os.Open("/etc/rc.conf")
if err != nil {
fmt.Println("Error opening file:", err)
return false, err
}
defer rcConf.Close()
rcData, _ := ioutil.ReadAll(rcConf)
r, _ := regexp.Compile(`.*` + bsd.name + `_enable="YES".*`)
v := string(r.Find(rcData))
var chrFound, sharpFound bool
for _, c := range(v){
if c == '#' && !chrFound{
sharpFound = true
break
}else if !sharpFound && c != ' '{
chrFound = true
break
}
}
return chrFound, nil
}


func (bsd *bsdRecord) getCmd(cmd string) string {
if ok, err := bsd.isEnabled(); !ok || err != nil {
fmt.Println("Service is not enabled, using one" + cmd + " instead")
cmd = "one" + cmd
}
return cmd
}


// Get the daemon properly
func newDaemon(name, description string, dependencies []string) (Daemon, error) {
return &bsdRecord{name, description, dependencies}, nil
}

// From https://github.com/VividCortex/godaemon/blob/master/daemon_freebsd.go (MIT)
func execPath() (string, error) {
PATH_MAX := 1024 // From <sys/syslimits.h>
exePath := make([]byte, PATH_MAX)
exeLen := C.size_t(len(exePath))

// Beware: sizeof(int) != sizeof(C.int)
var mib [4]C.int
// From <sys/sysctl.h>
mib[0] = 1 // CTL_KERN
mib[1] = 14 // KERN_PROC
mib[2] = 12 // KERN_PROC_PATHNAME
mib[3] = -1

status, err := C.sysctl((*C.int)(unsafe.Pointer(&mib[0])), 4, unsafe.Pointer(&exePath[0]), &exeLen, nil, 0)

if err != nil {
return "", fmt.Errorf("sysctl: %v", err)
}

// Not sure why this might happen with err being nil, but...
if status != 0 {
return "", fmt.Errorf("sysctl returned %d", status)
}

// Convert from null-padded []byte to a clean string. (Can't simply cast!)
exePathStringLen := bytes.Index(exePath, []byte{0})
exePathString := string(exePath[:exePathStringLen])

return filepath.Clean(exePathString), nil
}


// Check service is running
func (bsd *bsdRecord) checkRunning() (string, bool) {
output, err := exec.Command("service", bsd.name, bsd.getCmd("status")).Output()
if err == nil {
if matched, err := regexp.MatchString(bsd.name, string(output)); err == nil && matched {
reg := regexp.MustCompile("pid ([0-9]+)")
data := reg.FindStringSubmatch(string(output))
if len(data) > 1 {
return "Service (pid " + data[1] + ") is running...", true
}
return "Service is running...", true
}
}

return "Service is stopped", false
}

// Install the service
func (bsd *bsdRecord) Install(args ...string) (string, error) {
installAction := "Install " + bsd.description + ":"

if ok, err := checkPrivileges(); !ok {
return installAction + failed, err
}

srvPath := bsd.servicePath()

if bsd.isInstalled() {
return installAction + failed, ErrAlreadyInstalled
}

file, err := os.Create(srvPath)
if err != nil {
return installAction + failed, err
}
defer file.Close()

execPatch, err := executablePath(bsd.name)
if err != nil {
return installAction + failed, err
}

templ, err := template.New("bsdConfig").Parse(bsdConfig)
if err != nil {
return installAction + failed, err
}

if err := templ.Execute(
file,
&struct {
Name, Description, Path, Args string
}{bsd.name, bsd.description, execPatch, strings.Join(args, " ")},
); err != nil {
return installAction + failed, err
}

if err := os.Chmod(srvPath, 0755); err != nil {
return installAction + failed, err
}

return installAction + success, nil
}

// Remove the service
func (bsd *bsdRecord) Remove() (string, error) {
removeAction := "Removing " + bsd.description + ":"

if ok, err := checkPrivileges(); !ok {
return removeAction + failed, err
}

if !bsd.isInstalled() {
return removeAction + failed, ErrNotInstalled
}

if err := os.Remove(bsd.servicePath()); err != nil {
return removeAction + failed, err
}

return removeAction + success, nil
}


// Start the service
func (bsd *bsdRecord) Start() (string, error) {
startAction := "Starting " + bsd.description + ":"

if ok, err := checkPrivileges(); !ok {
return startAction + failed, err
}

if !bsd.isInstalled() {
return startAction + failed, ErrNotInstalled
}

if _, ok := bsd.checkRunning(); ok {
return startAction + failed, ErrAlreadyRunning
}

if err := exec.Command("service", bsd.name, bsd.getCmd("start")).Run(); err != nil {
return startAction + failed, err
}

return startAction + success, nil
}

// Stop the service
func (bsd *bsdRecord) Stop() (string, error) {
stopAction := "Stopping " + bsd.description + ":"

if ok, err := checkPrivileges(); !ok {
return stopAction + failed, err
}

if !bsd.isInstalled() {
return stopAction + failed, ErrNotInstalled
}

if _, ok := bsd.checkRunning(); !ok {
return stopAction + failed, ErrAlreadyStopped
}

if err := exec.Command("service", bsd.name, bsd.getCmd("stop")).Run(); err != nil {
return stopAction + failed, err
}

return stopAction + success, nil
}

// Status - Get service status
func (bsd *bsdRecord) Status() (string, error) {

if ok, err := checkPrivileges(); !ok {
return "", err
}

if !bsd.isInstalled() {
return "Status could not defined", ErrNotInstalled
}

statusAction, _ := bsd.checkRunning()

return statusAction, nil
}

var bsdConfig = `#!/bin/sh
#
# PROVIDE: {{.Name}}
# REQUIRE: networking syslog
# KEYWORD:
# Add the following lines to /etc/rc.conf to enable the {{.Name}}:
#
# {{.Name}}_enable="YES"
#
. /etc/rc.subr
name="{{.Name}}"
rcvar="{{.Name}}_enable"
command="{{.Path}}"
pidfile="/var/run/$name.pid"
start_cmd="/usr/sbin/daemon -p $pidfile -f $command {{.Args}}"
load_rc_config $name
run_rc_command "$1"
`

0 comments on commit 8b61c63

Please sign in to comment.