blob: e44a1fc83b81bac13b99b75cb07a70d5bad79128 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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.
*/
#include "protozero/protozero_message_handle.h"
#include <utility>
#include "base/logging.h"
#include "protozero/protozero_message.h"
namespace protozero {
ProtoZeroMessageHandleBase::ProtoZeroMessageHandleBase(
ProtoZeroMessage* message)
: message_(message) {
#if PROTOZERO_ENABLE_HANDLE_DEBUGGING()
if (message_)
message_->set_handle(this);
#endif
}
ProtoZeroMessageHandleBase::~ProtoZeroMessageHandleBase() {
Finalize();
}
ProtoZeroMessageHandleBase::ProtoZeroMessageHandleBase(
ProtoZeroMessageHandleBase&& other) noexcept {
Move(std::move(other));
}
ProtoZeroMessageHandleBase& ProtoZeroMessageHandleBase::operator=(
ProtoZeroMessageHandleBase&& other) {
// If the current handle was pointing to a message and is being reset to a new
// one, finalize the old message.
Finalize();
Move(std::move(other));
return *this;
}
void ProtoZeroMessageHandleBase::Finalize() {
if (!message_)
return;
const size_t size = message_->Finalize();
if (on_finalize_) {
on_finalize_(size);
on_finalize_ = nullptr;
}
}
void ProtoZeroMessageHandleBase::Move(ProtoZeroMessageHandleBase&& other) {
// In theory other->message_ could be nullptr, if |other| is a handle that has
// been std::move-d (and hence empty). There isn't a legitimate use case for
// doing so, though. Therefore this case is deliberately ignored (if hit, it
// will manifest as a segfault when dereferencing |message_| below) to avoid a
// useless null-check.
message_ = other.message_;
other.message_ = nullptr;
on_finalize_ = std::move(other.on_finalize_);
other.on_finalize_ = nullptr;
#if PROTOZERO_ENABLE_HANDLE_DEBUGGING()
message_->set_handle(this);
#endif
}
} // namespace protozero