MythTV master
mythsorthelper.cpp
Go to the documentation of this file.
1// -*- Mode: c++ -*-
2// vim: set expandtab tabstop=4 shiftwidth=4
3
4#include "mythsorthelper.h"
5
6#include "mythcorecontext.h"
7#include "mythlogging.h"
8
16{
17 m_prefixes = tr("^(The |A |An )",
18 "Regular Expression for what to ignore when sorting");
19 m_prefixes = m_prefixes.trimmed();
20 if (not hasPrefixes()) {
21 // This language doesn't ignore any words when sorting
23 return;
24 }
25 if (not m_prefixes.startsWith("^"))
26 m_prefixes = "^" + m_prefixes;
27
28 if (m_caseSensitive == Qt::CaseInsensitive)
29 {
30 m_prefixes = m_prefixes.toLower();
31 m_exclusions = m_exclusions.toLower();
32 }
33 m_prefixesRegex = QRegularExpression(m_prefixes);
34 m_prefixesRegex2 = QRegularExpression(m_prefixes + "(.*)");
35 m_exclList = m_exclusions.split(";", Qt::SkipEmptyParts);
36 // NOLINTNEXTLINE(modernize-loop-convert)
37 for (int i = 0; i < m_exclList.size(); i++)
38 m_exclList[i] = m_exclList[i].trimmed();
39}
40
51{
52 if (gCoreContext) {
53#if 0
54 // Last minute change. QStringRef::localeAwareCompare appears to
55 // always do case insensitive sorting, so there's no point in
56 // presenting this option to a user.
58 gCoreContext->GetBoolSetting("SortCaseSensitive", false)
59 ? Qt::CaseSensitive : Qt::CaseInsensitive;
60#endif
62 gCoreContext->GetBoolSetting("SortStripPrefixes", true)
65 gCoreContext->GetSetting("SortPrefixExceptions", "");
66 }
68}
69
83 Qt::CaseSensitivity case_sensitive,
84 SortPrefixMode prefix_mode,
85 QString exclusions) :
86 m_caseSensitive(case_sensitive),
87 m_prefixMode(prefix_mode),
88 m_exclusions(std::move(exclusions))
89{
91}
92
103{
104 if (other == nullptr)
105 {
106 LOG(VB_GENERAL, LOG_ERR,
107 QString("MythSortHelper created from null pointer."));
108 return;
109 }
111 m_prefixMode = other->m_prefixMode;
112 m_prefixes = other->m_prefixes;
115 m_exclusions = other->m_exclusions;
116 m_exclList = other->m_exclList;
117 m_exclMode = other->m_exclMode;
118}
119
120static std::shared_ptr<MythSortHelper> singleton = nullptr;
121
130std::shared_ptr<MythSortHelper> getMythSortHelper(void)
131{
132 if (singleton == nullptr)
133 singleton = std::make_shared<MythSortHelper>();
134 return singleton;
135}
136
147{
148 singleton = nullptr;
149}
150
163QString MythSortHelper::doTitle(const QString& title) const
164{
165 QString ltitle = title;
166 if (m_caseSensitive == Qt::CaseInsensitive)
167 ltitle = ltitle.toLower();
169 return ltitle;
171 {
172 if (m_exclList.contains(ltitle))
173 return ltitle;
174 } else {
175 for (const auto& str : std::as_const(m_exclList))
176 if (ltitle.startsWith(str))
177 return ltitle;
178 }
180 return ltitle.remove(m_prefixesRegex);
181 return ltitle.replace(m_prefixesRegex2, "\\2, \\1").trimmed();
182}
183
196QString MythSortHelper::doPathname(const QString& pathname) const
197{
198 QString lpathname = pathname;
199 if (m_caseSensitive == Qt::CaseInsensitive)
200 lpathname = lpathname.toLower();
202 return lpathname;
203 QStringList parts = lpathname.split("/");
204 // NOLINTNEXTLINE(modernize-loop-convert)
205 for (int i = 0; i < parts.size(); ++i) {
206 if (std::any_of(m_exclList.cbegin(), m_exclList.cend(),
207 [&parts,i](const QString& excl)
208 { return parts[i].startsWith(excl); } ))
209 continue;
211 parts[i] = parts[i].remove(m_prefixesRegex);
212 else
213 parts[i] = parts[i].replace(m_prefixesRegex2, "\\2, \\1").trimmed();
214 }
215 return parts.join("/");
216}
QString GetSetting(const QString &key, const QString &defaultval="")
bool GetBoolSetting(const QString &key, bool defaultval=false)
A class to consolidate all the soring functions.
Qt::CaseSensitivity m_caseSensitive
Whether sorting two strings should ignore upper/lower case.
SortPrefixMode m_prefixMode
Whether or not to ignore prefix words (like A, An, and The) when sorting two strings.
bool hasPrefixes(void)
Does the language translation specify any prefixes.
QStringList m_exclList
The m_exclusion string converted into a string list.
QRegularExpression m_prefixesRegex2
A regular expression used for moving leading prefix to the end of a string.
QString doPathname(const QString &pathname) const
Create the sortable form of an item.
QRegularExpression m_prefixesRegex
A regular expression used for removing a leading prefix.
QString m_exclusions
A string containing names that should be ignored when greating the sortable form of a title.
QString doTitle(const QString &title) const
Create the sortable form of an title string.
QString m_prefixes
A string containing the regular expression of prefixes to ignore when sorting.
void MythSortHelperCommon(void)
Common code for creating a MythSortHelper object.
MythSortHelper()
Create a MythSortHelper object.
SortExclusionMode m_exclMode
MythCoreContext * gCoreContext
This global variable contains the MythCoreContext instance for the app.
#define LOG(_MASK_, _LEVEL_, _QSTRING_)
Definition: mythlogging.h:39
static std::shared_ptr< MythSortHelper > singleton
std::shared_ptr< MythSortHelper > getMythSortHelper(void)
Get a pointer to the MythSortHelper singleton.
void resetMythSortHelper(void)
Delete the MythSortHelper singleton.
@ SortExclusionMatch
SortPrefixMode
@ SortPrefixKeep
@ SortPrefixRemove
STL namespace.