forked from sakura-editor/sakura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDataProfile.h
351 lines (314 loc) · 10.7 KB
/
CDataProfile.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
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/*! @file */
/*
Copyright (C) 2008, kobake
Copyright (C) 2018-2022, Sakura Editor Organization
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented;
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such,
and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#ifndef SAKURA_CDATAPROFILE_401640FD_5B27_454A_B0DE_098E1C4FAEAD_H_
#define SAKURA_CDATAPROFILE_401640FD_5B27_454A_B0DE_098E1C4FAEAD_H_
#pragma once
#include "CProfile.h"
#include "basis/SakuraBasis.h"
#include "debug/Debug2.h"
#include "util/StaticType.h"
/*!
* バッファ参照型
*
* 読み書き可能なWCHARバッファとサイズを指定して構築する
*/
class StringBufferW {
WCHAR* pszData_;
size_t cchDataSize_;
public:
explicit StringBufferW(WCHAR* pData, size_t maxCount);
template <size_t N>
explicit StringBufferW(WCHAR (&buffer)[N])
: StringBufferW(buffer, N) {}
[[nodiscard]] const WCHAR* c_str() const noexcept { return pszData_; }
[[nodiscard]] size_t capacity() const noexcept { return cchDataSize_; }
StringBufferW& operator = (std::wstring_view rhs);
};
/*!
* プロファイル用データ変換
*/
namespace profile_data {
/*!
* 指定した型の変換に対応しているかどうかを返すインライン関数
*/
template<class T>
constexpr bool is_supported_v = std::is_integral_v<T> || std::is_enum_v<T> || std::is_same_v<T, CLogicInt> || std::is_same_v<T, CLayoutInt> || std::is_same_v<T, StringBufferW>;
/*!
* 文字列を設定値に変換する
*
* テンプレート定義は、32bit以下の整数型とenum型に対応している。
* それ以外の型で利用したい場合は、特殊化定義を書いて使う。
* 既存コードにあった bool, CLayoutInt, WCHAR, KEYCODE は特殊化済み。
* 独自型 CLogicInt は int に暗黙変換できるので特殊化不要。
*/
template<class NumType>
[[nodiscard]] bool TryParse(std::wstring_view profile, NumType& value) noexcept
{
if (profile.length() > 0) {
const WCHAR* pStart = profile.data();
WCHAR* pEnd = nullptr;
if constexpr (std::is_unsigned_v<NumType>) {
if (const auto parsedNum = ::wcstoul(pStart, &pEnd, 10); pStart != pEnd) {
value = static_cast<NumType>(parsedNum);
return true;
}
}
else {
if (const auto parsedNum = ::wcstol(pStart, &pEnd, 10); pStart != pEnd) {
value = static_cast<NumType>(parsedNum);
return true;
}
}
}
return false;
}
/*!
* 設定値を文字列に変換する
*
* テンプレート定義は、組込の整数型に対応している。
* 整数以外の型で利用したい場合は、特殊化定義を書いて使う。
* 既存コードにあった型 bool, CLayoutInt, WCHAR, KEYCODE は特殊化済み。
* 独自型 CLogicInt は int に暗黙変換できるので特殊化不要。
*/
template<class NumType, std::enable_if_t<!std::is_enum_v<NumType>, std::nullptr_t> = nullptr>
[[nodiscard]] std::wstring ToString(NumType value)
{
return std::to_wstring(value);
}
//! 設定値を文字列に変換する
template<class EnumType, std::enable_if_t<std::is_enum_v<EnumType>, std::nullptr_t> = nullptr>
[[nodiscard]] std::wstring ToString(EnumType value)
{
auto nValue = static_cast<int32_t>(value);
return ToString(nValue);
}
#ifdef USE_STRICT_INT
//! 文字列を設定値に変換する
template<>
[[nodiscard]] inline bool TryParse<CLayoutInt>(std::wstring_view profile, CLayoutInt& value) noexcept
{
// int型を介して値を読み取る
if (int nValue = 0; TryParse(profile, nValue)) {
value = CLayoutInt(nValue);
return true;
}
return false;
}
//! 設定値を文字列に変換する
template<>
[[nodiscard]] inline std::wstring ToString<CLayoutInt>(CLayoutInt value)
{
// int型を介して文字列化する
return ToString((Int)value);
}
#endif //ifdef USE_STRICT_INT
//! 文字列を設定値に変換する
template<>
[[nodiscard]] inline bool TryParse<bool>(std::wstring_view profile, bool& value) noexcept
{
// int型を介して値を読み取る
if (int nValue = 0; TryParse(profile, nValue)) {
value = (nValue != 0);
return true;
}
return false;
}
//! 設定値を文字列に変換する
template<>
[[nodiscard]] inline std::wstring ToString<bool>(bool value)
{
// int型を介して文字列化する
return ToString(value ? 1 : 0);
}
/*!
* 文字列を設定値に変換する
*
* 行番号エリアとテキストエリアを区切るのに使う文字の設定。
*
* @sa STypeConfig::m_cLineTermChar
*/
template<>
[[nodiscard]] inline bool TryParse<WCHAR>(std::wstring_view profile, WCHAR& value) noexcept
{
// \0は区切り文字「なし」を意味する
if (const WCHAR ch = profile.empty() ? L'\0' : profile[0]; (ch & 0xd800) != 0xd800) {
// 区切り文字は表示可能な単一文字なので、変換不要。
value = ch;
return true;
}
return false;
}
/*!
* 設定値を文字列に変換する
*
* 行番号エリアとテキストエリアを区切るのに使う文字の設定。
*
* @sa STypeConfig::m_cLineTermChar
*/
template<>
[[nodiscard]] inline std::wstring ToString<WCHAR>(WCHAR value)
{
if (value != L'\0' && (value & 0xd800) != 0xd800) {
// 指定された文字1字のみで構成される文字列を返す
return std::wstring(1, value);
}
return std::wstring();
}
/*!
* 文字列を設定値に変換する
*
* 元々ACHAR型の変換メソッドになっていたものを再定義。
* カスタムメニューのニーモニック設定に使われている。
*
* ニーモニックとは、「ファイル(F)」の F のこと。(Fには下線が付く)
* キーボードショートカットとして機能することから、メニューショートカットとも言う。
*
* @sa CommonSetting_CustomMenu::m_nCustMenuItemKeyArr
*/
template<>
[[nodiscard]] inline bool TryParse<KEYCODE>(std::wstring_view profile, KEYCODE& value) noexcept
{
// \0はニーモニック「なし」を意味する
if (const WCHAR ch = profile.empty() ? L'\0' : profile[0]; ch < 0x80) {
// ニーモニックはASCIIの印字可能文字なので、CRT関数を使った変換は不要。
value = static_cast<KEYCODE>(ch);
return true;
}
return false;
}
//! 設定値を文字列に変換する
template<>
[[nodiscard]] inline std::wstring ToString<KEYCODE>(KEYCODE value)
{
// WCHAR型を介して文字列化する
const WCHAR ch = value < 0 || value >= 0x80 ? L'\0' : value;
return ToString(ch);
}
/*!
* 文字列を設定値に変換する
*
* @sa StringBufferW
*/
template<>
[[nodiscard]] inline bool TryParse<StringBufferW>(std::wstring_view profile, StringBufferW& value) noexcept
{
if (profile.length() < value.capacity()) {
value = profile;
return true;
}
return false;
}
//! 設定値を文字列に変換する
[[nodiscard]] std::wstring ToString(const StringBufferW& value);
}; // end of namespace profile_data
/*!
* 各種データ変換付きCProfile
*
* @date 2007/09/24 kobake データ変換部を子クラスに分離
*/
class CDataProfile : public CProfile {
public:
using CProfile::GetProfileData;
using CProfile::SetProfileData;
/*!
* Profileから読み込んだ文字列を設定値に変換して取得する
*
* @retval true 成功
* @retval false 失敗
*/
template<class T, std::enable_if_t<profile_data::is_supported_v<T>, std::nullptr_t> = nullptr>
[[nodiscard]] bool GetProfileData(
std::wstring_view sectionName, //!< [in] セクション名
std::wstring_view entryKey, //!< [in] エントリ名
T& tEntryValue //!< [out] エントリ値
) const
{
if (std::wstring strEntryValue; GetProfileData(sectionName, entryKey, strEntryValue)) {
return profile_data::TryParse(strEntryValue, tEntryValue);
}
return false;
}
/*!
* 設定値を文字列に変換してProfileへ書き込む
*/
template<class T, std::enable_if_t<profile_data::is_supported_v<T>, std::nullptr_t> = nullptr>
void SetProfileData(
std::wstring_view sectionName, //!< [in] セクション名
std::wstring_view entryKey, //!< [in] エントリ名
const T tEntryValue //!< [in] エントリ値
)
{
const std::wstring strEntryValue = profile_data::ToString(tEntryValue);
SetProfileData(sectionName, entryKey, strEntryValue.data());
}
/*!
* 設定値の入出力テンプレート
*
* 設定値の入出力を行う。
*
* @retval true 設定値を正しく読み書きできた
* @retval false 設定値を読み込めなかった
*/
template <class T> //T=={int, bool, WCHAR, KEYCODE, StringBufferW}
bool IOProfileData(
std::wstring_view sectionName, //!< [in] セクション名
std::wstring_view entryKey, //!< [in] エントリ名
T& tEntryValue //!< [in,out] エントリ値
)
{
if( IsReadingMode() ){
return GetProfileData(sectionName, entryKey, tEntryValue);
}else{
SetProfileData(sectionName, entryKey, tEntryValue);
return true;
}
}
/*!
* 独自定義文字配列拡張型(StaticString)の入出力
*
* 型引数が合わないために通常入出力と分離。
*
* @retval true 設定値を正しく読み書きできた
* @retval false 設定値を読み込めなかった
*/
template <int N>
bool IOProfileData(
std::wstring_view sectionName, //!< [in] セクション名
std::wstring_view entryKey, //!< [in] エントリ名
StaticString<WCHAR, N>& szEntryValue //!< [in,out] エントリ値
)
{
// バッファ参照型に変換して入出力する
return IOProfileData(sectionName, entryKey, StringBufferW(szEntryValue.GetBufferPointer(), szEntryValue.GetBufferCount()));
}
/*!
* 独自定義バッファ参照型(StringBufferW)の入出力(右辺値参照バージョン)
*
* @retval true 設定値を正しく読み書きできた
* @retval false 設定値を読み込めなかった
*/
bool IOProfileData(
std::wstring_view sectionName, //!< [in] セクション名
std::wstring_view entryKey, //!< [in] エントリ名
StringBufferW&& refEntryValue //!< [in,out] エントリ値
);
};
#endif /* SAKURA_CDATAPROFILE_401640FD_5B27_454A_B0DE_098E1C4FAEAD_H_ */