// Copyright 2023 The Abseil 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 // // https://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. #include "y_absl/status/internal/status_internal.h" #include #include #include #include #include #include #include #include #include #include "y_absl/base/attributes.h" #include "y_absl/base/config.h" #include "y_absl/base/macros.h" #include "y_absl/base/nullability.h" #include "y_absl/debugging/stacktrace.h" #include "y_absl/debugging/symbolize.h" #include "y_absl/memory/memory.h" #include "y_absl/status/status.h" #include "y_absl/status/status_payload_printer.h" #include "y_absl/strings/cord.h" #include "y_absl/strings/escaping.h" #include "y_absl/strings/str_cat.h" #include "y_absl/strings/str_format.h" #include "y_absl/strings/str_split.h" #include "y_absl/strings/string_view.h" #include "y_absl/types/optional.h" namespace y_absl { Y_ABSL_NAMESPACE_BEGIN namespace status_internal { void StatusRep::Unref() const { // Fast path: if ref==1, there is no need for a RefCountDec (since // this is the only reference and therefore no other thread is // allowed to be mucking with r). if (ref_.load(std::memory_order_acquire) == 1 || ref_.fetch_sub(1, std::memory_order_acq_rel) - 1 == 0) { delete this; } } static y_absl::optional FindPayloadIndexByUrl( const Payloads* payloads, y_absl::string_view type_url) { if (payloads == nullptr) return y_absl::nullopt; for (size_t i = 0; i < payloads->size(); ++i) { if ((*payloads)[i].type_url == type_url) return i; } return y_absl::nullopt; } y_absl::optional StatusRep::GetPayload( y_absl::string_view type_url) const { y_absl::optional index = status_internal::FindPayloadIndexByUrl(payloads_.get(), type_url); if (index.has_value()) return (*payloads_)[index.value()].payload; return y_absl::nullopt; } void StatusRep::SetPayload(y_absl::string_view type_url, y_absl::Cord payload) { if (payloads_ == nullptr) { payloads_ = y_absl::make_unique(); } y_absl::optional index = status_internal::FindPayloadIndexByUrl(payloads_.get(), type_url); if (index.has_value()) { (*payloads_)[index.value()].payload = std::move(payload); return; } payloads_->push_back({TString(type_url), std::move(payload)}); } StatusRep::EraseResult StatusRep::ErasePayload(y_absl::string_view type_url) { y_absl::optional index = status_internal::FindPayloadIndexByUrl(payloads_.get(), type_url); if (!index.has_value()) return {false, Status::PointerToRep(this)}; payloads_->erase(payloads_->begin() + index.value()); if (payloads_->empty() && message_.empty()) { // Special case: If this can be represented inlined, it MUST be inlined // (== depends on this behavior). EraseResult result = {true, Status::CodeToInlinedRep(code_)}; Unref(); return result; } return {true, Status::PointerToRep(this)}; } void StatusRep::ForEachPayload( y_absl::FunctionRef visitor) const { if (auto* payloads = payloads_.get()) { bool in_reverse = payloads->size() > 1 && reinterpret_cast(payloads) % 13 > 6; for (size_t index = 0; index < payloads->size(); ++index) { const auto& elem = (*payloads)[in_reverse ? payloads->size() - 1 - index : index]; #ifdef NDEBUG visitor(elem.type_url, elem.payload); #else // In debug mode invalidate the type url to prevent users from relying on // this string lifetime. // NOLINTNEXTLINE intentional extra conversion to force temporary. visitor(TString(elem.type_url), elem.payload); #endif // NDEBUG } } } TString StatusRep::ToString(StatusToStringMode mode) const { TString text; y_absl::StrAppend(&text, y_absl::StatusCodeToString(code()), ": ", message()); const bool with_payload = (mode & StatusToStringMode::kWithPayload) == StatusToStringMode::kWithPayload; if (with_payload) { status_internal::StatusPayloadPrinter printer = status_internal::GetStatusPayloadPrinter(); this->ForEachPayload([&](y_absl::string_view type_url, const y_absl::Cord& payload) { y_absl::optional result; if (printer) result = printer(type_url, payload); y_absl::StrAppend( &text, " [", type_url, "='", result.has_value() ? *result : y_absl::CHexEscape(TString(payload)), "']"); }); } return text; } bool StatusRep::operator==(const StatusRep& other) const { assert(this != &other); if (code_ != other.code_) return false; if (message_ != other.message_) return false; const status_internal::Payloads* this_payloads = payloads_.get(); const status_internal::Payloads* other_payloads = other.payloads_.get(); const status_internal::Payloads no_payloads; const status_internal::Payloads* larger_payloads = this_payloads ? this_payloads : &no_payloads; const status_internal::Payloads* smaller_payloads = other_payloads ? other_payloads : &no_payloads; if (larger_payloads->size() < smaller_payloads->size()) { std::swap(larger_payloads, smaller_payloads); } if ((larger_payloads->size() - smaller_payloads->size()) > 1) return false; // Payloads can be ordered differently, so we can't just compare payload // vectors. for (const auto& payload : *larger_payloads) { bool found = false; for (const auto& other_payload : *smaller_payloads) { if (payload.type_url == other_payload.type_url) { if (payload.payload != other_payload.payload) { return false; } found = true; break; } } if (!found) return false; } return true; } y_absl::Nonnull StatusRep::CloneAndUnref() const { // Optimization: no need to create a clone if we already have a refcount of 1. if (ref_.load(std::memory_order_acquire) == 1) { // All StatusRep instances are heap allocated and mutable, therefore this // const_cast will never cast away const from a stack instance. // // CloneAndUnref is the only method that doesn't involve an external cast to // get a mutable StatusRep* from the uintptr_t rep stored in Status. return const_cast(this); } std::unique_ptr payloads; if (payloads_) { payloads = y_absl::make_unique(*payloads_); } auto* new_rep = new StatusRep(code_, message_, std::move(payloads)); Unref(); return new_rep; } // Convert canonical code to a value known to this binary. y_absl::StatusCode MapToLocalCode(int value) { y_absl::StatusCode code = static_cast(value); switch (code) { case y_absl::StatusCode::kOk: case y_absl::StatusCode::kCancelled: case y_absl::StatusCode::kUnknown: case y_absl::StatusCode::kInvalidArgument: case y_absl::StatusCode::kDeadlineExceeded: case y_absl::StatusCode::kNotFound: case y_absl::StatusCode::kAlreadyExists: case y_absl::StatusCode::kPermissionDenied: case y_absl::StatusCode::kResourceExhausted: case y_absl::StatusCode::kFailedPrecondition: case y_absl::StatusCode::kAborted: case y_absl::StatusCode::kOutOfRange: case y_absl::StatusCode::kUnimplemented: case y_absl::StatusCode::kInternal: case y_absl::StatusCode::kUnavailable: case y_absl::StatusCode::kDataLoss: case y_absl::StatusCode::kUnauthenticated: return code; default: return y_absl::StatusCode::kUnknown; } } y_absl::Nonnull MakeCheckFailString( y_absl::Nonnull status, y_absl::Nonnull prefix) { return new TString( y_absl::StrCat(prefix, " (", status->ToString(StatusToStringMode::kWithEverything), ")")); } } // namespace status_internal Y_ABSL_NAMESPACE_END } // namespace y_absl