Add copyright notices to all relevant files. (based on svn log)
[profile/ivi/pulseaudio.git] / src / modules / module-cli.c
1 /* $Id$ */
2
3 /***
4   This file is part of PulseAudio.
5
6   Copyright 2004-2006 Lennart Poettering
7
8   PulseAudio is free software; you can redistribute it and/or modify
9   it under the terms of the GNU Lesser General Public License as published
10   by the Free Software Foundation; either version 2 of the License,
11   or (at your option) any later version.
12
13   PulseAudio is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with PulseAudio; if not, write to the Free Software
20   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21   USA.
22 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <assert.h>
30 #include <unistd.h>
31
32 #include <pulsecore/module.h>
33 #include <pulsecore/iochannel.h>
34 #include <pulsecore/cli.h>
35 #include <pulsecore/sioman.h>
36 #include <pulsecore/log.h>
37 #include <pulsecore/modargs.h>
38
39 #include "module-cli-symdef.h"
40
41 PA_MODULE_AUTHOR("Lennart Poettering")
42 PA_MODULE_DESCRIPTION("Command line interface")
43 PA_MODULE_VERSION(PACKAGE_VERSION)
44 PA_MODULE_USAGE("exit_on_eof=<exit daemon after EOF?>")
45
46 static const char* const valid_modargs[] = {
47     "exit_on_eof",
48     NULL
49 };
50
51 static void eof_and_unload_cb(pa_cli*c, void *userdata) {
52     pa_module *m = userdata;
53
54     assert(c);
55     assert(m);
56
57     pa_module_unload_request(m);
58 }
59
60 static void eof_and_exit_cb(pa_cli*c, void *userdata) {
61     pa_module *m = userdata;
62
63     assert(c);
64     assert(m);
65
66     m->core->mainloop->quit(m->core->mainloop, 0);
67 }
68
69 int pa__init(pa_core *c, pa_module*m) {
70     pa_iochannel *io;
71     pa_modargs *ma;
72     int exit_on_eof = 0;
73
74     assert(c);
75     assert(m);
76
77     if (c->running_as_daemon) {
78         pa_log_info("Running as daemon, refusing to load this module.");
79         return 0;
80     }
81
82     if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
83         pa_log("failed to parse module arguments.");
84         goto fail;
85     }
86
87     if (pa_modargs_get_value_boolean(ma, "exit_on_eof", &exit_on_eof) < 0) {
88         pa_log("exit_on_eof= expects boolean argument.");
89         goto fail;
90     }
91
92     if (pa_stdio_acquire() < 0) {
93         pa_log("STDIN/STDUSE already in use.");
94         goto fail;
95     }
96
97     io = pa_iochannel_new(c->mainloop, STDIN_FILENO, STDOUT_FILENO);
98     assert(io);
99     pa_iochannel_set_noclose(io, 1);
100
101     m->userdata = pa_cli_new(c, io, m);
102     assert(m->userdata);
103
104     pa_cli_set_eof_callback(m->userdata, exit_on_eof ? eof_and_exit_cb : eof_and_unload_cb, m);
105
106     pa_modargs_free(ma);
107
108     return 0;
109
110 fail:
111
112     if (ma)
113         pa_modargs_free(ma);
114
115     return -1;
116 }
117
118 void pa__done(pa_core *c, pa_module*m) {
119     assert(c);
120     assert(m);
121
122     if (c->running_as_daemon == 0) {
123         pa_cli_free(m->userdata);
124         pa_stdio_release();
125     }
126 }