// Copyright 2016 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 MOJO_PUBLIC_CPP_BINDINGS_LIB_SERIALIZATION_FORWARD_H_ #define MOJO_PUBLIC_CPP_BINDINGS_LIB_SERIALIZATION_FORWARD_H_ #include "base/optional.h" #include "mojo/public/cpp/bindings/array_traits.h" #include "mojo/public/cpp/bindings/enum_traits.h" #include "mojo/public/cpp/bindings/lib/template_util.h" #include "mojo/public/cpp/bindings/map_traits.h" #include "mojo/public/cpp/bindings/string_traits.h" #include "mojo/public/cpp/bindings/struct_traits.h" // This file is included by serialization implementation files to avoid circular // includes. // Users of the serialization funtions should include serialization.h (and also // wtf_serialization.h if necessary). namespace mojo { namespace internal { template struct Serializer; template struct IsOptionalWrapper { static const bool value = IsSpecializationOf< base::Optional, typename std::remove_const< typename std::remove_reference::type>::type>::value; }; // PrepareToSerialize() must be matched by a Serialize() for the same input // later. Moreover, within the same SerializationContext if PrepareToSerialize() // is called for |input_1|, ..., |input_n|, Serialize() must be called for // those objects in the exact same order. template ::value>::type* = nullptr> size_t PrepareToSerialize(InputUserType&& input, Args&&... args) { return Serializer::type>:: PrepareToSerialize(std::forward(input), std::forward(args)...); } template ::value>::type* = nullptr> void Serialize(InputUserType&& input, Args&&... args) { Serializer::type>:: Serialize(std::forward(input), std::forward(args)...); } template ::value>::type* = nullptr> bool Deserialize(DataType&& input, InputUserType* output, Args&&... args) { return Serializer::Deserialize( std::forward(input), output, std::forward(args)...); } // Specialization that unwraps base::Optional<>. template ::value>::type* = nullptr> size_t PrepareToSerialize(InputUserType&& input, Args&&... args) { if (!input) return 0; return PrepareToSerialize(*input, std::forward(args)...); } template ::value>::type* = nullptr> void Serialize(InputUserType&& input, Buffer* buffer, DataType** output, Args&&... args) { if (!input) { *output = nullptr; return; } Serialize(*input, buffer, output, std::forward(args)...); } template ::value>::type* = nullptr> bool Deserialize(DataType&& input, InputUserType* output, Args&&... args) { if (!input) { *output = base::nullopt; return true; } if (!*output) output->emplace(); return Deserialize(std::forward(input), &output->value(), std::forward(args)...); } } // namespace internal } // namespace mojo #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_SERIALIZATION_FORWARD_H_