-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramresolver.cpp
More file actions
241 lines (190 loc) · 6.06 KB
/
programresolver.cpp
File metadata and controls
241 lines (190 loc) · 6.06 KB
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
/*
Copyright (C) 2009-2014 jakago
Copyright (C) 2018-2026 CSReviser Team
This file is part of CaptureStream2, the recorder to support HLS for
NHK radio language courses.
CaptureStream2 is a modified version of CaptureStream, originally
developed by jakago.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/gpl-2.0.html>.
*/
#include "programresolver.h"
#include "programrepository.h"
#include <QtGlobal>
// ---------- 正規化(表記ゆれ吸収) ----------
QString ProgramResolver::normalize(const QString& s)
{
QString t = s.trimmed();
// 全角スペース → 半角
t.replace(u' ', u' ');
// 連続スペース圧縮
t = t.simplified();
return t;
}
// ---------- メイン解決 ----------
ResolveResult ProgramResolver::resolve(const QString& input)
{
ResolveResult r;
QString key = normalize(input);
// 1文字入力は禁止(ノイズ防止)
if (key.size() <= 1) {
r.status = ResolveResult::NotFound;
return r;
}
auto& repo = ProgramRepository::instance();
int bestScore = 0;
QStringList bestIds;
// 2文字以上で部分一致を許可
const int MIN_PARTIAL_TITLE_LENGTH = 2;
const int MIN_PARTIAL_ID_LENGTH = 5;
for (auto it = repo.name_map.cbegin(); it != repo.name_map.cend(); ++it) {
const QString& title = it.key();
const QString& id = it.value();
int score = 0;
// ---- スコア評価 ----
// 5: ID完全一致
if (id == key) {
score = 5;
}
// 4: タイトル完全一致
else if (QString::compare(title, key, Qt::CaseInsensitive) == 0) {
score = 4;
}
// 3: タイトル前方一致
else if (title.startsWith(key, Qt::CaseInsensitive)) {
score = 3;
}
// 2: タイトル任意部分一致
else if (key.length() >= MIN_PARTIAL_TITLE_LENGTH &&
title.contains(key, Qt::CaseInsensitive)) {
score = 2;
}
// 1: ID任意部分一致(最後の救済)
else if (key.length() >= MIN_PARTIAL_ID_LENGTH &&
id.contains(key, Qt::CaseInsensitive)) {
score = 1;
}
if (score == 0)
continue;
// ---- 最良候補更新 ----
if (score > bestScore) {
bestScore = score;
bestIds.clear();
bestIds << id;
}
else if (score == bestScore) {
// 同点ならタイトル長が短いものを優先
if (!bestIds.isEmpty()) {
QString currentTitle = title;
QString bestTitle = repo.name_map.key(bestIds.first());
if (currentTitle.length() < bestTitle.length()) {
bestIds.clear();
bestIds << id;
}
else if (currentTitle.length() == bestTitle.length()) {
bestIds << id;
}
}
else {
bestIds << id;
}
}
}
bestIds.removeDuplicates();
// ---- 結果 ----
if (bestIds.isEmpty()) {
r.status = ResolveResult::NotFound;
}
else if (bestIds.size() == 1) {
r.status = ResolveResult::Unique;
r.id = bestIds.first();
}
else {
r.status = ResolveResult::Ambiguous;
r.candidates = bestIds;
}
return r;
}
// ---------- Unique専用ラッパ ----------
QString ProgramResolver::resolveUnique(const QString& input)
{
auto r = resolve(input);
return (r.status == ResolveResult::Unique) ? r.id : QString();
}
/*
#include "programresolver.h"
#include "programrepository.h"
QString ProgramResolver::normalize(const QString& s)
{
QString t = s.trimmed();
// 全角→半角対策など将来ここに追加可能
return t;
}
ResolveResult ProgramResolver::resolve(const QString& input)
{
ResolveResult r;
if (input.isEmpty())
return r;
auto& repo = ProgramRepository::instance();
QString key = normalize(input);
int bestScore = 0;
QStringList best;
for (auto it = repo.name_map.cbegin(); it != repo.name_map.cend(); ++it) {
const QString& title = it.key();
const QString& id = it.value();
int score = 0;
// 5: ID完全一致
if (id == key)
score = 5;
// 4: タイトル完全一致
else if (QString::compare(title, key, Qt::CaseInsensitive) == 0)
score = 4;
// 3: 前方一致
else if (title.startsWith(key, Qt::CaseInsensitive))
score = 3;
// 2: タイトル部分一致
else if (title.contains(key, Qt::CaseInsensitive))
score = 2;
// 1: ID部分一致
else if (id.contains(key, Qt::CaseInsensitive))
score = 1;
if (score == 0)
continue;
if (score > bestScore) {
bestScore = score;
best.clear();
best << id;
}
else if (score == bestScore) {
best << id;
}
}
if (best.isEmpty()) {
r.status = ResolveResult::NotFound;
}
else if (best.size() == 1) {
r.status = ResolveResult::Unique;
r.id = best.first();
}
else {
r.status = ResolveResult::Ambiguous;
r.candidates = best;
}
return r;
}
QString ProgramResolver::resolveUnique(const QString& input)
{
auto r = resolve(input);
if (r.status == ResolveResult::Unique)
return r.id;
return {};
}
*/