Skip to content
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
/ pman Public archive

๐Ÿ™ Multi Platform Process Manager focused on Ocis Extensions

License

Notifications You must be signed in to change notification settings

refs/pman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

49 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

ownCloud Infinite Scale: Runtime

Codacy Badge Go Reference Release

Pman is a slim utility library for supervising long-running processes. It can be embedded or used as a cli command.

When used as a CLI command it relays actions to a running runtime.

Usage

Start a runtime

package main
import "github.com/refs/pman/pkg/service"

func main() {
    service.Start()    
}

start runtime

Start sending messages message runtime

Example

package main

import (
	"fmt"
	"github.com/refs/pman/pkg/process"
	"github.com/refs/pman/pkg/service"
	"github.com/rs/zerolog/log"
	"os"
	"os/signal"
	"syscall"
	"time"
)

func main() {
	s := service.NewService()
	var c = make(chan os.Signal, 1)
	var o int

	signal.Notify(c, syscall.SIGINT, syscall.SIGTERM)
	if err := s.Start(process.NewProcEntry("ocs", nil, "ocs"), &o); err != nil {
		os.Exit(1)
	}

	time.AfterFunc(3*time.Second, func() {
		var acc = "ocs"
		fmt.Printf(fmt.Sprintf("shutting down service: %s", acc))
		if err := s.Controller.Kill(&acc); err != nil {
			log.Fatal()
		}
		os.Exit(0)
	})

	for {
		select {
		case <-c:
			return
		}
	}
}

Run the above example with RUNTIME_KEEP_ALIVE=true and with no RUNTIME_KEEP_ALIVE set to see its behavior. It requires an OCIS binary present in your $PATH for it to work.

Security

If you find a security issue please contact hello@zyxan.io ffirst.

Contributing

Fork -> Patch -> Push -> Pull Request

About

๐Ÿ™ Multi Platform Process Manager focused on Ocis Extensions

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages