mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b3930f935f
Summary:
See react_native_assert.{h,cpp}. Because of the BUCK+Android issue where NDEBUG is always defined, we use react_native_assert instead of assert to enable xplat asserts in debug/dev mode.
This migrates most of the codebase, but probably not 100%. The goal is to increase assertion coverage on Android, not to get to 100% (yet).
Changelog: [Internal]
Reviewed By: RSNara
Differential Revision: D26562866
fbshipit-source-id: a7bf2055b973e1d3650ed8d68a6d02d556604af9
88 lines
2.5 KiB
C++
88 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "AttributedStringBox.h"
|
|
|
|
#include <react/debug/react_native_assert.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
AttributedStringBox::AttributedStringBox()
|
|
: mode_(Mode::Value),
|
|
value_(std::make_shared<AttributedString const>(AttributedString{})),
|
|
opaquePointer_({}){};
|
|
|
|
AttributedStringBox::AttributedStringBox(AttributedString const &value)
|
|
: mode_(Mode::Value),
|
|
value_(std::make_shared<AttributedString const>(value)),
|
|
opaquePointer_({}){};
|
|
|
|
AttributedStringBox::AttributedStringBox(
|
|
std::shared_ptr<void> const &opaquePointer)
|
|
: mode_(Mode::OpaquePointer), value_({}), opaquePointer_(opaquePointer) {}
|
|
|
|
AttributedStringBox::AttributedStringBox(AttributedStringBox &&other) noexcept
|
|
: mode_(other.mode_),
|
|
value_(std::move(other.value_)),
|
|
opaquePointer_(std::move(other.opaquePointer_)) {
|
|
other.mode_ = AttributedStringBox::Mode::Value;
|
|
other.value_ = std::make_shared<AttributedString const>(AttributedString{});
|
|
}
|
|
|
|
AttributedStringBox::Mode AttributedStringBox::getMode() const {
|
|
return mode_;
|
|
}
|
|
|
|
AttributedString const &AttributedStringBox::getValue() const {
|
|
react_native_assert(mode_ == AttributedStringBox::Mode::Value);
|
|
react_native_assert(value_);
|
|
return *value_;
|
|
}
|
|
|
|
std::shared_ptr<void> AttributedStringBox::getOpaquePointer() const {
|
|
react_native_assert(mode_ == AttributedStringBox::Mode::OpaquePointer);
|
|
react_native_assert(opaquePointer_);
|
|
return opaquePointer_;
|
|
}
|
|
|
|
AttributedStringBox &AttributedStringBox::operator=(
|
|
AttributedStringBox &&other) {
|
|
if (this != &other) {
|
|
mode_ = other.mode_;
|
|
value_ = std::move(other.value_);
|
|
opaquePointer_ = std::move(other.opaquePointer_);
|
|
other.mode_ = AttributedStringBox::Mode::Value;
|
|
other.value_ = std::make_shared<AttributedString const>(AttributedString{});
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
bool operator==(
|
|
AttributedStringBox const &lhs,
|
|
AttributedStringBox const &rhs) {
|
|
if (lhs.getMode() != rhs.getMode()) {
|
|
return false;
|
|
}
|
|
|
|
switch (lhs.getMode()) {
|
|
case AttributedStringBox::Mode::Value:
|
|
return lhs.getValue() == rhs.getValue();
|
|
case AttributedStringBox::Mode::OpaquePointer:
|
|
return lhs.getOpaquePointer() == rhs.getOpaquePointer();
|
|
}
|
|
}
|
|
|
|
bool operator!=(
|
|
AttributedStringBox const &lhs,
|
|
AttributedStringBox const &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|