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
dc415b76
Commit
dc415b76
authored
Apr 17, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/pipe: convert to C++
parent
f1034eb6
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
63 additions
and
32 deletions
+63
-32
Makefile.am
Makefile.am
+1
-1
OutputList.cxx
src/OutputList.cxx
+1
-1
PipeOutputPlugin.cxx
src/output/PipeOutputPlugin.cxx
+58
-27
PipeOutputPlugin.hxx
src/output/PipeOutputPlugin.hxx
+3
-3
No files found.
Makefile.am
View file @
dc415b76
...
...
@@ -834,7 +834,7 @@ endif
if
ENABLE_PIPE_OUTPUT
liboutput_plugins_a_SOURCES
+=
\
src/output/
pipe_output_plugin.c src/output/pipe_output_plugin.h
src/output/
PipeOutputPlugin.cxx src/output/PipeOutputPlugin.hxx
endif
if
HAVE_JACK
...
...
src/OutputList.cxx
View file @
dc415b76
...
...
@@ -31,7 +31,7 @@
#include "output/openal_output_plugin.h"
#include "output/OssOutputPlugin.hxx"
#include "output/OSXOutputPlugin.hxx"
#include "output/
pipe_output_plugin.h
"
#include "output/
PipeOutputPlugin.hxx
"
#include "output/PulseOutputPlugin.hxx"
#include "output/RecorderOutputPlugin.hxx"
#include "output/RoarOutputPlugin.hxx"
...
...
src/output/
pipe_output_plugin.c
→
src/output/
PipeOutputPlugin.cxx
View file @
dc415b76
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -18,17 +18,28 @@
*/
#include "config.h"
#include "
pipe_output_plugin.h
"
#include "
PipeOutputPlugin.hxx
"
#include "output_api.h"
#include <stdio.h>
#include <errno.h>
struct
pipe_o
utput
{
struct
PipeO
utput
{
struct
audio_output
base
;
char
*
cmd
;
FILE
*
fh
;
bool
Initialize
(
const
config_param
*
param
,
GError
**
error_r
)
{
return
ao_base_init
(
&
base
,
&
pipe_output_plugin
,
param
,
error_r
);
}
void
Deinitialize
()
{
ao_base_finish
(
&
base
);
}
bool
Configure
(
const
config_param
*
param
,
GError
**
error_r
);
};
/**
...
...
@@ -40,22 +51,33 @@ pipe_output_quark(void)
return
g_quark_from_static_string
(
"pipe_output"
);
}
inline
bool
PipeOutput
::
Configure
(
const
config_param
*
param
,
GError
**
error_r
)
{
cmd
=
config_dup_block_string
(
param
,
"command"
,
nullptr
);
if
(
cmd
==
nullptr
)
{
g_set_error
(
error_r
,
pipe_output_quark
(),
0
,
"No
\"
command
\"
parameter specified"
);
return
false
;
}
return
true
;
}
static
struct
audio_output
*
pipe_output_init
(
const
struct
config_param
*
param
,
GError
**
error
)
pipe_output_init
(
const
config_param
*
param
,
GError
**
error_r
)
{
struct
pipe_output
*
pd
=
g_new
(
struct
pipe_output
,
1
);
PipeOutput
*
pd
=
new
PipeOutput
(
);
if
(
!
ao_base_init
(
&
pd
->
base
,
&
pipe_output_plugin
,
param
,
erro
r
))
{
g_free
(
pd
)
;
return
NULL
;
if
(
!
pd
->
Initialize
(
param
,
error_
r
))
{
delete
pd
;
return
nullptr
;
}
pd
->
cmd
=
config_dup_block_string
(
param
,
"command"
,
NULL
);
if
(
pd
->
cmd
==
NULL
)
{
g_set_error
(
error
,
pipe_output_quark
(),
0
,
"No
\"
command
\"
parameter specified"
);
return
NULL
;
if
(
!
pd
->
Configure
(
param
,
error_r
))
{
pd
->
Deinitialize
();
delete
pd
;
return
nullptr
;
}
return
&
pd
->
base
;
...
...
@@ -64,11 +86,11 @@ pipe_output_init(const struct config_param *param,
static
void
pipe_output_finish
(
struct
audio_output
*
ao
)
{
struct
pipe_output
*
pd
=
(
struct
pipe_o
utput
*
)
ao
;
PipeOutput
*
pd
=
(
PipeO
utput
*
)
ao
;
g_free
(
pd
->
cmd
);
ao_base_finish
(
&
pd
->
base
);
g_free
(
pd
)
;
pd
->
Deinitialize
(
);
delete
pd
;
}
static
bool
...
...
@@ -76,10 +98,10 @@ pipe_output_open(struct audio_output *ao,
G_GNUC_UNUSED
struct
audio_format
*
audio_format
,
G_GNUC_UNUSED
GError
**
error
)
{
struct
pipe_output
*
pd
=
(
struct
pipe_o
utput
*
)
ao
;
PipeOutput
*
pd
=
(
PipeO
utput
*
)
ao
;
pd
->
fh
=
popen
(
pd
->
cmd
,
"w"
);
if
(
pd
->
fh
==
NULL
)
{
if
(
pd
->
fh
==
nullptr
)
{
g_set_error
(
error
,
pipe_output_quark
(),
errno
,
"Error opening pipe
\"
%s
\"
: %s"
,
pd
->
cmd
,
g_strerror
(
errno
));
...
...
@@ -92,7 +114,7 @@ pipe_output_open(struct audio_output *ao,
static
void
pipe_output_close
(
struct
audio_output
*
ao
)
{
struct
pipe_output
*
pd
=
(
struct
pipe_o
utput
*
)
ao
;
PipeOutput
*
pd
=
(
PipeO
utput
*
)
ao
;
pclose
(
pd
->
fh
);
}
...
...
@@ -100,7 +122,7 @@ pipe_output_close(struct audio_output *ao)
static
size_t
pipe_output_play
(
struct
audio_output
*
ao
,
const
void
*
chunk
,
size_t
size
,
GError
**
error
)
{
struct
pipe_output
*
pd
=
(
struct
pipe_o
utput
*
)
ao
;
PipeOutput
*
pd
=
(
PipeO
utput
*
)
ao
;
size_t
ret
;
ret
=
fwrite
(
chunk
,
1
,
size
,
pd
->
fh
);
...
...
@@ -112,10 +134,19 @@ pipe_output_play(struct audio_output *ao, const void *chunk, size_t size, GError
}
const
struct
audio_output_plugin
pipe_output_plugin
=
{
.
name
=
"pipe"
,
.
init
=
pipe_output_init
,
.
finish
=
pipe_output_finish
,
.
open
=
pipe_output_open
,
.
close
=
pipe_output_close
,
.
play
=
pipe_output_play
,
"pipe"
,
nullptr
,
pipe_output_init
,
pipe_output_finish
,
nullptr
,
nullptr
,
pipe_output_open
,
pipe_output_close
,
nullptr
,
nullptr
,
pipe_output_play
,
nullptr
,
nullptr
,
nullptr
,
nullptr
,
};
src/output/
pipe_output_plugin.h
→
src/output/
PipeOutputPlugin.hxx
View file @
dc415b76
/*
* Copyright (C) 2003-201
1
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_PIPE_OUTPUT_PLUGIN_H
#define MPD_PIPE_OUTPUT_PLUGIN_H
#ifndef MPD_PIPE_OUTPUT_PLUGIN_H
XX
#define MPD_PIPE_OUTPUT_PLUGIN_H
XX
extern
const
struct
audio_output_plugin
pipe_output_plugin
;
...
...
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