-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[promises] Add some status-like types for TrySeq (#34906)
`StatusFlag` acts like a status, but is just a boolean (we don't want to accidentally treat a boolean as something that indicates failure in case it's not) Similarly `ValueOrFailure` looks like `StatusOr` but reduces the failure space to one value. --------- Co-authored-by: ctiller <[email protected]>
- Loading branch information
Showing
7 changed files
with
303 additions
and
40 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// Copyright 2023 gRPC authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef GRPC_SRC_CORE_LIB_PROMISE_STATUS_FLAG_H | ||
#define GRPC_SRC_CORE_LIB_PROMISE_STATUS_FLAG_H | ||
|
||
#include <grpc/support/port_platform.h> | ||
|
||
#include "absl/status/status.h" | ||
#include "absl/status/statusor.h" | ||
#include "absl/types/optional.h" | ||
|
||
#include "src/core/lib/promise/detail/status.h" | ||
|
||
namespace grpc_core { | ||
|
||
// A boolean representing whether an operation succeeded (true) or failed | ||
// (false). | ||
class StatusFlag { | ||
public: | ||
explicit StatusFlag(bool value) : value_(value) {} | ||
|
||
bool ok() const { return value_; } | ||
|
||
private: | ||
bool value_; | ||
}; | ||
|
||
inline bool IsStatusOk(const StatusFlag& flag) { return flag.ok(); } | ||
|
||
template <> | ||
struct StatusCastImpl<absl::Status, StatusFlag> { | ||
static absl::Status Cast(StatusFlag flag) { | ||
return flag.ok() ? absl::OkStatus() : absl::CancelledError(); | ||
} | ||
}; | ||
|
||
struct Failure {}; | ||
|
||
// A value if an operation was successful, or a failure flag if not. | ||
template <typename T> | ||
class ValueOrFailure { | ||
public: | ||
explicit ValueOrFailure(T value) : value_(std::move(value)) {} | ||
explicit ValueOrFailure(Failure) {} | ||
|
||
static ValueOrFailure FromOptional(absl::optional<T> value) { | ||
return ValueOrFailure{std::move(value)}; | ||
} | ||
|
||
bool ok() const { return value_.has_value(); } | ||
|
||
const T& value() const { return value_.value(); } | ||
T& value() { return value_.value(); } | ||
const T& operator*() const { return *value_; } | ||
T& operator*() { return *value_; } | ||
|
||
private: | ||
absl::optional<T> value_; | ||
}; | ||
|
||
template <typename T> | ||
inline bool IsStatusOk(const ValueOrFailure<T>& value) { | ||
return value.ok(); | ||
} | ||
|
||
template <typename T> | ||
struct StatusCastImpl<absl::Status, ValueOrFailure<T>> { | ||
static absl::Status Cast(const ValueOrFailure<T> flag) { | ||
return flag.ok() ? absl::OkStatus() : absl::CancelledError(); | ||
} | ||
}; | ||
|
||
template <typename T> | ||
struct StatusCastImpl<absl::StatusOr<T>, ValueOrFailure<T>> { | ||
static absl::StatusOr<T> Cast(ValueOrFailure<T> value) { | ||
return value.ok() ? absl::StatusOr<T>(std::move(value.value())) | ||
: absl::CancelledError(); | ||
} | ||
}; | ||
|
||
} // namespace grpc_core | ||
|
||
#endif // GRPC_SRC_CORE_LIB_PROMISE_STATUS_FLAG_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.