2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
29 #include <pulse/xmalloc.h>
31 #include <pulsecore/core-util.h>
32 #include <pulsecore/ioline.h>
33 #include <pulsecore/module.h>
34 #include <pulsecore/client.h>
35 #include <pulsecore/tokenizer.h>
36 #include <pulsecore/strbuf.h>
37 #include <pulsecore/cli-text.h>
38 #include <pulsecore/cli-command.h>
39 #include <pulsecore/log.h>
40 #include <pulsecore/macro.h>
50 pa_cli_eof_cb_t eof_callback
;
55 pa_bool_t fail
, kill_requested
;
61 static void line_callback(pa_ioline
*line
, const char *s
, void *userdata
);
62 static void client_kill(pa_client
*c
);
64 pa_cli
* pa_cli_new(pa_core
*core
, pa_iochannel
*io
, pa_module
*m
) {
67 pa_client_new_data data
;
72 pa_iochannel_socket_peer_to_string(io
, cname
, sizeof(cname
));
74 pa_client_new_data_init(&data
);
75 data
.driver
= __FILE__
;
77 pa_proplist_sets(data
.proplist
, PA_PROP_APPLICATION_NAME
, cname
);
78 client
= pa_client_new(core
, &data
);
79 pa_client_new_data_done(&data
);
84 c
= pa_xnew(pa_cli
, 1);
87 pa_assert_se(c
->line
= pa_ioline_new(io
));
90 c
->eof_callback
= NULL
;
92 c
->client
->kill
= client_kill
;
93 c
->client
->userdata
= c
;
95 pa_ioline_set_callback(c
->line
, line_callback
, c
);
96 pa_ioline_puts(c
->line
, "Welcome to PulseAudio! Use \"help\" for usage information.\n"PROMPT
);
98 c
->fail
= c
->kill_requested
= FALSE
;
106 void pa_cli_free(pa_cli
*c
) {
109 pa_ioline_close(c
->line
);
110 pa_ioline_unref(c
->line
);
111 pa_client_free(c
->client
);
112 pa_xfree(c
->last_line
);
116 static void client_kill(pa_client
*client
) {
120 pa_assert_se(c
= client
->userdata
);
122 pa_log_debug("CLI client killed.");
125 c
->kill_requested
= TRUE
;
126 else if (c
->eof_callback
)
127 c
->eof_callback(c
, c
->userdata
);
130 static void line_callback(pa_ioline
*line
, const char *s
, void *userdata
) {
132 pa_cli
*c
= userdata
;
139 pa_log_debug("CLI got EOF from user.");
142 c
->eof_callback(c
, c
->userdata
);
147 /* Magic command, like they had in AT Hayes Modems! Those were the good days! */
148 if (pa_streq(s
, "/"))
151 pa_xfree(c
->last_line
);
152 c
->last_line
= pa_xstrdup(s
);
155 pa_assert_se(buf
= pa_strbuf_new());
157 pa_cli_command_execute_line(c
->core
, s
, buf
, &c
->fail
);
159 pa_ioline_puts(line
, p
= pa_strbuf_tostring_free(buf
));
162 if (c
->kill_requested
) {
164 c
->eof_callback(c
, c
->userdata
);
166 pa_ioline_puts(line
, PROMPT
);
169 void pa_cli_set_eof_callback(pa_cli
*c
, pa_cli_eof_cb_t cb
, void *userdata
) {
172 c
->eof_callback
= cb
;
173 c
->userdata
= userdata
;
176 pa_module
*pa_cli_get_module(pa_cli
*c
) {
179 return c
->client
->module
;