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
83 lines
2.3 KiB
Go
83 lines
2.3 KiB
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/mitchellh/colorstring"
|
|
|
|
"github.com/Tech-Gamer/nwy-wings/config"
|
|
"github.com/Tech-Gamer/nwy-wings/system"
|
|
)
|
|
|
|
// appName is a local cache variable to avoid having to make expensive copies of
|
|
// the configuration every time we need to send output along to the websocket for
|
|
// a server.
|
|
var appName string
|
|
var appNameSync sync.Once
|
|
|
|
// PublishConsoleOutputFromDaemon sends output to the server console formatted
|
|
// to appear correctly as being sent from Wings.
|
|
func (s *Server) PublishConsoleOutputFromDaemon(data string) {
|
|
appNameSync.Do(func() {
|
|
appName = config.Get().AppName
|
|
})
|
|
s.Events().Publish(
|
|
ConsoleOutputEvent,
|
|
colorstring.Color(fmt.Sprintf("[yellow][bold][%s Daemon]:[default] %s", appName, data)),
|
|
)
|
|
}
|
|
|
|
// Throttler returns the throttler instance for the server or creates a new one.
|
|
func (s *Server) Throttler() *ConsoleThrottle {
|
|
s.throttleOnce.Do(func() {
|
|
throttles := config.Get().Throttles
|
|
period := time.Duration(throttles.Period) * time.Millisecond
|
|
|
|
s.throttler = newConsoleThrottle(throttles.Lines, period)
|
|
s.throttler.strike = func() {
|
|
s.PublishConsoleOutputFromDaemon(fmt.Sprintf("Server is outputting console data too quickly -- throttling..."))
|
|
}
|
|
})
|
|
return s.throttler
|
|
}
|
|
|
|
type ConsoleThrottle struct {
|
|
limit *system.Rate
|
|
lock *system.Locker
|
|
strike func()
|
|
}
|
|
|
|
func newConsoleThrottle(lines uint64, period time.Duration) *ConsoleThrottle {
|
|
return &ConsoleThrottle{
|
|
limit: system.NewRate(lines, period),
|
|
lock: system.NewLocker(),
|
|
}
|
|
}
|
|
|
|
// Allow checks if the console is allowed to process more output data, or if too
|
|
// much has already been sent over the line. If there is too much output the
|
|
// strike callback function is triggered, but only if it has not already been
|
|
// triggered at this point in the process.
|
|
//
|
|
// If output is allowed, the lock on the throttler is released and the next time
|
|
// it is triggered the strike function will be re-executed.
|
|
func (ct *ConsoleThrottle) Allow() bool {
|
|
if !ct.limit.Try() {
|
|
if err := ct.lock.Acquire(); err == nil {
|
|
if ct.strike != nil {
|
|
ct.strike()
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
ct.lock.Release()
|
|
return true
|
|
}
|
|
|
|
// Reset resets the console throttler internal rate limiter and overage counter.
|
|
func (ct *ConsoleThrottle) Reset() {
|
|
ct.limit.Reset()
|
|
}
|