2019-09-14 07:33:14 +03:00
|
|
|
// Package runtime is a service runtime manager
|
|
|
|
package runtime
|
|
|
|
|
|
|
|
// Runtime is a service runtime manager
|
|
|
|
type Runtime interface {
|
|
|
|
// Registers a service
|
2019-09-24 20:32:35 +03:00
|
|
|
Create(*Service, ...CreateOption) error
|
2019-09-14 07:58:03 +03:00
|
|
|
// Remove a service
|
|
|
|
Delete(*Service) error
|
2019-09-14 07:33:14 +03:00
|
|
|
// starts the runtime
|
2019-09-14 07:58:03 +03:00
|
|
|
Start() error
|
2019-09-14 07:33:14 +03:00
|
|
|
// Shutdown the runtime
|
|
|
|
Stop() error
|
|
|
|
}
|
|
|
|
|
|
|
|
type Service struct {
|
|
|
|
// name of the service
|
|
|
|
Name string
|
|
|
|
// url location of source
|
|
|
|
Source string
|
|
|
|
// path to store source
|
|
|
|
Path string
|
|
|
|
// exec command
|
|
|
|
Exec string
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
DefaultRuntime = newRuntime()
|
|
|
|
)
|
|
|
|
|
2019-09-24 20:32:35 +03:00
|
|
|
func Create(s *Service, opts ...CreateOption) error {
|
|
|
|
return DefaultRuntime.Create(s, opts...)
|
2019-09-14 07:33:14 +03:00
|
|
|
}
|
|
|
|
|
2019-09-14 07:58:03 +03:00
|
|
|
func Delete(s *Service) error {
|
|
|
|
return DefaultRuntime.Delete(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Start() error {
|
|
|
|
return DefaultRuntime.Start()
|
2019-09-14 07:33:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func Stop() error {
|
|
|
|
return DefaultRuntime.Stop()
|
|
|
|
}
|