forked from facebook/fbthrift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
merge.h
65 lines (57 loc) · 2.01 KB
/
merge.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* Copyright 2016-present Facebook, Inc.
*
* 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.
*/
#pragma once
#include <type_traits>
#include <utility>
#include <fatal/type/call_traits.h>
#include <fatal/type/conditional.h>
#include <fatal/type/transform.h>
#include <folly/Memory.h>
#include <folly/Range.h>
#include <folly/Traits.h>
#include <thrift/lib/cpp/Thrift.h>
#include <thrift/lib/cpp2/reflection/container_traits.h>
#include <thrift/lib/cpp2/reflection/reflection.h>
#include <thrift/lib/cpp2/reflection/internal/merge-inl-pre.h>
namespace apache {
namespace thrift {
/***
* Merges `src` into `dst` using Thrift's static reflection support.
*
* If `src` is non-const rvalue-ref, will move pieces of `src` into `dst`.
* Otherwise, will copy pieces of `src` into `dst`.
*
* Recurses into the struct-typed fields of `src` and `dst`.
*
* The documentation in thrift/lib/cpp2/reflection/reflection.h describes the
* steps required in order to make static reflection metadata available for your
* thrift types. Be sure to read it. The metadata is not available by default.
*
* Usage example:
*
* MyStruct dst;
*
* MyStruct src1 = //...
* apache::thrift::merge_into(src1, dst); // copy-style
*
* MyStruct src2 = //...
* apache::thrift::merge_into(std::move(src2), dst); // move-style
*/
template <typename T>
void merge_into(T&& src, merge_into_detail::remove_const_reference<T>& dst);
} // namespace thrift
} // namespace apache
#include <thrift/lib/cpp2/reflection/internal/merge-inl-post.h>