Parent: [502a34] (diff)

Download this file

xmltosd.h    83 lines (78 with data), 3.1 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
/* Copyright (C) 2014 J.F.Dockes
* 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, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef XMLTOSD_H_INCLUDED
#define XMLTOSD_H_INCLUDED
#include "autoconfig.h"
/** Parsing XML from saved queries or advanced search history.
*
* Here is how the schemas looks like:
*
* For advanced search
*
* <SD> <!-- Search Data -->
* <CL> <!-- Clause List -->
* <CLT>AND|OR</CLT> <!-- conjunction AND is default, ommitted -->
* <C> <!-- Clause -->
* [<NEG/>] <!-- Possible negation -->
* <CT>AND|OR|FN|PH|NE</CT> <!-- Clause type -->
* <F>[base64data]</F> <!-- Optional base64-encoded field name -->
* <T>[base64data]</T> <!-- base64-encoded text -->
* <S>slack</S> <!-- optional slack for near/phrase -->
* </C>
*
* <ND>[base64 path]</ND> <!-- Path exclusion -->
* <YD>[base64 path]</YD> <!-- Path filter -->
* </CL>
*
* <DMI><D>1</D><M>6</M><Y>2014</Y></DMI> <--! datemin -->
* <DMA><D>30</D><M>6</M><Y>2014</Y></DMA> <--! datemax -->
* <MIS>minsize</MIS> <!-- Min size -->
* <MAS>maxsize</MAS> <!-- Max size -->
* <ST>space-sep mtypes</ST> <!-- Included mime types -->
* <IT>space-sep mtypes</IT> <!-- Excluded mime types -->
*
* </SD>
*
* For Simple search:
*
* <SD type='ssearch'>
* <T>base64-encoded query text</T>
* <SM>OR|AND|FN|QL</SM>
* <SL>space-separated lang list</SL>
* <AP/> <!-- autophrase -->
* <AS>space-separated suffix list</AS> <!-- autosuffs -->
* <EX>base64-encoded config path>/EX> <!-- [multiple] ext index -->
* </SD>
*/
#include <memory>
#include "searchdata.h"
// Parsing XML from advanced search history or saved advanced search into
// a SearchData structure:
std::shared_ptr<Rcl::SearchData> xmlToSearchData(const string& xml,
bool complain = true);
// Parsing XML from saved simple search to ssearch parameters
struct SSearchDef {
SSearchDef() : autophrase(false), mode(0) {}
std::vector<std::string> stemlangs;
std::vector<std::string> autosuffs;
std::vector<std::string> extindexes;
std::string text;
bool autophrase;
int mode;
};
bool xmlToSSearch(const string& xml, SSearchDef&);
#endif /* XMLTOSD_H_INCLUDED */