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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
|
/*
** Copyright (C) 2022-2025 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** 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 3, 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, write to the Free Software Foundation,
** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
#include "config.h"
#include "mu-document.hh"
#include "mu-message.hh"
#include "utils/mu-sexp.hh"
#include <cstdint>
#include <glib.h>
#include <numeric>
#include <algorithm>
#include <charconv>
#include <cinttypes>
#include <string>
#include <utils/mu-utils.hh>
using namespace Mu;
// backward compat
#ifndef HAVE_XAPIAN_FLAG_NGRAMS
#define FLAG_NGRAMS FLAG_CJK_NGRAM
#endif /*HAVE_XAPIAN_FLAG_NGRAMS*/
const Xapian::Document&
Document::xapian_document() const
{
if (dirty_sexp_) {
xdoc_.set_data(sexp().to_string());
dirty_sexp_ = false;
}
return xdoc_;
}
static std::string
propname(const Field& field)
{
return std::string(":") + std::string{field.name};
}
template<typename SexpType> void
Document::sexp_put_prop(const Field& field, SexpType&& val)
{
if (field.include_in_sexp()) {
cached_sexp().put_props(propname(field), std::forward<SexpType>(val));
dirty_sexp_ = true;
}
}
void
Document::sexp_remove_prop(const Field& field)
{
if (field.include_in_sexp()) {
cached_sexp().del_prop(propname(field));
dirty_sexp_ = true;
}
}
static Xapian::TermGenerator
make_term_generator(Xapian::Document& doc, Document::Options opts)
{
Xapian::TermGenerator termgen;
if (any_of(opts & Document::Options::SupportNgrams))
termgen.set_flags(Xapian::TermGenerator::FLAG_NGRAMS);
termgen.set_document(doc);
return termgen;
}
static void
add_search_term(Xapian::Document& doc, const Field& field, const std::string& val,
Document::Options opts)
{
if (field.is_normal_term() || field.is_phrasable_term()) {
const auto flat{utf8_flatten(val)};
if (field.is_normal_term())
doc.add_term(field.xapian_term(flat));
if (field.is_phrasable_term()) {
auto termgen{make_term_generator(doc, opts)};
termgen.index_text(flat, 1, field.xapian_term());
}
} else if (field.is_boolean_term()) {
doc.add_boolean_term(field.xapian_term(val));
} else
throw std::logic_error("not a search term");
}
void
Document::add(Field::Id id, const std::string& val)
{
const auto field{field_from_id(id)};
if (field.is_value())
xdoc_.add_value(field.value_no(), val);
if (field.is_searchable())
add_search_term(xdoc_, field, val, options_);
sexp_put_prop(field, val);
}
void
Document::add(Field::Id id, const std::vector<std::string>& vals)
{
const auto field{field_from_id(id)};
if (field.is_value())
xdoc_.add_value(field.value_no(), Mu::join(vals, SepaChar1));
if (field.is_searchable())
std::for_each(vals.begin(), vals.end(),
[&](const auto& val) {
add_search_term(xdoc_, field, val, options_); });
if (field.include_in_sexp()) {
Sexp elms{};
for(auto&& val: vals)
elms.add(val);
sexp_put_prop(field, std::move(elms));
}
}
std::vector<std::string>
Document::string_vec_value(Field::Id field_id) const noexcept
{
return Mu::split(string_value(field_id), SepaChar1);
}
static Sexp
make_contacts_sexp(const Contacts& contacts)
{
Sexp contacts_sexp;
seq_for_each(contacts, [&](auto&& c) {
Sexp contact(":email"_sym, c.email);
if (!c.name.empty())
contact.add(":name"_sym, c.name);
contacts_sexp.add(std::move(contact));
});
return contacts_sexp;
}
void
Document::add(Field::Id id, const Contacts& contacts)
{
if (contacts.empty())
return;
const auto field{field_from_id(id)};
std::vector<std::string> cvec;
const std::string sepa2(1, SepaChar2);
auto&& termgen{make_term_generator(xdoc_, options_)};
for (auto&& contact: contacts) {
const auto cfield_id{contact.field_id()};
if (!cfield_id || *cfield_id != id)
continue;
const auto e{contact.email};
xdoc_.add_term(field.xapian_term(e));
/* allow searching for address components, too */
const auto atpos = e.find('@');
if (atpos != std::string::npos && atpos < e.size() - 1) {
xdoc_.add_term(field.xapian_term(e.substr(0, atpos)));
xdoc_.add_term(field.xapian_term(e.substr(atpos + 1)));
}
if (!contact.name.empty())
termgen.index_text(utf8_flatten(contact.name), 1,
field.xapian_term());
cvec.emplace_back(contact.email + sepa2 + contact.name);
}
if (!cvec.empty())
xdoc_.add_value(field.value_no(), join(cvec, SepaChar1));
sexp_put_prop(field, make_contacts_sexp(contacts));
}
Contacts
Document::contacts_value(Field::Id id) const noexcept
{
const auto vals{string_vec_value(id)};
Contacts contacts;
contacts.reserve(vals.size());
const auto ctype{contact_type_from_field_id(id)};
if (G_UNLIKELY(!ctype)) {
mu_critical("invalid field-id for contact-type: <{}>",
static_cast<size_t>(id));
return {};
}
for (auto&& s: vals) {
const auto pos = s.find(SepaChar2);
if (G_UNLIKELY(pos == std::string::npos)) {
mu_critical("invalid contact data '{}'", s);
break;
}
contacts.emplace_back(s.substr(0, pos), s.substr(pos + 1), *ctype);
}
return contacts;
}
void
Document::add_extra_contacts(const std::string& prop_name, const Contacts& contacts)
{
if (!contacts.empty()) {
cached_sexp().put_props(prop_name, make_contacts_sexp(contacts));
dirty_sexp_ = true;
}
}
static Sexp
make_emacs_time_sexp(::time_t t)
{
return Sexp().add(static_cast<unsigned>(t >> 16),
static_cast<unsigned>(t & 0xffff),
0);
}
void
Document::add(Field::Id id, int64_t val)
{
/*
* Xapian stores everything (incl. numbers) as strings.
*
* we comply, by storing a number a base-16 and prefixing with 'f' +
* length; such that the strings are sorted in the numerical order.
*/
const auto field{field_from_id(id)};
if (field.is_value())
xdoc_.add_value(field.value_no(), to_lexnum(val));
if (field.is_time_t())
sexp_put_prop(field, make_emacs_time_sexp(val));
else
sexp_put_prop(field, val);
}
int64_t
Document::integer_value(Field::Id field_id) const noexcept
{
if (auto&& v{string_value(field_id)}; v.empty())
return 0;
else
return from_lexnum(v);
}
void
Document::add(Priority prio)
{
constexpr auto field{field_from_id(Field::Id::Priority)};
xdoc_.add_value(field.value_no(), std::string(1, to_char(prio)));
xdoc_.add_boolean_term(field.xapian_term(to_char(prio)));
if (field.include_in_sexp())
sexp_put_prop(field, Sexp::Symbol(priority_name(prio)));
}
Priority
Document::priority_value() const noexcept
{
const auto val{string_value(Field::Id::Priority)};
return priority_from_char(val.empty() ? 'n' : val[0]);
}
void
Document::add(Flags flags)
{
constexpr auto field{field_from_id(Field::Id::Flags)};
Sexp flaglist;
xdoc_.add_value(field.value_no(), to_lexnum(static_cast<int64_t>(flags)));
flag_infos_for_each([&](auto&& flag_info) {
auto term=[&](){return field.xapian_term(flag_info.shortcut_lower());};
if (any_of(flag_info.flag & flags)) {
xdoc_.add_boolean_term(term());
flaglist.add(Sexp::Symbol(flag_info.name));
}
});
if (field.include_in_sexp())
sexp_put_prop(field, std::move(flaglist));
}
Flags
Document::flags_value() const noexcept
{
return static_cast<Flags>(integer_value(Field::Id::Flags));
}
void
Document::remove(Field::Id field_id)
{
const auto field{field_from_id(field_id)};
const auto pfx{field.xapian_prefix()};
bool updated{};
xapian_try([&]{
if (auto&& val{xdoc_.get_value(field.value_no())}; !val.empty()) {
// g_debug("removing value<%u>: '%s'", field.value_no(),
// val.c_str());
xdoc_.remove_value(field.value_no());
updated = true;
}
std::vector<std::string> kill_list;
for (auto&& it = xdoc_.termlist_begin();
it != xdoc_.termlist_end(); ++it) {
const auto term{*it};
if (!term.empty() && term.at(0) == pfx)
kill_list.emplace_back(term);
}
for (auto&& term: kill_list) {
// g_debug("removing term '%s'", term.c_str());
try {
xdoc_.remove_term(term);
updated = true;
} catch(const Xapian::InvalidArgumentError& xe) {
mu_critical("failed to remove '{}'", term);
}
}
});
if (updated)
sexp_remove_prop(field);
}
#ifdef BUILD_TESTS
#include "utils/mu-test-utils.hh"
#define assert_same_contact(C1,C2) do { \
g_assert_cmpstr(C1.email.c_str(),==,C2.email.c_str()); \
g_assert_cmpstr(C2.name.c_str(),==,C2.name.c_str()); \
} while (0)
#define assert_same_contacts(CV1,CV2) do { \
g_assert_cmpuint(CV1.size(),==,CV2.size()); \
for (auto i = 0U; i != CV1.size(); ++i) \
assert_same_contact(CV1[i], CV2[i]); \
} while(0)
static const Contacts test_contacts = {{
Contact{"john@example.com", "John", Contact::Type::Bcc},
Contact{"ringo@example.com", "Ringo", Contact::Type::Bcc},
Contact{"paul@example.com", "Paul", Contact::Type::Cc},
Contact{"george@example.com", "George", Contact::Type::Cc},
Contact{"james@example.com", "James", Contact::Type::From},
Contact{"lars@example.com", "Lars", Contact::Type::To},
Contact{"kirk@example.com", "Kirk", Contact::Type::To},
Contact{"jason@example.com", "Jason", Contact::Type::To}
}};
static void
test_bcc()
{
{
Document doc;
doc.add(Field::Id::Bcc, test_contacts);
Contacts expected_contacts = {{
Contact{"john@example.com", "John",
Contact::Type::Bcc},
Contact{"ringo@example.com", "Ringo",
Contact::Type::Bcc},
}};
const auto actual_contacts = doc.contacts_value(Field::Id::Bcc);
assert_same_contacts(expected_contacts, actual_contacts);
}
{
Document doc;
Contacts contacts = {{
Contact{"john@example.com", "John Lennon",
Contact::Type::Bcc},
Contact{"ringo@example.com", "Ringo",
Contact::Type::Bcc},
}};
doc.add(Field::Id::Bcc, contacts);
TempDir tempdir;
auto db = Xapian::WritableDatabase(tempdir.path());
db.add_document(doc.xapian_document());
auto contacts2 = doc.contacts_value(Field::Id::Bcc);
assert_same_contacts(contacts, contacts2);
}
}
static void
test_cc()
{
Document doc;
doc.add(Field::Id::Cc, test_contacts);
Contacts expected_contacts = {{
Contact{"paul@example.com", "Paul", Contact::Type::Cc},
Contact{"george@example.com", "George", Contact::Type::Cc}
}};
const auto actual_contacts = doc.contacts_value(Field::Id::Cc);
assert_same_contacts(expected_contacts, actual_contacts);
}
static void
test_from()
{
Document doc;
doc.add(Field::Id::From, test_contacts);
Contacts expected_contacts = {{
Contact{"james@example.com", "James", Contact::Type::From},
}};
const auto actual_contacts = doc.contacts_value(Field::Id::From);
assert_same_contacts(expected_contacts, actual_contacts);
}
static void
test_to()
{
Document doc;
doc.add(Field::Id::To, test_contacts);
Contacts expected_contacts = {{
Contact{"lars@example.com", "Lars", Contact::Type::To},
Contact{"kirk@example.com", "Kirk", Contact::Type::To},
Contact{"jason@example.com", "Jason", Contact::Type::To}
}};
const auto actual_contacts = doc.contacts_value(Field::Id::To);
assert_same_contacts(expected_contacts, actual_contacts);
}
static void
test_size()
{
{
Document doc;
doc.add(Field::Id::Size, 12345);
g_assert_cmpuint(doc.integer_value(Field::Id::Size),==,12345);
}
{
Document doc;
g_assert_cmpuint(doc.integer_value(Field::Id::Size),==,0);
}
}
int
main(int argc, char* argv[])
{
g_test_init(&argc, &argv, NULL);
g_test_add_func("/message/document/bcc", test_bcc);
g_test_add_func("/message/document/cc", test_cc);
g_test_add_func("/message/document/from", test_from);
g_test_add_func("/message/document/to", test_to);
g_test_add_func("/message/document/size", test_size);
return g_test_run();
}
#endif /*BUILD_TESTS*/
|