blob: 498efe4805d70c7718005dfa980df242a758f750 (
plain)
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
|
// Copyright (C) 2017-2018 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef USER_CONTEXT_UTILS_H
#define USER_CONTEXT_UTILS_H
#include <cc/data.h>
namespace isc {
namespace test {
/// @brief Move comment entries to user-context
///
/// Process an element looking for comment entries in maps and
/// moving them to user-context entries. As the common case is
/// no comment and this routine tries to maximize sharing the
/// standard behavior is just to return the argument unchanged.
///
/// @param element
/// @return a processed copy of element or unmodified element
isc::data::ElementPtr moveComments(isc::data::ElementPtr element);
/// @brief Move comment entries to user-context (const variant)
///
/// @param element
/// @return a processed copy of element or unmodified element
isc::data::ConstElementPtr moveComments(isc::data::ConstElementPtr element);
/// @brief Extract comment entries from user-context
///
/// Process an element looking for user-context entries carrying
/// comments and moving these comments at the same level than
/// user-contexts. As the common case is no comment and this routine
/// tries to maximize sharing the standard behavior is just to return
/// the argument unchanged.
///
/// @param element
/// @return a processed copy of element or unmodified element
isc::data::ElementPtr extractComments(isc::data::ElementPtr element);
/// @brief Extract comment entries from user-context (const variant)
///
/// @param element
/// @return a processed copy of element or unmodified element
isc::data::ConstElementPtr extractComments(isc::data::ConstElementPtr element);
}; // end of isc::test namespace
}; // end of isc namespace
#endif // USER_CONTEXT_UTILS_H
|