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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#ifndef icu4x_CaseMapper_D_HPP
#define icu4x_CaseMapper_D_HPP
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <memory>
#include <functional>
#include <optional>
#include <cstdlib>
#include "../diplomat_runtime.hpp"
namespace icu4x {
namespace capi { struct CaseMapper; }
class CaseMapper;
namespace capi { struct CodePointSetBuilder; }
class CodePointSetBuilder;
namespace capi { struct DataProvider; }
class DataProvider;
namespace capi { struct Locale; }
class Locale;
struct TitlecaseOptionsV1;
class DataError;
}
namespace icu4x {
namespace capi {
struct CaseMapper;
} // namespace capi
} // namespace
namespace icu4x {
/**
* See the [Rust documentation for `CaseMapper`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapper.html) for more information.
*/
class CaseMapper {
public:
/**
* Construct a new CaseMapper instance using compiled data.
*
* See the [Rust documentation for `new`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapper.html#method.new) for more information.
*/
inline static std::unique_ptr<icu4x::CaseMapper> create();
/**
* Construct a new CaseMapper instance using a particular data source.
*
* See the [Rust documentation for `new`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapper.html#method.new) for more information.
*/
inline static diplomat::result<std::unique_ptr<icu4x::CaseMapper>, icu4x::DataError> create_with_provider(const icu4x::DataProvider& provider);
/**
* Returns the full lowercase mapping of the given string
*
* See the [Rust documentation for `lowercase`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.lowercase) for more information.
*/
inline diplomat::result<std::string, diplomat::Utf8Error> lowercase(std::string_view s, const icu4x::Locale& locale) const;
/**
* Returns the full uppercase mapping of the given string
*
* See the [Rust documentation for `uppercase`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.uppercase) for more information.
*/
inline diplomat::result<std::string, diplomat::Utf8Error> uppercase(std::string_view s, const icu4x::Locale& locale) const;
/**
* Returns the full lowercase mapping of the given string, using compiled data (avoids having to allocate a CaseMapper object)
*
* See the [Rust documentation for `lowercase`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.lowercase) for more information.
*/
inline static diplomat::result<std::string, diplomat::Utf8Error> lowercase_with_compiled_data(std::string_view s, const icu4x::Locale& locale);
/**
* Returns the full uppercase mapping of the given string, using compiled data (avoids having to allocate a CaseMapper object)
*
* See the [Rust documentation for `uppercase`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.uppercase) for more information.
*/
inline static diplomat::result<std::string, diplomat::Utf8Error> uppercase_with_compiled_data(std::string_view s, const icu4x::Locale& locale);
/**
* Returns the full titlecase mapping of the given string, performing head adjustment without
* loading additional data.
* (if head adjustment is enabled in the options)
*
* The `v1` refers to the version of the options struct, which may change as we add more options
*
* See the [Rust documentation for `titlecase_segment_with_only_case_data`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.titlecase_segment_with_only_case_data) for more information.
*/
inline diplomat::result<std::string, diplomat::Utf8Error> titlecase_segment_with_only_case_data_v1(std::string_view s, const icu4x::Locale& locale, icu4x::TitlecaseOptionsV1 options) const;
/**
* Case-folds the characters in the given string
*
* See the [Rust documentation for `fold`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.fold) for more information.
*/
inline diplomat::result<std::string, diplomat::Utf8Error> fold(std::string_view s) const;
/**
* Case-folds the characters in the given string
* using Turkic (T) mappings for dotted/dotless I.
*
* See the [Rust documentation for `fold_turkic`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.fold_turkic) for more information.
*/
inline diplomat::result<std::string, diplomat::Utf8Error> fold_turkic(std::string_view s) const;
/**
* Adds all simple case mappings and the full case folding for `c` to `builder`.
* Also adds special case closure mappings.
*
* In other words, this adds all characters that this casemaps to, as
* well as all characters that may casemap to this one.
*
* Note that since CodePointSetBuilder does not contain strings, this will
* ignore string mappings.
*
* Identical to the similarly named method on `CaseMapCloser`, use that if you
* plan on using string case closure mappings too.
*
* See the [Rust documentation for `add_case_closure_to`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.add_case_closure_to) for more information.
*/
inline void add_case_closure_to(char32_t c, icu4x::CodePointSetBuilder& builder) const;
/**
* Returns the simple lowercase mapping of the given character.
*
* This function only implements simple and common mappings.
* Full mappings, which can map one char to a string, are not included.
* For full mappings, use `CaseMapperBorrowed::lowercase`.
*
* See the [Rust documentation for `simple_lowercase`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.simple_lowercase) for more information.
*/
inline char32_t simple_lowercase(char32_t ch) const;
/**
* Returns the simple uppercase mapping of the given character.
*
* This function only implements simple and common mappings.
* Full mappings, which can map one char to a string, are not included.
* For full mappings, use `CaseMapperBorrowed::uppercase`.
*
* See the [Rust documentation for `simple_uppercase`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.simple_uppercase) for more information.
*/
inline char32_t simple_uppercase(char32_t ch) const;
/**
* Returns the simple titlecase mapping of the given character.
*
* This function only implements simple and common mappings.
* Full mappings, which can map one char to a string, are not included.
* For full mappings, use `CaseMapperBorrowed::titlecase_segment`.
*
* See the [Rust documentation for `simple_titlecase`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.simple_titlecase) for more information.
*/
inline char32_t simple_titlecase(char32_t ch) const;
/**
* Returns the simple casefolding of the given character.
*
* This function only implements simple folding.
* For full folding, use `CaseMapperBorrowed::fold`.
*
* See the [Rust documentation for `simple_fold`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.simple_fold) for more information.
*/
inline char32_t simple_fold(char32_t ch) const;
/**
* Returns the simple casefolding of the given character in the Turkic locale
*
* This function only implements simple folding.
* For full folding, use `CaseMapperBorrowed::fold_turkic`.
*
* See the [Rust documentation for `simple_fold_turkic`](https://docs.rs/icu/2.0.0/icu/casemap/struct.CaseMapperBorrowed.html#method.simple_fold_turkic) for more information.
*/
inline char32_t simple_fold_turkic(char32_t ch) const;
inline const icu4x::capi::CaseMapper* AsFFI() const;
inline icu4x::capi::CaseMapper* AsFFI();
inline static const icu4x::CaseMapper* FromFFI(const icu4x::capi::CaseMapper* ptr);
inline static icu4x::CaseMapper* FromFFI(icu4x::capi::CaseMapper* ptr);
inline static void operator delete(void* ptr);
private:
CaseMapper() = delete;
CaseMapper(const icu4x::CaseMapper&) = delete;
CaseMapper(icu4x::CaseMapper&&) noexcept = delete;
CaseMapper operator=(const icu4x::CaseMapper&) = delete;
CaseMapper operator=(icu4x::CaseMapper&&) noexcept = delete;
static void operator delete[](void*, size_t) = delete;
};
} // namespace
#endif // icu4x_CaseMapper_D_HPP