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
cefc7739
Commit
cefc7739
authored
Mar 13, 2020
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist/PlaylistSong: pass std::string_view
parent
a885bdba
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
12 deletions
+14
-12
PlaylistSong.cxx
src/playlist/PlaylistSong.cxx
+4
-4
PlaylistSong.hxx
src/playlist/PlaylistSong.hxx
+3
-1
QueueSave.cxx
src/queue/QueueSave.cxx
+1
-1
test_translate_song.cxx
test/test_translate_song.cxx
+6
-6
No files found.
src/playlist/PlaylistSong.cxx
View file @
cefc7739
...
...
@@ -65,15 +65,15 @@ try {
}
bool
playlist_check_translate_song
(
DetachedSong
&
song
,
const
char
*
base_uri
,
playlist_check_translate_song
(
DetachedSong
&
song
,
std
::
string_view
base_uri
,
const
SongLoader
&
loader
)
noexcept
{
if
(
base_uri
!=
nullptr
&&
strcmp
(
base_uri
,
"."
)
==
0
)
if
(
base_uri
.
compare
(
"."
)
==
0
)
/* PathTraitsUTF8::GetParent() returns "." when there
is no directory name in the given path; clear that
now, because it would break the database lookup
functions */
base_uri
=
nullptr
;
base_uri
=
{}
;
const
char
*
uri
=
song
.
GetURI
();
...
...
@@ -92,7 +92,7 @@ playlist_check_translate_song(DetachedSong &song, const char *base_uri,
}
#endif
if
(
base_uri
!=
nullptr
&&
!
uri_has_scheme
(
uri
)
&&
if
(
base_uri
.
data
()
!=
nullptr
&&
!
uri_has_scheme
(
uri
)
&&
!
PathTraitsUTF8
::
IsAbsolute
(
uri
))
song
.
SetURI
(
PathTraitsUTF8
::
Build
(
base_uri
,
uri
));
...
...
src/playlist/PlaylistSong.hxx
View file @
cefc7739
...
...
@@ -20,6 +20,8 @@
#ifndef MPD_PLAYLIST_SONG_HXX
#define MPD_PLAYLIST_SONG_HXX
#include <string_view>
class
SongLoader
;
class
DetachedSong
;
...
...
@@ -30,7 +32,7 @@ class DetachedSong;
* @return true on success, false if the song should not be used
*/
bool
playlist_check_translate_song
(
DetachedSong
&
song
,
const
char
*
base_uri
,
playlist_check_translate_song
(
DetachedSong
&
song
,
std
::
string_view
base_uri
,
const
SongLoader
&
loader
)
noexcept
;
#endif
src/queue/QueueSave.cxx
View file @
cefc7739
...
...
@@ -112,7 +112,7 @@ queue_load_song(TextFile &file, const SongLoader &loader,
auto
song
=
LoadQueueSong
(
file
,
line
);
if
(
!
playlist_check_translate_song
(
song
,
nullptr
,
loader
))
if
(
!
playlist_check_translate_song
(
song
,
{}
,
loader
))
return
;
queue
.
Append
(
std
::
move
(
song
),
priority
);
...
...
test/test_translate_song.cxx
View file @
cefc7739
...
...
@@ -200,7 +200,7 @@ TEST_F(TranslateSongTest, Insecure)
/* illegal because secure=false */
DetachedSong
song1
(
uri1
);
const
SongLoader
loader
(
*
reinterpret_cast
<
const
Client
*>
(
1
));
EXPECT_FALSE
(
playlist_check_translate_song
(
song1
,
nullptr
,
EXPECT_FALSE
(
playlist_check_translate_song
(
song1
,
{}
,
loader
));
}
...
...
@@ -221,18 +221,18 @@ TEST_F(TranslateSongTest, InDatabase)
storage
);
DetachedSong
song1
(
"doesntexist"
);
EXPECT_FALSE
(
playlist_check_translate_song
(
song1
,
nullptr
,
EXPECT_FALSE
(
playlist_check_translate_song
(
song1
,
{}
,
loader
));
DetachedSong
song2
(
uri2
,
MakeTag2b
());
auto
se
=
ToString
(
DetachedSong
(
uri2
,
MakeTag2c
()));
EXPECT_TRUE
(
playlist_check_translate_song
(
song2
,
nullptr
,
EXPECT_TRUE
(
playlist_check_translate_song
(
song2
,
{}
,
loader
));
EXPECT_EQ
(
se
,
ToString
(
song2
));
DetachedSong
song3
(
"/music/foo/bar.ogg"
,
MakeTag2b
());
se
=
ToString
(
DetachedSong
(
uri2
,
MakeTag2c
()));
EXPECT_TRUE
(
playlist_check_translate_song
(
song3
,
nullptr
,
EXPECT_TRUE
(
playlist_check_translate_song
(
song3
,
{}
,
loader
));
EXPECT_EQ
(
se
,
ToString
(
song3
));
}
...
...
@@ -281,12 +281,12 @@ TEST_F(TranslateSongTest, Backslash)
/* on Windows, all backslashes are converted to slashes in
relative paths from playlists */
auto
se
=
ToString
(
DetachedSong
(
uri2
,
MakeTag2c
()));
EXPECT_TRUE
(
playlist_check_translate_song
(
song1
,
nullptr
,
EXPECT_TRUE
(
playlist_check_translate_song
(
song1
,
{}
,
loader
));
EXPECT_EQ
(
se
,
ToString
(
song1
));
#else
/* backslash only supported on Windows */
EXPECT_FALSE
(
playlist_check_translate_song
(
song1
,
nullptr
,
EXPECT_FALSE
(
playlist_check_translate_song
(
song1
,
{}
,
loader
));
#endif
}
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