// 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" #include "mojo/public/cpp/bindings/union_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; }; 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)...); } template ::value>::type* = nullptr> void Serialize(InputUserType&& input, Buffer* buffer, BufferWriterType* writer, Args&&... args) { if (!input) return; Serialize(*input, buffer, writer, 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_