Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
0b8208fe
Commit
0b8208fe
authored
Nov 04, 2020
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'clng11' of
git://github.com/neheb/MPD
into master
parents
3d276d50
f1fc5d79
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
33 deletions
+23
-33
FileCommands.cxx
src/command/FileCommands.cxx
+3
-6
ProxyDatabasePlugin.cxx
src/db/plugins/ProxyDatabasePlugin.cxx
+5
-10
Filter.cxx
src/song/Filter.cxx
+15
-17
No files found.
src/command/FileCommands.cxx
View file @
0b8208fe
...
...
@@ -113,12 +113,9 @@ IsValidName(const StringView s) noexcept
if
(
s
.
empty
()
||
!
IsAlphaASCII
(
s
.
front
()))
return
false
;
for
(
const
char
ch
:
s
)
{
if
(
!
IsAlphaASCII
(
ch
)
&&
ch
!=
'_'
&&
ch
!=
'-'
)
return
false
;
}
return
true
;
return
std
::
none_of
(
s
.
begin
(),
s
.
end
(),
[
=
](
const
auto
&
ch
)
{
return
!
IsAlphaASCII
(
ch
)
&&
ch
!=
'_'
&&
ch
!=
'-'
;
});
}
gcc_pure
...
...
src/db/plugins/ProxyDatabasePlugin.cxx
View file @
0b8208fe
...
...
@@ -356,11 +356,9 @@ SendConstraints(mpd_connection *connection, const SongFilter &filter)
filter
.
ToExpression
().
c_str
());
#endif
for
(
const
auto
&
i
:
filter
.
GetItems
())
if
(
!
SendConstraints
(
connection
,
*
i
))
return
false
;
return
true
;
return
std
::
all_of
(
filter
.
GetItems
().
begin
(),
filter
.
GetItems
().
end
(),
[
=
](
const
auto
&
item
)
{
return
SendConstraints
(
connection
,
*
item
);
});
}
static
bool
...
...
@@ -896,11 +894,8 @@ IsFilterFullySupported(const SongFilter &filter,
(
void
)
connection
;
#endif
for
(
const
auto
&
i
:
filter
.
GetItems
())
if
(
!
IsFilterSupported
(
*
i
))
return
false
;
return
true
;
return
std
::
all_of
(
filter
.
GetItems
().
begin
(),
filter
.
GetItems
().
end
(),
[](
const
auto
&
item
)
{
return
IsFilterSupported
(
*
item
);
});
}
gcc_pure
...
...
src/song/Filter.cxx
View file @
0b8208fe
...
...
@@ -429,29 +429,27 @@ SongFilter::Match(const LightSong &song) const noexcept
bool
SongFilter
::
HasFoldCase
()
const
noexcept
{
for
(
const
auto
&
i
:
and_filter
.
GetItems
())
{
if
(
auto
t
=
dynamic_cast
<
const
TagSongFilter
*>
(
i
.
get
()))
{
if
(
t
->
GetFoldCase
())
return
true
;
}
else
if
(
auto
u
=
dynamic_cast
<
const
UriSongFilter
*>
(
i
.
get
()))
{
if
(
u
->
GetFoldCase
())
return
true
;
}
}
return
std
::
any_of
(
and_filter
.
GetItems
().
begin
(),
and_filter
.
GetItems
().
end
(),
[](
const
auto
&
item
)
{
if
(
auto
t
=
dynamic_cast
<
const
TagSongFilter
*>
(
item
.
get
()))
return
t
->
GetFoldCase
();
if
(
auto
u
=
dynamic_cast
<
const
UriSongFilter
*>
(
item
.
get
()))
return
u
->
GetFoldCase
();
return
false
;
return
false
;
});
}
bool
SongFilter
::
HasOtherThanBase
()
const
noexcept
{
for
(
const
auto
&
i
:
and_filter
.
GetItems
())
{
const
auto
*
f
=
dynamic_cast
<
const
BaseSongFilter
*>
(
i
.
get
());
if
(
f
==
nullptr
)
return
true
;
}
return
false
;
return
std
::
any_of
(
and_filter
.
GetItems
().
begin
(),
and_filter
.
GetItems
().
end
(),
[
=
](
const
auto
&
item
)
{
return
!
dynamic_cast
<
const
BaseSongFilter
*>
(
item
.
get
());
});
}
const
char
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment