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
5665de5e
Commit
5665de5e
authored
Jun 12, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist_list: add _for_each() macros
parent
d5b9be03
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
18 deletions
+21
-18
playlist_list.c
src/playlist_list.c
+13
-18
playlist_list.h
src/playlist_list.h
+8
-0
No files found.
src/playlist_list.c
View file @
5665de5e
...
...
@@ -40,7 +40,7 @@
#include <string.h>
#include <stdio.h>
static
const
struct
playlist_plugin
*
const
playlist_plugins
[]
=
{
const
struct
playlist_plugin
*
const
playlist_plugins
[]
=
{
&
extm3u_playlist_plugin
,
&
m3u_playlist_plugin
,
&
xspf_playlist_plugin
,
...
...
@@ -62,6 +62,10 @@ static const struct playlist_plugin *const playlist_plugins[] = {
/** which plugins have been initialized successfully? */
static
bool
playlist_plugins_enabled
[
G_N_ELEMENTS
(
playlist_plugins
)];
#define playlist_plugins_for_each_enabled(plugin) \
playlist_plugins_for_each(plugin) \
if (playlist_plugins_enabled[playlist_plugin_iterator - playlist_plugins])
/**
* Find the "playlist" configuration block for the specified plugin.
*
...
...
@@ -109,9 +113,8 @@ playlist_list_global_init(void)
void
playlist_list_global_finish
(
void
)
{
for
(
unsigned
i
=
0
;
playlist_plugins
[
i
]
!=
NULL
;
++
i
)
if
(
playlist_plugins_enabled
[
i
])
playlist_plugin_finish
(
playlist_plugins
[
i
]);
playlist_plugins_for_each_enabled
(
plugin
)
playlist_plugin_finish
(
plugin
);
}
static
struct
playlist_provider
*
...
...
@@ -200,11 +203,8 @@ playlist_list_open_stream_mime2(struct input_stream *is, const char *mime)
assert
(
is
!=
NULL
);
assert
(
mime
!=
NULL
);
for
(
unsigned
i
=
0
;
playlist_plugins
[
i
]
!=
NULL
;
++
i
)
{
const
struct
playlist_plugin
*
plugin
=
playlist_plugins
[
i
];
if
(
playlist_plugins_enabled
[
i
]
&&
plugin
->
open_stream
!=
NULL
&&
playlist_plugins_for_each_enabled
(
plugin
)
{
if
(
plugin
->
open_stream
!=
NULL
&&
plugin
->
mime_types
!=
NULL
&&
string_array_contains
(
plugin
->
mime_types
,
mime
))
{
/* rewind the stream, so each plugin gets a
...
...
@@ -248,11 +248,8 @@ playlist_list_open_stream_suffix(struct input_stream *is, const char *suffix)
assert
(
is
!=
NULL
);
assert
(
suffix
!=
NULL
);
for
(
unsigned
i
=
0
;
playlist_plugins
[
i
]
!=
NULL
;
++
i
)
{
const
struct
playlist_plugin
*
plugin
=
playlist_plugins
[
i
];
if
(
playlist_plugins_enabled
[
i
]
&&
plugin
->
open_stream
!=
NULL
&&
playlist_plugins_for_each_enabled
(
plugin
)
{
if
(
plugin
->
open_stream
!=
NULL
&&
plugin
->
suffixes
!=
NULL
&&
string_array_contains
(
plugin
->
suffixes
,
suffix
))
{
/* rewind the stream, so each plugin gets a
...
...
@@ -306,10 +303,8 @@ playlist_suffix_supported(const char *suffix)
{
assert
(
suffix
!=
NULL
);
for
(
unsigned
i
=
0
;
playlist_plugins
[
i
]
!=
NULL
;
++
i
)
{
const
struct
playlist_plugin
*
plugin
=
playlist_plugins
[
i
];
if
(
playlist_plugins_enabled
[
i
]
&&
plugin
->
suffixes
!=
NULL
&&
playlist_plugins_for_each_enabled
(
plugin
)
{
if
(
plugin
->
suffixes
!=
NULL
&&
string_array_contains
(
plugin
->
suffixes
,
suffix
))
return
true
;
}
...
...
src/playlist_list.h
View file @
5665de5e
...
...
@@ -25,6 +25,14 @@
struct
playlist_provider
;
struct
input_stream
;
extern
const
struct
playlist_plugin
*
const
playlist_plugins
[];
#define playlist_plugins_for_each(plugin) \
for (const struct playlist_plugin *plugin, \
*const*playlist_plugin_iterator = &playlist_plugins[0]; \
(plugin = *playlist_plugin_iterator) != NULL; \
++playlist_plugin_iterator)
/**
* Initializes all playlist plugins.
*/
...
...
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