with '#' will be ignored, and an empty message aborts the commit. Author: Ethan Alicea <64653625+Tech-Gamer@users.noreply.github.com> On branch develop Your branch is up to date with 'origin/develop'. Changes to be committed: modified: .github/workflows/push.yaml modified: .github/workflows/release.yaml modified: CHANGELOG.md modified: Dockerfile modified: Makefile modified: README.md modified: cmd/configure.go modified: cmd/diagnostics.go modified: cmd/root.go modified: config/config.go modified: environment/allocations.go modified: environment/docker.go modified: environment/docker/api.go modified: environment/docker/container.go modified: environment/docker/environment.go modified: environment/docker/power.go modified: environment/docker/stats.go modified: environment/environment.go modified: environment/settings.go modified: events/events.go modified: go.mod modified: internal/cron/activity_cron.go modified: internal/cron/cron.go modified: internal/cron/sftp_cron.go modified: internal/database/database.go modified: internal/progress/progress.go modified: internal/progress/progress_test.go modified: loggers/cli/cli.go new file: oryxBuildBinary modified: parser/parser.go modified: remote/http.go modified: remote/servers.go modified: remote/types.go modified: router/downloader/downloader.go modified: router/middleware.go modified: router/middleware/middleware.go modified: router/middleware/request_error.go modified: router/router.go modified: router/router_download.go modified: router/router_server.go modified: router/router_server_backup.go modified: router/router_server_files.go modified: router/router_server_transfer.go modified: router/router_server_ws.go modified: router/router_system.go modified: router/router_transfer.go modified: router/tokens/parser.go modified: router/websocket/listeners.go modified: router/websocket/websocket.go modified: server/activity.go modified: server/backup.go modified: server/backup/backup.go modified: server/backup/backup_local.go modified: server/backup/backup_s3.go modified: server/configuration.go modified: server/console.go modified: server/crash.go modified: server/events.go modified: server/filesystem/archive.go modified: server/filesystem/filesystem.go modified: server/filesystem/filesystem_test.go modified: server/install.go modified: server/installer/installer.go modified: server/listeners.go modified: server/manager.go modified: server/mounts.go modified: server/power.go modified: server/power_test.go modified: server/resources.go modified: server/server.go modified: server/transfer/archive.go modified: server/transfer/source.go modified: server/transfer/transfer.go modified: server/update.go modified: sftp/event.go modified: sftp/handler.go modified: sftp/server.go modified: wings.go
117 lines
4.4 KiB
Go
117 lines
4.4 KiB
Go
package environment
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/Tech-Gamer/nwy-wings/events"
|
|
)
|
|
|
|
const (
|
|
StateChangeEvent = "state change"
|
|
ResourceEvent = "resources"
|
|
DockerImagePullStarted = "docker image pull started"
|
|
DockerImagePullStatus = "docker image pull status"
|
|
DockerImagePullCompleted = "docker image pull completed"
|
|
)
|
|
|
|
const (
|
|
ProcessOfflineState = "offline"
|
|
ProcessStartingState = "starting"
|
|
ProcessRunningState = "running"
|
|
ProcessStoppingState = "stopping"
|
|
)
|
|
|
|
// Defines the basic interface that all environments need to implement so that
|
|
// a server can be properly controlled.
|
|
type ProcessEnvironment interface {
|
|
// Returns the name of the environment.
|
|
Type() string
|
|
|
|
// Returns the environment configuration to the caller.
|
|
Config() *Configuration
|
|
|
|
// Returns an event emitter instance that can be hooked into to listen for different
|
|
// events that are fired by the environment. This should not allow someone to publish
|
|
// events, only subscribe to them.
|
|
Events() *events.Bus
|
|
|
|
// Determines if the server instance exists. For example, in a docker environment
|
|
// this should confirm that the container is created and in a bootable state. In
|
|
// a basic CLI environment this can probably just return true right away.
|
|
Exists() (bool, error)
|
|
|
|
// IsRunning determines if the environment is currently active and running
|
|
// a server process for this specific server instance.
|
|
IsRunning(ctx context.Context) (bool, error)
|
|
|
|
// Performs an update of server resource limits without actually stopping the server
|
|
// process. This only executes if the environment supports it, otherwise it is
|
|
// a no-op.
|
|
InSituUpdate() error
|
|
|
|
// Runs before the environment is started. If an error is returned starting will
|
|
// not occur, otherwise proceeds as normal.
|
|
OnBeforeStart(ctx context.Context) error
|
|
|
|
// Starts a server instance. If the server instance is not in a state where it
|
|
// can be started an error should be returned.
|
|
Start(ctx context.Context) error
|
|
|
|
// Stop stops a server instance. If the server is already stopped an error will
|
|
// not be returned, this function will act as a no-op.
|
|
Stop(ctx context.Context) error
|
|
|
|
// WaitForStop waits for a server instance to stop gracefully. If the server is
|
|
// still detected as running after "duration", an error will be returned, or the server
|
|
// will be terminated depending on the value of the second argument. If the context
|
|
// provided is canceled the underlying wait conditions will be stopped and the
|
|
// entire loop will be ended (potentially without stopping or terminating).
|
|
WaitForStop(ctx context.Context, duration time.Duration, terminate bool) error
|
|
|
|
// Terminate stops a running server instance using the provided signal. This function
|
|
// is a no-op if the server is already stopped.
|
|
Terminate(ctx context.Context, signal os.Signal) error
|
|
|
|
// Destroys the environment removing any containers that were created (in Docker
|
|
// environments at least).
|
|
Destroy() error
|
|
|
|
// Returns the exit state of the process. The first result is the exit code, the second
|
|
// determines if the process was killed by the system OOM killer.
|
|
ExitState() (uint32, bool, error)
|
|
|
|
// Creates the necessary environment for running the server process. For example,
|
|
// in the Docker environment create will create a new container instance for the
|
|
// server.
|
|
Create() error
|
|
|
|
// Attach attaches to the server console environment and allows piping the output
|
|
// to a websocket or other internal tool to monitor output. Also allows you to later
|
|
// send data into the environment's stdin.
|
|
Attach(ctx context.Context) error
|
|
|
|
// Sends the provided command to the running server instance.
|
|
SendCommand(string) error
|
|
|
|
// Reads the log file for the process from the end backwards until the provided
|
|
// number of lines is met.
|
|
Readlog(int) ([]string, error)
|
|
|
|
// Returns the current state of the environment.
|
|
State() string
|
|
|
|
// Sets the current state of the environment. In general you should let the environment
|
|
// handle this itself, but there are some scenarios where it is helpful for the server
|
|
// to update the state externally (e.g. starting -> started).
|
|
SetState(string)
|
|
|
|
// Uptime returns the current environment uptime in milliseconds. This is
|
|
// the time that has passed since it was last started.
|
|
Uptime(ctx context.Context) (int64, error)
|
|
|
|
// SetLogCallback sets the callback that the container's log output will be passed to.
|
|
SetLogCallback(func([]byte))
|
|
}
|