blob: f2d1fdb395b8737db6d27428d2bafb00e7287bd4 (
plain)
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
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include <string>
#include <vector>
typedef enum TextSearchDefault
{
SEARCH_DEFAULT_AND = 0,
SEARCH_DEFAULT_OR,
SEARCH_DEFAULT_NOT
} TextSearchDefault;
class CTextSearch final
{
public:
CTextSearch(const std::string &strSearchTerms, bool bCaseSensitive = false, TextSearchDefault defaultSearchMode = SEARCH_DEFAULT_OR);
bool Search(const std::string &strHaystack) const;
bool IsValid(void) const;
private:
static void GetAndCutNextTerm(std::string &strSearchTerm, std::string &strNextTerm);
void ExtractSearchTerms(const std::string &strSearchTerm, TextSearchDefault defaultSearchMode);
bool m_bCaseSensitive;
std::vector<std::string> m_AND;
std::vector<std::string> m_OR;
std::vector<std::string> m_NOT;
};
|