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
e1ec65bd
Commit
e1ec65bd
authored
Dec 15, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UriUtil: add function uri_get_scheme()
Replaces g_uri_parse_scheme().
parent
65b8e52d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
7 deletions
+20
-7
PlaylistRegistry.cxx
src/PlaylistRegistry.cxx
+3
-7
UriUtil.cxx
src/util/UriUtil.cxx
+10
-0
UriUtil.hxx
src/util/UriUtil.hxx
+7
-0
No files found.
src/PlaylistRegistry.cxx
View file @
e1ec65bd
...
...
@@ -40,8 +40,6 @@
#include "system/FatalError.hxx"
#include "Log.hxx"
#include <glib.h>
#include <assert.h>
#include <string.h>
...
...
@@ -130,13 +128,12 @@ static SongEnumerator *
playlist_list_open_uri_scheme
(
const
char
*
uri
,
Mutex
&
mutex
,
Cond
&
cond
,
bool
*
tried
)
{
char
*
scheme
;
SongEnumerator
*
playlist
=
nullptr
;
assert
(
uri
!=
nullptr
);
scheme
=
g_uri_parse
_scheme
(
uri
);
if
(
scheme
==
nullptr
)
const
auto
scheme
=
uri_get
_scheme
(
uri
);
if
(
scheme
.
empty
()
)
return
nullptr
;
for
(
unsigned
i
=
0
;
playlist_plugins
[
i
]
!=
nullptr
;
++
i
)
{
...
...
@@ -146,7 +143,7 @@ playlist_list_open_uri_scheme(const char *uri, Mutex &mutex, Cond &cond,
if
(
playlist_plugins_enabled
[
i
]
&&
plugin
->
open_uri
!=
nullptr
&&
plugin
->
schemes
!=
nullptr
&&
string_array_contains
(
plugin
->
schemes
,
scheme
))
{
string_array_contains
(
plugin
->
schemes
,
scheme
.
c_str
()
))
{
playlist
=
playlist_plugin_open_uri
(
plugin
,
uri
,
mutex
,
cond
);
if
(
playlist
!=
nullptr
)
...
...
@@ -156,7 +153,6 @@ playlist_list_open_uri_scheme(const char *uri, Mutex &mutex, Cond &cond,
}
}
g_free
(
scheme
);
return
playlist
;
}
...
...
src/util/UriUtil.cxx
View file @
e1ec65bd
...
...
@@ -27,6 +27,16 @@ bool uri_has_scheme(const char *uri)
return
strstr
(
uri
,
"://"
)
!=
nullptr
;
}
std
::
string
uri_get_scheme
(
const
char
*
uri
)
{
const
char
*
end
=
strstr
(
uri
,
"://"
);
if
(
end
==
nullptr
)
end
=
uri
;
return
std
::
string
(
uri
,
end
);
}
/* suffixes should be ascii only characters */
const
char
*
uri_get_suffix
(
const
char
*
uri
)
...
...
src/util/UriUtil.hxx
View file @
e1ec65bd
...
...
@@ -31,6 +31,13 @@
gcc_pure
bool
uri_has_scheme
(
const
char
*
uri
);
/**
* Returns the scheme name of the specified URI, or an empty string.
*/
gcc_pure
std
::
string
uri_get_scheme
(
const
char
*
uri
);
gcc_pure
const
char
*
uri_get_suffix
(
const
char
*
uri
);
...
...
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