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
005bb597
Commit
005bb597
authored
Jan 29, 2018
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test/run_input: move code from Scan() to input/ScanTags.cxx
parent
88bc3a92
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
91 additions
and
12 deletions
+91
-12
Makefile.am
Makefile.am
+1
-0
ScanTags.cxx
src/input/ScanTags.cxx
+40
-0
ScanTags.hxx
src/input/ScanTags.hxx
+42
-0
run_input.cxx
test/run_input.cxx
+8
-12
No files found.
Makefile.am
View file @
005bb597
...
...
@@ -1328,6 +1328,7 @@ libinput_a_SOURCES = \
src/input/Ptr.hxx
\
src/input/InputPlugin.hxx
\
src/input/RemoteTagScanner.hxx
\
src/input/ScanTags.cxx src/input/ScanTags.hxx
\
src/input/Reader.cxx src/input/Reader.hxx
\
src/input/TextInputStream.cxx src/input/TextInputStream.hxx
\
src/input/ThreadInputStream.cxx src/input/ThreadInputStream.hxx
\
...
...
src/input/ScanTags.cxx
0 → 100644
View file @
005bb597
/*
* Copyright 2003-2017 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include "ScanTags.hxx"
#include "RemoteTagScanner.hxx"
#include "InputPlugin.hxx"
#include "Registry.hxx"
std
::
unique_ptr
<
RemoteTagScanner
>
InputScanTags
(
const
char
*
uri
,
RemoteTagHandler
&
handler
)
{
input_plugins_for_each_enabled
(
plugin
)
{
if
(
plugin
->
scan_tags
==
nullptr
)
continue
;
auto
scanner
=
plugin
->
scan_tags
(
uri
,
handler
);
if
(
scanner
)
return
scanner
;
}
/* unsupported URI */
return
nullptr
;
}
src/input/ScanTags.hxx
0 → 100644
View file @
005bb597
/*
* Copyright 2003-2017 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_INPUT_SCAN_TAGS_HXX
#define MPD_INPUT_SCAN_TAGS_HXX
#include "check.h"
#include <memory>
class
RemoteTagScanner
;
class
RemoteTagHandler
;
/**
* Find an #InputPlugin which supports the given URI and let it create
* a #RemoteTagScanner.
*
* Throws exception on error
*
* @return a #RemoteTagScanner or nullptr if the URI is not supported
* by any (enabled) plugin
*/
std
::
unique_ptr
<
RemoteTagScanner
>
InputScanTags
(
const
char
*
uri
,
RemoteTagHandler
&
handler
);
#endif
test/run_input.cxx
View file @
005bb597
...
...
@@ -26,6 +26,7 @@
#include "input/Registry.hxx"
#include "input/InputPlugin.hxx"
#include "input/RemoteTagScanner.hxx"
#include "input/ScanTags.hxx"
#include "event/Thread.hxx"
#include "thread/Cond.hxx"
#include "Log.hxx"
...
...
@@ -213,20 +214,15 @@ Scan(const char *uri)
{
DumpRemoteTagHandler
handler
;
input_plugins_for_each_enabled
(
plugin
)
{
if
(
plugin
->
scan_tags
==
nullptr
)
continue
;
auto
scanner
=
plugin
->
scan_tags
(
uri
,
handler
);
if
(
scanner
)
{
scanner
->
Start
();
tag_save
(
stdout
,
handler
.
Wait
());
return
EXIT_SUCCESS
;
}
auto
scanner
=
InputScanTags
(
uri
,
handler
);
if
(
!
scanner
)
{
fprintf
(
stderr
,
"Unsupported URI
\n
"
);
return
EXIT_FAILURE
;
}
fprintf
(
stderr
,
"Unsupported URI
\n
"
);
return
EXIT_FAILURE
;
scanner
->
Start
();
tag_save
(
stdout
,
handler
.
Wait
());
return
EXIT_SUCCESS
;
}
int
main
(
int
argc
,
char
**
argv
)
...
...
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