blob: 5b52150eb6ff27a663b6b5ccde25959df833ad4a [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_VIZ_PUBLIC_INTERFACES_COMPOSITING_RETURNED_RESOURCE_MOJOM_H_
#define SERVICES_VIZ_PUBLIC_INTERFACES_COMPOSITING_RETURNED_RESOURCE_MOJOM_H_
#include <stdint.h>
#include <limits>
#include <type_traits>
#include <utility>
#include "base/callback.h"
#include "base/macros.h"
#include "base/optional.h"
#include "mojo/public/cpp/bindings/mojo_buildflags.h"
#if BUILDFLAG(MOJO_TRACE_ENABLED)
#include "base/trace_event/trace_event.h"
#endif
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "mojo/public/cpp/bindings/equals_traits.h"
#include "mojo/public/cpp/bindings/lib/serialization.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "mojo/public/cpp/bindings/union_traits.h"
#include "services/viz/public/interfaces/compositing/returned_resource.mojom-shared.h"
#include "services/viz/public/interfaces/compositing/returned_resource.mojom-forward.h"
#include "gpu/ipc/common/sync_token.mojom.h"
#include <string>
#include <vector>
#include "mojo/public/cpp/bindings/associated_interface_ptr.h"
#include "mojo/public/cpp/bindings/associated_interface_ptr_info.h"
#include "mojo/public/cpp/bindings/associated_interface_request.h"
#include "mojo/public/cpp/bindings/interface_ptr.h"
#include "mojo/public/cpp/bindings/interface_request.h"
#include "mojo/public/cpp/bindings/lib/control_message_handler.h"
#include "mojo/public/cpp/bindings/raw_ptr_impl_ref_traits.h"
#include "mojo/public/cpp/bindings/thread_safe_interface_ptr.h"
#include "mojo/public/cpp/bindings/lib/native_enum_serialization.h"
#include "mojo/public/cpp/bindings/lib/native_struct_serialization.h"
#include "components/viz/common/resources/returned_resource.h"
#ifdef KYTHE_IS_RUNNING
#pragma kythe_inline_metadata "Metadata comment"
#endif
namespace viz {
namespace mojom {
// @generated_from: viz.mojom.ReturnedResource
class ReturnedResource {
public:
template <typename T>
using EnableIfSame = std::enable_if_t<std::is_same<ReturnedResource, T>::value>;
using DataView = ReturnedResourceDataView;
using Data_ = internal::ReturnedResource_Data;
template <typename... Args>
static ReturnedResourcePtr New(Args&&... args) {
return ReturnedResourcePtr(
base::in_place, std::forward<Args>(args)...);
}
template <typename U>
static ReturnedResourcePtr From(const U& u) {
return mojo::TypeConverter<ReturnedResourcePtr, U>::Convert(u);
}
template <typename U>
U To() const {
return mojo::TypeConverter<U, ReturnedResource>::Convert(*this);
}
ReturnedResource();
ReturnedResource(
uint32_t id,
const ::gpu::SyncToken& sync_token,
int32_t count,
bool lost);
~ReturnedResource();
// Clone() is a template so it is only instantiated if it is used. Thus, the
// bindings generator does not need to know whether Clone() or copy
// constructor/assignment are available for members.
template <typename StructPtrType = ReturnedResourcePtr>
ReturnedResourcePtr Clone() const;
// Equals() is a template so it is only instantiated if it is used. Thus, the
// bindings generator does not need to know whether Equals() or == operator
// are available for members.
template <typename T, ReturnedResource::EnableIfSame<T>* = nullptr>
bool Equals(const T& other) const;
template <typename UserType>
static std::vector<uint8_t> Serialize(UserType* input) {
return mojo::internal::SerializeImpl<
ReturnedResource::DataView, std::vector<uint8_t>>(input);
}
template <typename UserType>
static mojo::Message SerializeAsMessage(UserType* input) {
return mojo::internal::SerializeAsMessageImpl<
ReturnedResource::DataView>(input);
}
// The returned Message is serialized only if the message is moved
// cross-process or cross-language. Otherwise if the message is Deserialized
// as the same UserType |input| will just be moved to |output| in
// DeserializeFromMessage.
template <typename UserType>
static mojo::Message WrapAsMessage(UserType input) {
return mojo::Message(std::make_unique<
internal::ReturnedResource_UnserializedMessageContext<
UserType, ReturnedResource::DataView>>(0, 0, std::move(input)));
}
template <typename UserType>
static bool Deserialize(const void* data,
size_t data_num_bytes,
UserType* output) {
return mojo::internal::DeserializeImpl<ReturnedResource::DataView>(
data, data_num_bytes, std::vector<mojo::ScopedHandle>(), output, Validate);
}
template <typename UserType>
static bool Deserialize(const std::vector<uint8_t>& input,
UserType* output) {
return ReturnedResource::Deserialize(
input.size() == 0 ? nullptr : &input.front(), input.size(), output);
}
template <typename UserType>
static bool DeserializeFromMessage(mojo::Message input,
UserType* output) {
auto context = input.TakeUnserializedContext<
internal::ReturnedResource_UnserializedMessageContext<
UserType, ReturnedResource::DataView>>();
if (context) {
*output = std::move(context->TakeData());
return true;
}
input.SerializeIfNecessary();
return mojo::internal::DeserializeImpl<ReturnedResource::DataView>(
input.payload(), input.payload_num_bytes(),
std::move(*input.mutable_handles()), output, Validate);
}
// @generated_from: viz.mojom.ReturnedResource.id
uint32_t id;
// @generated_from: viz.mojom.ReturnedResource.sync_token
::gpu::SyncToken sync_token;
// @generated_from: viz.mojom.ReturnedResource.count
int32_t count;
// @generated_from: viz.mojom.ReturnedResource.lost
bool lost;
private:
static bool Validate(const void* data,
mojo::internal::ValidationContext* validation_context);
};
// The comparison operators are templates, so they are only instantiated if they
// are used. Thus, the bindings generator does not need to know whether
// comparison operators are available for members.
template <typename T, ReturnedResource::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, ReturnedResource::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) {
return !(rhs < lhs);
}
template <typename T, ReturnedResource::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) {
return rhs < lhs;
}
template <typename T, ReturnedResource::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) {
return !(lhs < rhs);
}
template <typename StructPtrType>
ReturnedResourcePtr ReturnedResource::Clone() const {
return New(
mojo::Clone(id),
mojo::Clone(sync_token),
mojo::Clone(count),
mojo::Clone(lost)
);
}
template <typename T, ReturnedResource::EnableIfSame<T>*>
bool ReturnedResource::Equals(const T& other_struct) const {
if (!mojo::Equals(this->id, other_struct.id))
return false;
if (!mojo::Equals(this->sync_token, other_struct.sync_token))
return false;
if (!mojo::Equals(this->count, other_struct.count))
return false;
if (!mojo::Equals(this->lost, other_struct.lost))
return false;
return true;
}
template <typename T, ReturnedResource::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) {
if (lhs.id < rhs.id)
return true;
if (rhs.id < lhs.id)
return false;
if (lhs.sync_token < rhs.sync_token)
return true;
if (rhs.sync_token < lhs.sync_token)
return false;
if (lhs.count < rhs.count)
return true;
if (rhs.count < lhs.count)
return false;
if (lhs.lost < rhs.lost)
return true;
if (rhs.lost < lhs.lost)
return false;
return false;
}
} // namespace mojom
} // namespace viz
namespace mojo {
template <>
struct StructTraits<::viz::mojom::ReturnedResource::DataView,
::viz::mojom::ReturnedResourcePtr> {
static bool IsNull(const ::viz::mojom::ReturnedResourcePtr& input) { return !input; }
static void SetToNull(::viz::mojom::ReturnedResourcePtr* output) { output->reset(); }
static decltype(::viz::mojom::ReturnedResource::id) id(
const ::viz::mojom::ReturnedResourcePtr& input) {
return input->id;
}
static const decltype(::viz::mojom::ReturnedResource::sync_token)& sync_token(
const ::viz::mojom::ReturnedResourcePtr& input) {
return input->sync_token;
}
static decltype(::viz::mojom::ReturnedResource::count) count(
const ::viz::mojom::ReturnedResourcePtr& input) {
return input->count;
}
static decltype(::viz::mojom::ReturnedResource::lost) lost(
const ::viz::mojom::ReturnedResourcePtr& input) {
return input->lost;
}
static bool Read(::viz::mojom::ReturnedResource::DataView input, ::viz::mojom::ReturnedResourcePtr* output);
};
} // namespace mojo
#endif // SERVICES_VIZ_PUBLIC_INTERFACES_COMPOSITING_RETURNED_RESOURCE_MOJOM_H_
/* Metadata comment
eyJtZXRhIjogW3siZW5kIjogMjA4NiwgImJlZ2luIjogMjA3MCwgImVkZ2UiOiAiJS9reXRoZS9l
ZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjogImFuY2hvcl9kZWZpbmVzIiwgInZuYW1lIjogeyJjb3Jw
dXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jaHJvbWl1bS9zcmMiLCAibGFuZ3VhZ2Ui
OiAibW9qb20iLCAic2lnbmF0dXJlIjogInZpei5tb2pvbS5SZXR1cm5lZFJlc291cmNlIn19LCB7
ImVuZCI6IDU3MDQsICJiZWdpbiI6IDU3MDIsICJlZGdlIjogIiUva3l0aGUvZWRnZS9nZW5lcmF0
ZXMiLCAidHlwZSI6ICJhbmNob3JfZGVmaW5lcyIsICJ2bmFtZSI6IHsiY29ycHVzIjogImNocm9t
aXVtLmdvb2dsZXNvdXJjZS5jb20vY2hyb21pdW0vc3JjIiwgImxhbmd1YWdlIjogIm1vam9tIiwg
InNpZ25hdHVyZSI6ICJ2aXoubW9qb20uUmV0dXJuZWRSZXNvdXJjZS5pZCJ9fSwgeyJlbmQiOiA1
Nzk2LCAiYmVnaW4iOiA1Nzg2LCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIiwgInR5
cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAidm5hbWUiOiB7ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29n
bGVzb3VyY2UuY29tL2Nocm9taXVtL3NyYyIsICJsYW5ndWFnZSI6ICJtb2pvbSIsICJzaWduYXR1
cmUiOiAidml6Lm1vam9tLlJldHVybmVkUmVzb3VyY2Uuc3luY190b2tlbiJ9fSwgeyJlbmQiOiA1
ODY5LCAiYmVnaW4iOiA1ODY0LCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIiwgInR5
cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAidm5hbWUiOiB7ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29n
bGVzb3VyY2UuY29tL2Nocm9taXVtL3NyYyIsICJsYW5ndWFnZSI6ICJtb2pvbSIsICJzaWduYXR1
cmUiOiAidml6Lm1vam9tLlJldHVybmVkUmVzb3VyY2UuY291bnQifX0sIHsiZW5kIjogNTkzNywg
ImJlZ2luIjogNTkzMywgImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyIsICJ0eXBlIjog
ImFuY2hvcl9kZWZpbmVzIiwgInZuYW1lIjogeyJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291
cmNlLmNvbS9jaHJvbWl1bS9zcmMiLCAibGFuZ3VhZ2UiOiAibW9qb20iLCAic2lnbmF0dXJlIjog
InZpei5tb2pvbS5SZXR1cm5lZFJlc291cmNlLmxvc3QifX1dLCAidHlwZSI6ICJreXRoZTAifQ==
*/