Documentation ¶
Overview ¶
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Index ¶
- func CopyFile(src, dest string) error
- func DownloadReleaseVersion(log logging.Logger, repo, version, binDir string) (string, error)
- func GetAsyncContext() context.Context
- func GetGithubLatestReleaseURL(org, repo string) string
- func GetServerPID(app *application.Avalanche) (int, error)
- func InstallArchive(ext string, archive []byte, binDir string) error
- func InstallBinary(app *application.Avalanche, version string, baseBinDir string, ...) (string, string, error)
- func KillgRPCServerProcess(app *application.Avalanche) error
- func NewGRPCClient() (client.Client, error)
- func NewGRPCServer(snapshotsDir string) (server.Server, error)
- func SetupAPMBin(app *application.Avalanche, vmid string) string
- func SetupAvalanchego(app *application.Avalanche, avagoVersion string) (string, string, error)
- func SetupCustomBin(app *application.Avalanche, subnetName string) string
- func SetupSpacesVM(app *application.Avalanche, spacesVMVersion string) (string, error)
- func SetupSubnetEVM(app *application.Avalanche, subnetEVMVersion string) (string, error)
- func StartServerProcess(app *application.Avalanche) error
- func WatchServerProcess(serverCancel context.CancelFunc, errc chan error, log logging.Logger)
- type BinaryChecker
- type GithubDownloader
- type Installer
- type PluginBinaryDownloader
- type ProcessChecker
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DownloadReleaseVersion ¶
DownloadReleaseVersion returns the latest available version from github for the given repo and version, and installs it into the apps `bin` dir. NOTE: If any of the underlying URLs change (github changes, release file names, etc.) this fails The goal MUST be to have some sort of mature binary management
func GetAsyncContext ¶
GetAsyncContext returns a timeout context with the cancel function suppressed
func GetGithubLatestReleaseURL ¶ added in v0.2.2
func GetServerPID ¶
func GetServerPID(app *application.Avalanche) (int, error)
func InstallArchive ¶
InstallArchive installs the binary archive downloaded
func InstallBinary ¶ added in v0.2.2
func KillgRPCServerProcess ¶
func KillgRPCServerProcess(app *application.Avalanche) error
func NewGRPCClient ¶
NewGRPCClient hides away the details (params) of creating a gRPC server connection
func NewGRPCServer ¶
NewGRPCClient hides away the details (params) of creating a gRPC server
func SetupAPMBin ¶ added in v0.2.3
func SetupAPMBin(app *application.Avalanche, vmid string) string
func SetupAvalanchego ¶ added in v0.2.2
func SetupCustomBin ¶ added in v0.2.2
func SetupCustomBin(app *application.Avalanche, subnetName string) string
func SetupSpacesVM ¶ added in v0.2.3
func SetupSpacesVM(app *application.Avalanche, spacesVMVersion string) (string, error)
func SetupSubnetEVM ¶ added in v0.2.2
func SetupSubnetEVM(app *application.Avalanche, subnetEVMVersion string) (string, error)
func StartServerProcess ¶
func StartServerProcess(app *application.Avalanche) error
StartServerProcess starts the gRPC server as a reentrant process of this binary it just executes `avalanche-cli backend start`
func WatchServerProcess ¶
func WatchServerProcess(serverCancel context.CancelFunc, errc chan error, log logging.Logger)
Types ¶
type BinaryChecker ¶
type BinaryChecker interface {
ExistsWithVersion(name, binaryPrefix, version string) (bool, error)
}
func NewBinaryChecker ¶
func NewBinaryChecker() BinaryChecker
type GithubDownloader ¶ added in v0.2.2
type GithubDownloader interface {
GetDownloadURL(version string, installer Installer) (string, string, error)
}
func NewAvagoDownloader ¶ added in v0.2.2
func NewAvagoDownloader() GithubDownloader
func NewSpacesVMDownloader ¶ added in v0.2.3
func NewSpacesVMDownloader() GithubDownloader
func NewSubnetEVMDownloader ¶ added in v0.2.2
func NewSubnetEVMDownloader() GithubDownloader
type Installer ¶ added in v0.2.2
func NewInstaller ¶ added in v0.2.2
func NewInstaller() Installer
type PluginBinaryDownloader ¶
func NewPluginBinaryDownloader ¶
func NewPluginBinaryDownloader(app *application.Avalanche) PluginBinaryDownloader
type ProcessChecker ¶
type ProcessChecker interface { // IsServerProcessRunning returns true if the gRPC server is running, // or false if not IsServerProcessRunning(app *application.Avalanche) (bool, error) }
ProcessChecker is responsible for checking if the gRPC server is running
func NewProcessChecker ¶
func NewProcessChecker() ProcessChecker
NewProcessChecker creates a new process checker which can respond if the server is running