Skip to content

Commit

Permalink
Merge 3b52b93 into 27623c5
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceInHunterland authored Aug 18, 2023
2 parents 27623c5 + 3b52b93 commit 6bf3c82
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ minor release, the component will be purged, so be prepared (see `Updating` sect
- New `blobovnicza-to-peapod` tool providing blobovnicza-to-peapod data migration (#2453)
- SN's version and capacity is announced via the attributes automatically but can be overwritten explicitly (#2455, #602)
- `peapod` command for `neofs-lens` (#2507)
- New CLI exit code for awaiting timeout (#2380)

### Fixed
- `neo-go` RPC connection loss handling (#1337)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ for all of its commands and options internally, but some specific concepts
have additional documents describing them:
* [Sessions](docs/cli-sessions.md)
* [Extended headers](docs/cli-xheaders.md)
* [Exit codes](docs/cli-exit-codes.md)

`neofs-adm` is a network setup and management utility usually used by the
network administrators. Refer to [docs/cli-adm.md](docs/cli-adm.md) for mode
Expand Down
17 changes: 13 additions & 4 deletions cmd/neofs-cli/internal/common/exit.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@ import (
"github.com/spf13/cobra"
)

// ExitOnErr prints error and exits with a code that matches
// one of the common errors from sdk library. If no errors
// found, exits with 1 code.
// Does nothing if passed error in nil.
// ErrAwaitTimeout represents the expiration of a polling interval
// while awaiting a certain condition.
var ErrAwaitTimeout = errors.New("await timeout expired")

// ExitOnErr prints error and exits with a code depending on the error type
//
// 0 if nil
// 1 if [sdkstatus.ErrServerInternal] or untyped
// 2 if [sdkstatus.ErrObjectAccessDenied]
// 3 if [ErrAwaitTimeout]
func ExitOnErr(cmd *cobra.Command, errFmt string, err error) {
if err == nil {
return
Expand All @@ -26,6 +32,7 @@ func ExitOnErr(cmd *cobra.Command, errFmt string, err error) {
_ = iota
internal
aclDenied
awaitTimeout
)

var code int
Expand All @@ -37,6 +44,8 @@ func ExitOnErr(cmd *cobra.Command, errFmt string, err error) {
case errors.As(err, &accessErr):
code = aclDenied
err = fmt.Errorf("%w: %s", err, accessErr.Reason())
case errors.Is(err, ErrAwaitTimeout):
code = awaitTimeout
default:
code = internal
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/neofs-cli/modules/container/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ It will be stored in sidechain when inner ring will accepts it.`,
for ; ; t.Reset(waitInterval) {
select {
case <-ctx.Done():
common.ExitOnErr(cmd, "", errCreateTimeout)
common.ExitOnErr(cmd, "container creation: %s", common.ErrAwaitTimeout)
case <-t.C:
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/neofs-cli/modules/container/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Only owner of the container has a permission to remove container.`,
for ; ; t.Reset(waitInterval) {
select {
case <-ctx.Done():
common.ExitOnErr(cmd, "", errDeleteTimeout)
common.ExitOnErr(cmd, "container deletion: %s", common.ErrAwaitTimeout)
case <-t.C:
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/neofs-cli/modules/container/set_eacl.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Container ID in EACL table will be substituted with ID from the CLI.`,
for ; ; t.Reset(waitInterval) {
select {
case <-ctx.Done():
common.ExitOnErr(cmd, "", errSetEACLTimeout)
common.ExitOnErr(cmd, "eACL setting: %s", common.ErrAwaitTimeout)
case <-t.C:
}

Expand Down
6 changes: 0 additions & 6 deletions cmd/neofs-cli/modules/container/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ const (
awaitTimeout = time.Minute
)

var (
errCreateTimeout = errors.New("container creation was requested, but timeout has happened while waiting for the outcome")
errDeleteTimeout = errors.New("container removal was requested, but timeout has happened while waiting for the outcome")
errSetEACLTimeout = errors.New("eACL modification was requested, but timeout has happened while waiting for the outcome")
)

func parseContainerID(cmd *cobra.Command) cid.ID {
if containerID == "" {
common.ExitOnErr(cmd, "", errors.New("container ID is not set"))
Expand Down
17 changes: 17 additions & 0 deletions docs/cli-exit-codes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

# Command Line Interface (CLI) Return Codes

The NeoFS CLI returns specific exit codes to indicate the outcome of command execution.

## Exit Codes

| Exit Code | Meaning |
|-----------|------------------------------------------------|
| 0 | Command executed successfully. |
| 1 | Internal error or an unspecified failure. |
| 2 | Object access denied or unauthorized. |
| 3 | Await timeout expired for a certain condition. |



These exit codes allow you to understand the outcome of the executed command and handle it accordingly in your scripts or automation workflows.

0 comments on commit 6bf3c82

Please sign in to comment.