options: support --leak-report (double dash form)
[mplayer.git] / input / input.c
blobe1feb8e8e44df11f8d5a6f26ef3d20b515042c17
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "config.h"
21 #include <stdlib.h>
22 #include <string.h>
23 #include <stdio.h>
24 #include <stdbool.h>
25 #include <unistd.h>
26 #include <errno.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <sys/time.h>
30 #include <fcntl.h>
31 #include <ctype.h>
32 #include <assert.h>
34 #include "input.h"
35 #include "mp_fifo.h"
36 #include "keycodes.h"
37 #include "osdep/timer.h"
38 #include "libavutil/avstring.h"
39 #include "mp_msg.h"
40 #include "m_config.h"
41 #include "m_option.h"
42 #include "path.h"
43 #include "talloc.h"
44 #include "options.h"
45 #include "bstr.h"
47 #include "joystick.h"
49 #ifdef CONFIG_LIRC
50 #include "lirc.h"
51 #endif
53 #ifdef CONFIG_LIRCC
54 #include <lirc/lircc.h>
55 #endif
57 #include "ar.h"
59 #define MP_MAX_KEY_DOWN 32
61 struct cmd_bind {
62 int input[MP_MAX_KEY_DOWN + 1];
63 char *cmd;
66 struct key_name {
67 int key;
68 char *name;
71 /// This array defines all known commands.
72 /// The first field is an id used to recognize the command without too many strcmp.
73 /// The second is obviously the command name.
74 /// The third is the minimum number of arguments this command needs.
75 /// Then comes the definition of each argument, terminated with an arg of type -1.
76 /// A command can take a maximum of MP_CMD_MAX_ARGS-1 arguments (-1 because of
77 /// the last one) which is actually 9.
79 /// For the args, the first field is the type (actually int, float or string), the second
80 /// is the default value wich is used for optional arguments
82 static const mp_cmd_t mp_cmds[] = {
83 #ifdef CONFIG_RADIO
84 { MP_CMD_RADIO_STEP_CHANNEL, "radio_step_channel", 1, { { MP_CMD_ARG_INT ,{0}}, {-1,{0}} }},
85 { MP_CMD_RADIO_SET_CHANNEL, "radio_set_channel", 1, { { MP_CMD_ARG_STRING, {0}}, {-1,{0}} }},
86 { MP_CMD_RADIO_SET_FREQ, "radio_set_freq", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
87 { MP_CMD_RADIO_STEP_FREQ, "radio_step_freq", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
88 #endif
89 { MP_CMD_SEEK, "seek", 1, { {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
90 { MP_CMD_EDL_MARK, "edl_mark", 0, { {-1,{0}} } },
91 { MP_CMD_AUDIO_DELAY, "audio_delay", 1, { {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
92 { MP_CMD_SPEED_INCR, "speed_incr", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
93 { MP_CMD_SPEED_MULT, "speed_mult", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
94 { MP_CMD_SPEED_SET, "speed_set", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
95 { MP_CMD_QUIT, "quit", 0, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
96 { MP_CMD_STOP, "stop", 0, { {-1,{0}} } },
97 { MP_CMD_PAUSE, "pause", 0, { {-1,{0}} } },
98 { MP_CMD_FRAME_STEP, "frame_step", 0, { {-1,{0}} } },
99 { MP_CMD_PLAY_TREE_STEP, "pt_step",1, { { MP_CMD_ARG_INT ,{0}}, { MP_CMD_ARG_INT ,{0}}, {-1,{0}} } },
100 { MP_CMD_PLAY_TREE_UP_STEP, "pt_up_step",1, { { MP_CMD_ARG_INT,{0} }, { MP_CMD_ARG_INT ,{0}}, {-1,{0}} } },
101 { MP_CMD_PLAY_ALT_SRC_STEP, "alt_src_step",1, { { MP_CMD_ARG_INT,{0} }, {-1,{0}} } },
102 { MP_CMD_LOOP, "loop", 1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
103 { MP_CMD_SUB_DELAY, "sub_delay",1, { {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
104 { MP_CMD_SUB_STEP, "sub_step",1, { { MP_CMD_ARG_INT,{0} }, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
105 { MP_CMD_OSD, "osd",0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
106 { MP_CMD_OSD_SHOW_TEXT, "osd_show_text", 1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_INT,{-1}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
107 { MP_CMD_OSD_SHOW_PROPERTY_TEXT, "osd_show_property_text",1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_INT,{-1}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
108 { MP_CMD_OSD_SHOW_PROGRESSION, "osd_show_progression", 0, { {-1,{0}} } },
109 { MP_CMD_VOLUME, "volume", 1, { { MP_CMD_ARG_FLOAT,{0} }, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
110 { MP_CMD_BALANCE, "balance", 1, { { MP_CMD_ARG_FLOAT,{0} }, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
111 { MP_CMD_MIXER_USEMASTER, "use_master", 0, { {-1,{0}} } },
112 { MP_CMD_MUTE, "mute", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
113 { MP_CMD_CONTRAST, "contrast",1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
114 { MP_CMD_GAMMA, "gamma", 1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
115 { MP_CMD_BRIGHTNESS, "brightness",1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
116 { MP_CMD_HUE, "hue",1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
117 { MP_CMD_SATURATION, "saturation",1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
118 { MP_CMD_FRAMEDROPPING, "frame_drop",0, { { MP_CMD_ARG_INT,{-1} }, {-1,{0}} } },
119 { MP_CMD_SUB_POS, "sub_pos", 1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
120 { MP_CMD_SUB_ALIGNMENT, "sub_alignment",0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
121 { MP_CMD_SUB_VISIBILITY, "sub_visibility", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
122 { MP_CMD_SUB_LOAD, "sub_load", 1, { {MP_CMD_ARG_STRING,{0}}, {-1,{0}} } },
123 { MP_CMD_SUB_REMOVE, "sub_remove", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
124 { MP_CMD_SUB_SELECT, "vobsub_lang", 0, { { MP_CMD_ARG_INT,{-2} }, {-1,{0}} } }, // for compatibility
125 { MP_CMD_SUB_SELECT, "sub_select", 0, { { MP_CMD_ARG_INT,{-2} }, {-1,{0}} } },
126 { MP_CMD_SUB_SOURCE, "sub_source", 0, { { MP_CMD_ARG_INT,{-2} }, {-1,{0}} } },
127 { MP_CMD_SUB_VOB, "sub_vob", 0, { { MP_CMD_ARG_INT,{-2} }, {-1,{0}} } },
128 { MP_CMD_SUB_DEMUX, "sub_demux", 0, { { MP_CMD_ARG_INT,{-2} }, {-1,{0}} } },
129 { MP_CMD_SUB_FILE, "sub_file", 0, { { MP_CMD_ARG_INT,{-2} }, {-1,{0}} } },
130 { MP_CMD_SUB_LOG, "sub_log", 0, { {-1,{0}} } },
131 { MP_CMD_SUB_SCALE, "sub_scale",1, { {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
132 #ifdef CONFIG_ASS
133 { MP_CMD_ASS_USE_MARGINS, "ass_use_margins", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
134 #endif
135 { MP_CMD_GET_PERCENT_POS, "get_percent_pos", 0, { {-1,{0}} } },
136 { MP_CMD_GET_TIME_POS, "get_time_pos", 0, { {-1,{0}} } },
137 { MP_CMD_GET_TIME_LENGTH, "get_time_length", 0, { {-1,{0}} } },
138 { MP_CMD_GET_FILENAME, "get_file_name", 0, { {-1,{0}} } },
139 { MP_CMD_GET_VIDEO_CODEC, "get_video_codec", 0, { {-1,{0}} } },
140 { MP_CMD_GET_VIDEO_BITRATE, "get_video_bitrate", 0, { {-1,{0}} } },
141 { MP_CMD_GET_VIDEO_RESOLUTION, "get_video_resolution", 0, { {-1,{0}} } },
142 { MP_CMD_GET_AUDIO_CODEC, "get_audio_codec", 0, { {-1,{0}} } },
143 { MP_CMD_GET_AUDIO_BITRATE, "get_audio_bitrate", 0, { {-1,{0}} } },
144 { MP_CMD_GET_AUDIO_SAMPLES, "get_audio_samples", 0, { {-1,{0}} } },
145 { MP_CMD_GET_META_TITLE, "get_meta_title", 0, { {-1,{0}} } },
146 { MP_CMD_GET_META_ARTIST, "get_meta_artist", 0, { {-1,{0}} } },
147 { MP_CMD_GET_META_ALBUM, "get_meta_album", 0, { {-1,{0}} } },
148 { MP_CMD_GET_META_YEAR, "get_meta_year", 0, { {-1,{0}} } },
149 { MP_CMD_GET_META_COMMENT, "get_meta_comment", 0, { {-1,{0}} } },
150 { MP_CMD_GET_META_TRACK, "get_meta_track", 0, { {-1,{0}} } },
151 { MP_CMD_GET_META_GENRE, "get_meta_genre", 0, { {-1,{0}} } },
152 { MP_CMD_SWITCH_AUDIO, "switch_audio", 0, { { MP_CMD_ARG_INT,{-1} }, {-1,{0}} } },
153 { MP_CMD_SWITCH_ANGLE, "switch_angle", 0, { { MP_CMD_ARG_INT,{-1} }, {-1,{0}} } },
154 { MP_CMD_SWITCH_TITLE, "switch_title", 0, { { MP_CMD_ARG_INT,{-1} }, {-1,{0}} } },
155 #ifdef CONFIG_TV
156 { MP_CMD_TV_START_SCAN, "tv_start_scan", 0, { {-1,{0}} }},
157 { MP_CMD_TV_STEP_CHANNEL, "tv_step_channel", 1, { { MP_CMD_ARG_INT ,{0}}, {-1,{0}} }},
158 { MP_CMD_TV_STEP_NORM, "tv_step_norm",0, { {-1,{0}} } },
159 { MP_CMD_TV_STEP_CHANNEL_LIST, "tv_step_chanlist", 0, { {-1,{0}} } },
160 { MP_CMD_TV_SET_CHANNEL, "tv_set_channel", 1, { { MP_CMD_ARG_STRING, {0}}, {-1,{0}} }},
161 { MP_CMD_TV_LAST_CHANNEL, "tv_last_channel", 0, { {-1,{0}} } },
162 { MP_CMD_TV_SET_FREQ, "tv_set_freq", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
163 { MP_CMD_TV_STEP_FREQ, "tv_step_freq", 1, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
164 { MP_CMD_TV_SET_NORM, "tv_set_norm", 1, { {MP_CMD_ARG_STRING,{0}}, {-1,{0}} } },
165 { MP_CMD_TV_SET_BRIGHTNESS, "tv_set_brightness", 1, { { MP_CMD_ARG_INT ,{0}}, { MP_CMD_ARG_INT,{1} }, {-1,{0}} }},
166 { MP_CMD_TV_SET_CONTRAST, "tv_set_contrast", 1, { { MP_CMD_ARG_INT ,{0}}, { MP_CMD_ARG_INT,{1} }, {-1,{0}} }},
167 { MP_CMD_TV_SET_HUE, "tv_set_hue", 1, { { MP_CMD_ARG_INT ,{0}}, { MP_CMD_ARG_INT,{1} }, {-1,{0}} }},
168 { MP_CMD_TV_SET_SATURATION, "tv_set_saturation", 1, { { MP_CMD_ARG_INT ,{0}}, { MP_CMD_ARG_INT,{1} }, {-1,{0}} }},
169 #endif
170 { MP_CMD_SUB_FORCED_ONLY, "forced_subs_only", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
171 #ifdef CONFIG_DVBIN
172 { MP_CMD_DVB_SET_CHANNEL, "dvb_set_channel", 2, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}}}},
173 #endif
174 { MP_CMD_SWITCH_RATIO, "switch_ratio", 0, { {MP_CMD_ARG_FLOAT,{0}}, {-1,{0}} } },
175 { MP_CMD_VO_FULLSCREEN, "vo_fullscreen", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
176 { MP_CMD_VO_ONTOP, "vo_ontop", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
177 { MP_CMD_FILE_FILTER, "file_filter", 1, { { MP_CMD_ARG_INT, {0}}, {-1,{0}}}},
178 { MP_CMD_VO_ROOTWIN, "vo_rootwin", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
179 { MP_CMD_VO_BORDER, "vo_border", 0, { {MP_CMD_ARG_INT,{-1}}, {-1,{0}} } },
180 { MP_CMD_SCREENSHOT, "screenshot", 0, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
181 { MP_CMD_PANSCAN, "panscan",1, { {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
182 { MP_CMD_SWITCH_VSYNC, "switch_vsync", 0, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
183 { MP_CMD_LOADFILE, "loadfile", 1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
184 { MP_CMD_LOADLIST, "loadlist", 1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
185 { MP_CMD_RUN, "run", 1, { {MP_CMD_ARG_STRING,{0}}, {-1,{0}} } },
186 { MP_CMD_CAPTURING, "capturing", 0, { {-1,{0}} } },
187 { MP_CMD_VF_CHANGE_RECTANGLE, "change_rectangle", 2, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}}}},
188 { MP_CMD_TV_TELETEXT_ADD_DEC, "teletext_add_dec", 1, { {MP_CMD_ARG_STRING,{0}}, {-1,{0}} } },
189 { MP_CMD_TV_TELETEXT_GO_LINK, "teletext_go_link", 1, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
191 #ifdef CONFIG_DVDNAV
192 { MP_CMD_DVDNAV, "dvdnav", 1, { {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
193 #endif
195 #ifdef CONFIG_MENU
196 { MP_CMD_MENU, "menu",1, { {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
197 { MP_CMD_SET_MENU, "set_menu",1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
198 { MP_CMD_CHELP, "help", 0, { {-1,{0}} } },
199 { MP_CMD_CEXIT, "exit", 0, { {-1,{0}} } },
200 { MP_CMD_CHIDE, "hide", 0, { {MP_CMD_ARG_INT,{3000}}, {-1,{0}} } },
201 #endif
203 { MP_CMD_GET_VO_FULLSCREEN, "get_vo_fullscreen", 0, { {-1,{0}} } },
204 { MP_CMD_GET_SUB_VISIBILITY, "get_sub_visibility", 0, { {-1,{0}} } },
205 { MP_CMD_KEYDOWN_EVENTS, "key_down_event", 1, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
206 { MP_CMD_SET_PROPERTY, "set_property", 2, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
207 { MP_CMD_SET_PROPERTY_OSD, "set_property_osd", 2, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
208 { MP_CMD_GET_PROPERTY, "get_property", 1, { {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
209 { MP_CMD_STEP_PROPERTY, "step_property", 1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
210 { MP_CMD_STEP_PROPERTY_OSD, "step_property_osd", 1, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_FLOAT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
212 { MP_CMD_SEEK_CHAPTER, "seek_chapter", 1, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
213 { MP_CMD_SET_MOUSE_POS, "set_mouse_pos", 2, { {MP_CMD_ARG_INT,{0}}, {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
215 { MP_CMD_AF_SWITCH, "af_switch", 1, { {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
216 { MP_CMD_AF_ADD, "af_add", 1, { {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
217 { MP_CMD_AF_DEL, "af_del", 1, { {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
218 { MP_CMD_AF_CLR, "af_clr", 0, { {-1,{0}} } },
219 { MP_CMD_AF_CMDLINE, "af_cmdline", 2, { {MP_CMD_ARG_STRING, {0}}, {MP_CMD_ARG_STRING, {0}}, {-1,{0}} } },
221 { 0, NULL, 0, {} }
224 /// The names of the keys as used in input.conf
225 /// If you add some new keys, you also need to add them here
227 static const struct key_name key_names[] = {
228 { ' ', "SPACE" },
229 { '#', "SHARP" },
230 { KEY_ENTER, "ENTER" },
231 { KEY_TAB, "TAB" },
232 { KEY_BACKSPACE, "BS" },
233 { KEY_DELETE, "DEL" },
234 { KEY_INSERT, "INS" },
235 { KEY_HOME, "HOME" },
236 { KEY_END, "END" },
237 { KEY_PAGE_UP, "PGUP" },
238 { KEY_PAGE_DOWN, "PGDWN" },
239 { KEY_ESC, "ESC" },
240 { KEY_RIGHT, "RIGHT" },
241 { KEY_LEFT, "LEFT" },
242 { KEY_DOWN, "DOWN" },
243 { KEY_UP, "UP" },
244 { KEY_F+1, "F1" },
245 { KEY_F+2, "F2" },
246 { KEY_F+3, "F3" },
247 { KEY_F+4, "F4" },
248 { KEY_F+5, "F5" },
249 { KEY_F+6, "F6" },
250 { KEY_F+7, "F7" },
251 { KEY_F+8, "F8" },
252 { KEY_F+9, "F9" },
253 { KEY_F+10, "F10" },
254 { KEY_F+11, "F11" },
255 { KEY_F+12, "F12" },
256 { KEY_KP0, "KP0" },
257 { KEY_KP1, "KP1" },
258 { KEY_KP2, "KP2" },
259 { KEY_KP3, "KP3" },
260 { KEY_KP4, "KP4" },
261 { KEY_KP5, "KP5" },
262 { KEY_KP6, "KP6" },
263 { KEY_KP7, "KP7" },
264 { KEY_KP8, "KP8" },
265 { KEY_KP9, "KP9" },
266 { KEY_KPDEL, "KP_DEL" },
267 { KEY_KPDEC, "KP_DEC" },
268 { KEY_KPINS, "KP_INS" },
269 { KEY_KPENTER, "KP_ENTER" },
270 { MOUSE_BTN0, "MOUSE_BTN0" },
271 { MOUSE_BTN1, "MOUSE_BTN1" },
272 { MOUSE_BTN2, "MOUSE_BTN2" },
273 { MOUSE_BTN3, "MOUSE_BTN3" },
274 { MOUSE_BTN4, "MOUSE_BTN4" },
275 { MOUSE_BTN5, "MOUSE_BTN5" },
276 { MOUSE_BTN6, "MOUSE_BTN6" },
277 { MOUSE_BTN7, "MOUSE_BTN7" },
278 { MOUSE_BTN8, "MOUSE_BTN8" },
279 { MOUSE_BTN9, "MOUSE_BTN9" },
280 { MOUSE_BTN10, "MOUSE_BTN10" },
281 { MOUSE_BTN11, "MOUSE_BTN11" },
282 { MOUSE_BTN12, "MOUSE_BTN12" },
283 { MOUSE_BTN13, "MOUSE_BTN13" },
284 { MOUSE_BTN14, "MOUSE_BTN14" },
285 { MOUSE_BTN15, "MOUSE_BTN15" },
286 { MOUSE_BTN16, "MOUSE_BTN16" },
287 { MOUSE_BTN17, "MOUSE_BTN17" },
288 { MOUSE_BTN18, "MOUSE_BTN18" },
289 { MOUSE_BTN19, "MOUSE_BTN19" },
290 { MOUSE_BTN0_DBL, "MOUSE_BTN0_DBL" },
291 { MOUSE_BTN1_DBL, "MOUSE_BTN1_DBL" },
292 { MOUSE_BTN2_DBL, "MOUSE_BTN2_DBL" },
293 { MOUSE_BTN3_DBL, "MOUSE_BTN3_DBL" },
294 { MOUSE_BTN4_DBL, "MOUSE_BTN4_DBL" },
295 { MOUSE_BTN5_DBL, "MOUSE_BTN5_DBL" },
296 { MOUSE_BTN6_DBL, "MOUSE_BTN6_DBL" },
297 { MOUSE_BTN7_DBL, "MOUSE_BTN7_DBL" },
298 { MOUSE_BTN8_DBL, "MOUSE_BTN8_DBL" },
299 { MOUSE_BTN9_DBL, "MOUSE_BTN9_DBL" },
300 { MOUSE_BTN10_DBL, "MOUSE_BTN10_DBL" },
301 { MOUSE_BTN11_DBL, "MOUSE_BTN11_DBL" },
302 { MOUSE_BTN12_DBL, "MOUSE_BTN12_DBL" },
303 { MOUSE_BTN13_DBL, "MOUSE_BTN13_DBL" },
304 { MOUSE_BTN14_DBL, "MOUSE_BTN14_DBL" },
305 { MOUSE_BTN15_DBL, "MOUSE_BTN15_DBL" },
306 { MOUSE_BTN16_DBL, "MOUSE_BTN16_DBL" },
307 { MOUSE_BTN17_DBL, "MOUSE_BTN17_DBL" },
308 { MOUSE_BTN18_DBL, "MOUSE_BTN18_DBL" },
309 { MOUSE_BTN19_DBL, "MOUSE_BTN19_DBL" },
310 { JOY_AXIS1_MINUS, "JOY_UP" },
311 { JOY_AXIS1_PLUS, "JOY_DOWN" },
312 { JOY_AXIS0_MINUS, "JOY_LEFT" },
313 { JOY_AXIS0_PLUS, "JOY_RIGHT" },
315 { JOY_AXIS0_PLUS, "JOY_AXIS0_PLUS" },
316 { JOY_AXIS0_MINUS, "JOY_AXIS0_MINUS" },
317 { JOY_AXIS1_PLUS, "JOY_AXIS1_PLUS" },
318 { JOY_AXIS1_MINUS, "JOY_AXIS1_MINUS" },
319 { JOY_AXIS2_PLUS, "JOY_AXIS2_PLUS" },
320 { JOY_AXIS2_MINUS, "JOY_AXIS2_MINUS" },
321 { JOY_AXIS3_PLUS, "JOY_AXIS3_PLUS" },
322 { JOY_AXIS3_MINUS, "JOY_AXIS3_MINUS" },
323 { JOY_AXIS4_PLUS, "JOY_AXIS4_PLUS" },
324 { JOY_AXIS4_MINUS, "JOY_AXIS4_MINUS" },
325 { JOY_AXIS5_PLUS, "JOY_AXIS5_PLUS" },
326 { JOY_AXIS5_MINUS, "JOY_AXIS5_MINUS" },
327 { JOY_AXIS6_PLUS, "JOY_AXIS6_PLUS" },
328 { JOY_AXIS6_MINUS, "JOY_AXIS6_MINUS" },
329 { JOY_AXIS7_PLUS, "JOY_AXIS7_PLUS" },
330 { JOY_AXIS7_MINUS, "JOY_AXIS7_MINUS" },
331 { JOY_AXIS8_PLUS, "JOY_AXIS8_PLUS" },
332 { JOY_AXIS8_MINUS, "JOY_AXIS8_MINUS" },
333 { JOY_AXIS9_PLUS, "JOY_AXIS9_PLUS" },
334 { JOY_AXIS9_MINUS, "JOY_AXIS9_MINUS" },
336 { JOY_BTN0, "JOY_BTN0" },
337 { JOY_BTN1, "JOY_BTN1" },
338 { JOY_BTN2, "JOY_BTN2" },
339 { JOY_BTN3, "JOY_BTN3" },
340 { JOY_BTN4, "JOY_BTN4" },
341 { JOY_BTN5, "JOY_BTN5" },
342 { JOY_BTN6, "JOY_BTN6" },
343 { JOY_BTN7, "JOY_BTN7" },
344 { JOY_BTN8, "JOY_BTN8" },
345 { JOY_BTN9, "JOY_BTN9" },
347 { AR_PLAY, "AR_PLAY" },
348 { AR_PLAY_HOLD, "AR_PLAY_HOLD" },
349 { AR_NEXT, "AR_NEXT" },
350 { AR_NEXT_HOLD, "AR_NEXT_HOLD" },
351 { AR_PREV, "AR_PREV" },
352 { AR_PREV_HOLD, "AR_PREV_HOLD" },
353 { AR_MENU, "AR_MENU" },
354 { AR_MENU_HOLD, "AR_MENU_HOLD" },
355 { AR_VUP, "AR_VUP" },
356 { AR_VDOWN, "AR_VDOWN" },
358 { KEY_POWER, "POWER" },
359 { KEY_MENU, "MENU" },
360 { KEY_PLAY, "PLAY" },
361 { KEY_PAUSE, "PAUSE" },
362 { KEY_PLAYPAUSE, "PLAYPAUSE" },
363 { KEY_STOP, "STOP" },
364 { KEY_FORWARD, "FORWARD" },
365 { KEY_REWIND, "REWIND" },
366 { KEY_NEXT, "NEXT" },
367 { KEY_PREV, "PREV" },
368 { KEY_VOLUME_UP, "VOLUME_UP" },
369 { KEY_VOLUME_DOWN, "VOLUME_DOWN" },
370 { KEY_MUTE, "MUTE" },
372 // These are kept for backward compatibility
373 { KEY_PAUSE, "XF86_PAUSE" },
374 { KEY_STOP, "XF86_STOP" },
375 { KEY_PREV, "XF86_PREV" },
376 { KEY_NEXT, "XF86_NEXT" },
378 { KEY_CLOSE_WIN, "CLOSE_WIN" },
380 { 0, NULL }
383 struct key_name modifier_names[] = {
384 { KEY_MODIFIER_SHIFT, "Shift" },
385 { KEY_MODIFIER_CTRL, "Ctrl" },
386 { KEY_MODIFIER_ALT, "Alt" },
387 { KEY_MODIFIER_META, "Meta" },
388 { 0 }
391 #define KEY_MODIFIER_MASK (KEY_MODIFIER_SHIFT | KEY_MODIFIER_CTRL | KEY_MODIFIER_ALT | KEY_MODIFIER_META)
393 // This is the default binding. The content of input.conf overrides these.
394 // The first arg is a null terminated array of key codes.
395 // The second is the command
397 static const struct cmd_bind def_cmd_binds[] = {
399 { { MOUSE_BTN0_DBL, 0 }, "vo_fullscreen" },
400 { { MOUSE_BTN2, 0 }, "pause" },
401 { { MOUSE_BTN3, 0 }, "seek 10" },
402 { { MOUSE_BTN4, 0 }, "seek -10" },
403 { { MOUSE_BTN5, 0 }, "volume 1" },
404 { { MOUSE_BTN6, 0 }, "volume -1" },
406 #ifdef CONFIG_DVDNAV
407 { { KEY_KP8, 0 }, "dvdnav up" }, // up
408 { { KEY_KP2, 0 }, "dvdnav down" }, // down
409 { { KEY_KP4, 0 }, "dvdnav left" }, // left
410 { { KEY_KP6, 0 }, "dvdnav right" }, // right
411 { { KEY_KP5, 0 }, "dvdnav menu" }, // menu
412 { { KEY_KPENTER, 0 }, "dvdnav select" }, // select
413 { { MOUSE_BTN0, 0 }, "dvdnav mouse" }, //select
414 { { KEY_KP7, 0 }, "dvdnav prev" }, // previous menu
415 #endif
417 { { KEY_RIGHT, 0 }, "seek 10" },
418 { { KEY_LEFT, 0 }, "seek -10" },
419 { { KEY_MODIFIER_SHIFT + KEY_RIGHT, 0 }, "seek 1 0 1" },
420 { { KEY_MODIFIER_SHIFT + KEY_LEFT, 0 }, "seek -1 0 1" },
421 { { KEY_UP, 0 }, "seek 60" },
422 { { KEY_DOWN, 0 }, "seek -60" },
423 { { KEY_MODIFIER_SHIFT + KEY_UP, 0 }, "seek 5 0 1" },
424 { { KEY_MODIFIER_SHIFT + KEY_DOWN, 0 }, "seek -5 0 1" },
425 { { KEY_PAGE_UP, 0 }, "seek 600" },
426 { { KEY_PAGE_DOWN, 0 }, "seek -600" },
427 { { '+', 0 }, "audio_delay 0.100" },
428 { { '-', 0 }, "audio_delay -0.100" },
429 { { '[', 0 }, "speed_mult 0.9091" },
430 { { ']', 0 }, "speed_mult 1.1" },
431 { { '{', 0 }, "speed_mult 0.5" },
432 { { '}', 0 }, "speed_mult 2.0" },
433 { { KEY_BACKSPACE, 0 }, "speed_set 1.0" },
434 { { 'q', 0 }, "quit" },
435 { { KEY_ESC, 0 }, "quit" },
436 { { 'p', 0 }, "pause" },
437 { { ' ', 0 }, "pause" },
438 { { '.', 0 }, "frame_step" },
439 { { KEY_HOME, 0 }, "pt_up_step 1" },
440 { { KEY_END, 0 }, "pt_up_step -1" },
441 { { '>', 0 }, "pt_step 1" },
442 { { KEY_ENTER, 0 }, "pt_step 1 1" },
443 { { '<', 0 }, "pt_step -1" },
444 { { KEY_INS, 0 }, "alt_src_step 1" },
445 { { KEY_DEL, 0 }, "alt_src_step -1" },
446 { { 'o', 0 }, "osd" },
447 { { 'I', 0 }, "osd_show_property_text \"${filename}\"" },
448 { { 'P', 0 }, "osd_show_progression" },
449 { { 'z', 0 }, "sub_delay -0.1" },
450 { { 'x', 0 }, "sub_delay +0.1" },
451 { { 'g', 0 }, "sub_step -1" },
452 { { 'y', 0 }, "sub_step +1" },
453 { { '9', 0 }, "volume -1" },
454 { { '/', 0 }, "volume -1" },
455 { { '0', 0 }, "volume 1" },
456 { { '*', 0 }, "volume 1" },
457 { { '(', 0 }, "balance -0.1" },
458 { { ')', 0 }, "balance 0.1" },
459 { { 'm', 0 }, "mute" },
460 { { '1', 0 }, "contrast -1" },
461 { { '2', 0 }, "contrast 1" },
462 { { '3', 0 }, "brightness -1" },
463 { { '4', 0 }, "brightness 1" },
464 { { '5', 0 }, "hue -1" },
465 { { '6', 0 }, "hue 1" },
466 { { '7', 0 }, "saturation -1" },
467 { { '8', 0 }, "saturation 1" },
468 { { 'd', 0 }, "frame_drop" },
469 { { 'D', 0 }, "step_property_osd deinterlace" },
470 { { 'c', 0 }, "step_property_osd yuv_colorspace" },
471 { { 'r', 0 }, "sub_pos -1" },
472 { { 't', 0 }, "sub_pos +1" },
473 { { 'a', 0 }, "sub_alignment" },
474 { { 'v', 0 }, "sub_visibility" },
475 { { 'j', 0 }, "sub_select" },
476 { { 'J', 0 }, "sub_select -3" },
477 { { 'F', 0 }, "forced_subs_only" },
478 { { '#', 0 }, "switch_audio" },
479 { { '_', 0 }, "step_property switch_video" },
480 { { KEY_TAB, 0 }, "step_property switch_program" },
481 { { 'i', 0 }, "edl_mark" },
482 #ifdef CONFIG_TV
483 { { 'h', 0 }, "tv_step_channel 1" },
484 { { 'k', 0 }, "tv_step_channel -1" },
485 { { 'n', 0 }, "tv_step_norm" },
486 { { 'u', 0 }, "tv_step_chanlist" },
487 #endif
488 { { 'X', 0 }, "step_property teletext_mode 1" },
489 { { 'W', 0 }, "step_property teletext_page 1" },
490 { { 'Q', 0 }, "step_property teletext_page -1" },
491 #ifdef CONFIG_JOYSTICK
492 { { JOY_AXIS0_PLUS, 0 }, "seek 10" },
493 { { JOY_AXIS0_MINUS, 0 }, "seek -10" },
494 { { JOY_AXIS1_MINUS, 0 }, "seek 60" },
495 { { JOY_AXIS1_PLUS, 0 }, "seek -60" },
496 { { JOY_BTN0, 0 }, "pause" },
497 { { JOY_BTN1, 0 }, "osd" },
498 { { JOY_BTN2, 0 }, "volume 1"},
499 { { JOY_BTN3, 0 }, "volume -1"},
500 #endif
501 #ifdef CONFIG_APPLE_REMOTE
502 { { AR_PLAY, 0}, "pause" },
503 { { AR_PLAY_HOLD, 0}, "quit" },
504 { { AR_NEXT, 0 }, "seek 30" },
505 { { AR_NEXT_HOLD, 0 }, "seek 120" },
506 { { AR_PREV, 0 }, "seek -10" },
507 { { AR_PREV_HOLD, 0 }, "seek -120" },
508 { { AR_MENU, 0 }, "osd" },
509 { { AR_MENU_HOLD, 0 }, "mute" },
510 { { AR_VUP, 0 }, "volume 1"},
511 { { AR_VDOWN, 0 }, "volume -1"},
512 #endif
513 { { 'T', 0 }, "vo_ontop" },
514 { { 'f', 0 }, "vo_fullscreen" },
515 { { 'C', 0 }, "step_property_osd capturing" },
516 { { 's', 0 }, "screenshot 0" },
517 { { 'S', 0 }, "screenshot 1" },
518 { { 'w', 0 }, "panscan -0.1" },
519 { { 'e', 0 }, "panscan +0.1" },
521 { { KEY_POWER, 0 }, "quit" },
522 { { KEY_MENU, 0 }, "osd" },
523 { { KEY_PLAY, 0 }, "pause" },
524 { { KEY_PAUSE, 0 }, "pause" },
525 { { KEY_PLAYPAUSE, 0 }, "pause" },
526 { { KEY_STOP, 0 }, "quit" },
527 { { KEY_FORWARD, 0 }, "seek 60" },
528 { { KEY_REWIND, 0 }, "seek -60" },
529 { { KEY_NEXT, 0 }, "pt_step 1" },
530 { { KEY_PREV, 0 }, "pt_step -1" },
531 { { KEY_VOLUME_UP, 0 }, "volume 1" },
532 { { KEY_VOLUME_DOWN, 0 }, "volume -1" },
533 { { KEY_MUTE, 0 }, "mute" },
535 { { KEY_CLOSE_WIN, 0 }, "quit" },
537 { { '!', 0 }, "seek_chapter -1" },
538 { { '@', 0 }, "seek_chapter 1" },
539 { { 'A', 0 }, "switch_angle 1" },
540 { { 'U', 0 }, "stop" },
542 { { 0 }, NULL }
546 #ifndef MP_MAX_KEY_FD
547 #define MP_MAX_KEY_FD 10
548 #endif
550 #ifndef MP_MAX_CMD_FD
551 #define MP_MAX_CMD_FD 10
552 #endif
554 struct input_fd {
555 int fd;
556 union {
557 int (*key)(void *ctx, int fd);
558 int (*cmd)(int fd, char *dest, int size);
559 } read_func;
560 int (*close_func)(int fd);
561 void *ctx;
562 unsigned eof : 1;
563 unsigned drop : 1;
564 unsigned dead : 1;
565 unsigned got_cmd : 1;
566 unsigned no_select : 1;
567 // These fields are for the cmd fds.
568 char *buffer;
569 int pos, size;
572 struct cmd_filter {
573 mp_input_cmd_filter filter;
574 void *ctx;
575 struct cmd_filter *next;
578 struct cmd_bind_section {
579 struct cmd_bind *cmd_binds;
580 char *section;
581 struct cmd_bind_section *next;
584 struct cmd_queue {
585 struct mp_cmd *first;
586 struct mp_cmd *last;
587 int num_cmds;
588 int num_abort_cmds;
591 struct input_ctx {
592 // Autorepeat stuff
593 short ar_state;
594 mp_cmd_t *ar_cmd;
595 unsigned int last_ar;
596 // Autorepeat config
597 unsigned int ar_delay;
598 unsigned int ar_rate;
599 // Maximum number of queued commands from keypresses (limit to avoid
600 // repeated slow commands piling up)
601 int key_fifo_size;
603 // these are the keys currently down
604 int key_down[MP_MAX_KEY_DOWN];
605 unsigned int num_key_down;
606 unsigned int last_key_down;
608 bool default_bindings;
609 // List of command binding sections
610 struct cmd_bind_section *cmd_bind_sections;
611 // Name of currently used command section
612 char *section;
613 // The command binds of current section
614 struct cmd_bind *cmd_binds;
615 struct cmd_bind *cmd_binds_default;
617 // Used to track whether we managed to read something while checking
618 // events sources. If yes, the sources may have more queued.
619 bool got_new_events;
621 struct input_fd key_fds[MP_MAX_KEY_FD];
622 unsigned int num_key_fd;
624 struct input_fd cmd_fds[MP_MAX_CMD_FD];
625 unsigned int num_cmd_fd;
627 struct cmd_queue key_cmd_queue;
628 struct cmd_queue control_cmd_queue;
632 static struct cmd_filter *cmd_filters = NULL;
634 // Callback to allow the menu filter to grab the incoming keys
635 int (*mp_input_key_cb)(int code) = NULL;
637 int async_quit_request;
639 static int print_key_list(m_option_t *cfg);
640 static int print_cmd_list(m_option_t *cfg);
642 // Our command line options
643 static const m_option_t input_conf[] = {
644 OPT_STRING("conf", input.config_file, CONF_GLOBAL),
645 OPT_INT("ar-delay", input.ar_delay, CONF_GLOBAL),
646 OPT_INT("ar-rate", input.ar_rate, CONF_GLOBAL),
647 { "keylist", print_key_list, CONF_TYPE_FUNC, CONF_GLOBAL, 0, 0, NULL },
648 { "cmdlist", print_cmd_list, CONF_TYPE_FUNC, CONF_GLOBAL, 0, 0, NULL },
649 OPT_STRING("js-dev", input.js_dev, CONF_GLOBAL),
650 OPT_STRING("ar-dev", input.ar_dev, CONF_GLOBAL),
651 OPT_STRING("file", input.in_file, CONF_GLOBAL),
652 OPT_MAKE_FLAGS("default-bindings", input.default_bindings, CONF_GLOBAL),
653 { NULL, NULL, 0, 0, 0, 0, NULL}
656 static const m_option_t mp_input_opts[] = {
657 { "input", (void *)&input_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
658 OPT_MAKE_FLAGS("joystick", input.use_joystick, CONF_GLOBAL),
659 OPT_MAKE_FLAGS("lirc", input.use_lirc, CONF_GLOBAL),
660 OPT_MAKE_FLAGS("lircc", input.use_lircc, CONF_GLOBAL),
661 OPT_MAKE_FLAGS("ar", input.use_ar, CONF_GLOBAL),
662 { NULL, NULL, 0, 0, 0, 0, NULL}
665 static int default_cmd_func(int fd, char *buf, int l);
667 static char *get_key_name(int key, char *ret)
669 for (int i = 0; modifier_names[i].name; i++) {
670 if (modifier_names[i].key & key) {
671 ret = talloc_asprintf_append_buffer(ret, "%s+",
672 modifier_names[i].name);
673 key -= modifier_names[i].key;
676 for (int i = 0; key_names[i].name != NULL; i++) {
677 if (key_names[i].key == key)
678 return talloc_asprintf_append_buffer(ret, "%s", key_names[i].name);
681 if (isascii(key))
682 return talloc_asprintf_append_buffer(ret, "%c", key);
684 // Print the hex key code
685 return talloc_asprintf_append_buffer(ret, "%#-8x", key);
688 static char *get_key_combo_name(int *keys, int max)
690 char *ret = talloc_strdup(NULL, "");
691 while (1) {
692 ret = get_key_name(*keys, ret);
693 if (--max && *++keys)
694 talloc_asprintf_append_buffer(ret, "-");
695 else
696 break;
698 return ret;
701 static bool is_abort_cmd(int cmd_id)
703 switch (cmd_id) {
704 case MP_CMD_QUIT:
705 case MP_CMD_PLAY_TREE_STEP:
706 case MP_CMD_PLAY_TREE_UP_STEP:
707 case MP_CMD_PLAY_ALT_SRC_STEP:
708 return true;
710 return false;
713 static void queue_pop(struct cmd_queue *queue)
715 assert(queue->num_cmds > 0);
716 struct mp_cmd *cmd = queue->first;
717 queue->first = cmd->queue_next;
718 queue->num_cmds--;
719 queue->num_abort_cmds -= is_abort_cmd(cmd->id);
722 static void queue_add(struct cmd_queue *queue, struct mp_cmd *cmd,
723 bool at_head)
725 if (!queue->num_cmds) {
726 queue->first = cmd;
727 queue->last = cmd;
728 } else if (at_head) {
729 queue->first->queue_prev = cmd;
730 cmd->queue_next = queue->first;
731 queue->first = cmd;
732 } else {
733 queue->last->queue_next = cmd;
734 cmd->queue_prev = queue->last;
735 queue->last = cmd;
737 queue->num_cmds++;
738 queue->num_abort_cmds += is_abort_cmd(cmd->id);
741 int mp_input_add_cmd_fd(struct input_ctx *ictx, int fd, int select,
742 int read_func(int fd, char *dest, int size),
743 int close_func(int fd))
745 if (ictx->num_cmd_fd == MP_MAX_CMD_FD) {
746 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Too many command file descriptors, "
747 "cannot register file descriptor %d.\n", fd);
748 return 0;
750 if (select && fd < 0) {
751 mp_msg(MSGT_INPUT, MSGL_ERR,
752 "Invalid fd %d in mp_input_add_cmd_fd", fd);
753 return 0;
756 ictx->cmd_fds[ictx->num_cmd_fd] = (struct input_fd){
757 .fd = fd,
758 .read_func.cmd = read_func ? read_func : default_cmd_func,
759 .close_func = close_func,
760 .no_select = !select
762 ictx->num_cmd_fd++;
764 return 1;
767 void mp_input_rm_cmd_fd(struct input_ctx *ictx, int fd)
769 struct input_fd *cmd_fds = ictx->cmd_fds;
770 unsigned int i;
772 for (i = 0; i < ictx->num_cmd_fd; i++) {
773 if (cmd_fds[i].fd == fd)
774 break;
776 if (i == ictx->num_cmd_fd)
777 return;
778 if (cmd_fds[i].close_func)
779 cmd_fds[i].close_func(cmd_fds[i].fd);
780 talloc_free(cmd_fds[i].buffer);
782 if (i + 1 < ictx->num_cmd_fd)
783 memmove(&cmd_fds[i], &cmd_fds[i + 1],
784 (ictx->num_cmd_fd - i - 1) * sizeof(struct input_fd));
785 ictx->num_cmd_fd--;
788 void mp_input_rm_key_fd(struct input_ctx *ictx, int fd)
790 struct input_fd *key_fds = ictx->key_fds;
791 unsigned int i;
793 for (i = 0; i < ictx->num_key_fd; i++) {
794 if (key_fds[i].fd == fd)
795 break;
797 if (i == ictx->num_key_fd)
798 return;
799 if (key_fds[i].close_func)
800 key_fds[i].close_func(key_fds[i].fd);
802 if (i + 1 < ictx->num_key_fd)
803 memmove(&key_fds[i], &key_fds[i + 1],
804 (ictx->num_key_fd - i - 1) * sizeof(struct input_fd));
805 ictx->num_key_fd--;
808 int mp_input_add_key_fd(struct input_ctx *ictx, int fd, int select,
809 int read_func(void *ctx, int fd),
810 int close_func(int fd), void *ctx)
812 if (ictx->num_key_fd == MP_MAX_KEY_FD) {
813 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Too many key file descriptors, "
814 "cannot register file descriptor %d.\n", fd);
815 return 0;
817 if (select && fd < 0) {
818 mp_msg(MSGT_INPUT, MSGL_ERR,
819 "Invalid fd %d in mp_input_add_key_fd", fd);
820 return 0;
823 ictx->key_fds[ictx->num_key_fd] = (struct input_fd){
824 .fd = fd,
825 .read_func.key = read_func,
826 .close_func = close_func,
827 .no_select = !select,
828 .ctx = ctx,
830 ictx->num_key_fd++;
832 return 1;
835 int mp_input_parse_and_queue_cmds(struct input_ctx *ictx, const char *str)
837 int cmd_num = 0;
839 while (*str == '\n' || *str == '\r' || *str == ' ')
840 ++str;
841 while (*str) {
842 mp_cmd_t *cmd;
843 size_t len = strcspn(str, "\r\n");
844 char *cmdbuf = talloc_size(NULL, len + 1);
845 av_strlcpy(cmdbuf, str, len + 1);
846 cmd = mp_input_parse_cmd(cmdbuf);
847 if (cmd) {
848 mp_input_queue_cmd(ictx, cmd);
849 ++cmd_num;
851 str += len;
852 while (*str == '\n' || *str == '\r' || *str == ' ')
853 ++str;
854 talloc_free(cmdbuf);
856 return cmd_num;
859 mp_cmd_t *mp_input_parse_cmd(char *str)
861 int i, l;
862 int pausing = 0;
863 char *ptr;
864 const mp_cmd_t *cmd_def;
866 // Ignore heading spaces.
867 while (str[0] == ' ' || str[0] == '\t')
868 ++str;
870 if (strncmp(str, "pausing ", 8) == 0) {
871 pausing = 1;
872 str = &str[8];
873 } else if (strncmp(str, "pausing_keep ", 13) == 0) {
874 pausing = 2;
875 str = &str[13];
876 } else if (strncmp(str, "pausing_toggle ", 15) == 0) {
877 pausing = 3;
878 str = &str[15];
879 } else if (strncmp(str, "pausing_keep_force ", 19) == 0) {
880 pausing = 4;
881 str = &str[19];
884 ptr = str + strcspn(str, "\t ");
885 if (*ptr != 0)
886 l = ptr - str;
887 else
888 l = strlen(str);
890 if (l == 0)
891 return NULL;
893 for (i = 0; mp_cmds[i].name != NULL; i++) {
894 if (strncasecmp(mp_cmds[i].name, str, l) == 0)
895 break;
898 if (mp_cmds[i].name == NULL)
899 return NULL;
901 cmd_def = &mp_cmds[i];
903 mp_cmd_t *cmd = talloc_ptrtype(NULL, cmd);
904 *cmd = (mp_cmd_t){
905 .id = cmd_def->id,
906 .name = talloc_strdup(cmd, cmd_def->name),
907 .pausing = pausing,
910 ptr = str;
912 for (i = 0; ptr && i < MP_CMD_MAX_ARGS; i++) {
913 while (ptr[0] != ' ' && ptr[0] != '\t' && ptr[0] != '\0')
914 ptr++;
915 if (ptr[0] == '\0')
916 break;
917 while (ptr[0] == ' ' || ptr[0] == '\t')
918 ptr++;
919 if (ptr[0] == '\0' || ptr[0] == '#')
920 break;
921 cmd->args[i].type = cmd_def->args[i].type;
922 switch (cmd_def->args[i].type) {
923 case MP_CMD_ARG_INT:
924 errno = 0;
925 cmd->args[i].v.i = atoi(ptr);
926 if (errno != 0) {
927 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Command %s: argument %d "
928 "isn't an integer.\n", cmd_def->name, i + 1);
929 goto error;
931 break;
932 case MP_CMD_ARG_FLOAT:
933 errno = 0;
934 cmd->args[i].v.f = atof(ptr);
935 if (errno != 0) {
936 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Command %s: argument %d "
937 "isn't a float.\n", cmd_def->name, i + 1);
938 goto error;
940 break;
941 case MP_CMD_ARG_STRING: {
942 int term = ' ';
943 if (*ptr == '\'' || *ptr == '"')
944 term = *ptr++;
945 char *argptr = talloc_size(cmd, strlen(ptr) + 1);
946 cmd->args[i].v.s = argptr;
947 while (1) {
948 if (*ptr == 0) {
949 if (term == ' ')
950 break;
951 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Command %s: argument %d is "
952 "unterminated.\n", cmd_def->name, i + 1);
953 goto error;
955 if (*ptr == term)
956 break;
957 if (*ptr == '\\')
958 ptr++;
959 if (*ptr != 0)
960 *argptr++ = *ptr++;
962 *argptr = 0;
963 break;
965 case -1:
966 ptr = NULL;
967 break;
968 default:
969 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Unknown argument %d\n", i);
972 cmd->nargs = i;
974 if (cmd_def->nargs > cmd->nargs) {
975 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Command %s requires at least %d "
976 "arguments, we found only %d so far.\n", cmd_def->name,
977 cmd_def->nargs, cmd->nargs);
978 goto error;
981 for (; i < MP_CMD_MAX_ARGS && cmd_def->args[i].type != -1; i++) {
982 memcpy(&cmd->args[i], &cmd_def->args[i], sizeof(struct mp_cmd_arg));
983 if (cmd_def->args[i].type == MP_CMD_ARG_STRING
984 && cmd_def->args[i].v.s != NULL)
985 cmd->args[i].v.s = talloc_strdup(cmd, cmd_def->args[i].v.s);
988 if (i < MP_CMD_MAX_ARGS)
989 cmd->args[i].type = -1;
991 return cmd;
993 error:
994 mp_cmd_free(cmd);
995 return NULL;
998 #define MP_CMD_MAX_SIZE 4096
1000 static int read_cmd(struct input_fd *mp_fd, char **ret)
1002 char *end;
1003 *ret = NULL;
1005 // Allocate the buffer if it doesn't exist
1006 if (!mp_fd->buffer) {
1007 mp_fd->buffer = talloc_size(NULL, MP_CMD_MAX_SIZE);
1008 mp_fd->pos = 0;
1009 mp_fd->size = MP_CMD_MAX_SIZE;
1012 // Get some data if needed/possible
1013 while (!mp_fd->got_cmd && !mp_fd->eof && (mp_fd->size - mp_fd->pos > 1)) {
1014 int r = mp_fd->read_func.cmd(mp_fd->fd, mp_fd->buffer + mp_fd->pos,
1015 mp_fd->size - 1 - mp_fd->pos);
1016 // Error ?
1017 if (r < 0) {
1018 switch (r) {
1019 case MP_INPUT_ERROR:
1020 case MP_INPUT_DEAD:
1021 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Error while reading "
1022 "command file descriptor %d: %s\n",
1023 mp_fd->fd, strerror(errno));
1024 case MP_INPUT_NOTHING:
1025 return r;
1026 case MP_INPUT_RETRY:
1027 continue;
1029 // EOF ?
1030 } else if (r == 0) {
1031 mp_fd->eof = 1;
1032 break;
1034 mp_fd->pos += r;
1035 break;
1038 mp_fd->got_cmd = 0;
1040 while (1) {
1041 int l = 0;
1042 // Find the cmd end
1043 mp_fd->buffer[mp_fd->pos] = '\0';
1044 end = strchr(mp_fd->buffer, '\r');
1045 if (end)
1046 *end = '\n';
1047 end = strchr(mp_fd->buffer, '\n');
1048 // No cmd end ?
1049 if (!end) {
1050 // If buffer is full we must drop all until the next \n
1051 if (mp_fd->size - mp_fd->pos <= 1) {
1052 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Command buffer of file "
1053 "descriptor %d is full: dropping content.\n",
1054 mp_fd->fd);
1055 mp_fd->pos = 0;
1056 mp_fd->drop = 1;
1058 break;
1060 // We already have a cmd : set the got_cmd flag
1061 else if ((*ret)) {
1062 mp_fd->got_cmd = 1;
1063 break;
1066 l = end - mp_fd->buffer;
1068 // Not dropping : put the cmd in ret
1069 if (!mp_fd->drop)
1070 *ret = talloc_strndup(NULL, mp_fd->buffer, l);
1071 else
1072 mp_fd->drop = 0;
1073 mp_fd->pos -= l + 1;
1074 memmove(mp_fd->buffer, end + 1, mp_fd->pos);
1077 if (*ret)
1078 return 1;
1079 else
1080 return MP_INPUT_NOTHING;
1083 static int default_cmd_func(int fd, char *buf, int l)
1085 while (1) {
1086 int r = read(fd, buf, l);
1087 // Error ?
1088 if (r < 0) {
1089 if (errno == EINTR)
1090 continue;
1091 else if (errno == EAGAIN)
1092 return MP_INPUT_NOTHING;
1093 return MP_INPUT_ERROR;
1094 // EOF ?
1096 return r;
1101 void mp_input_add_cmd_filter(mp_input_cmd_filter func, void *ctx)
1103 struct cmd_filter *filter = talloc_ptrtype(NULL, filter);
1105 filter->filter = func;
1106 filter->ctx = ctx;
1107 filter->next = cmd_filters;
1108 cmd_filters = filter;
1112 static char *find_bind_for_key(const struct cmd_bind *binds, int n, int *keys)
1114 int j;
1116 if (n <= 0)
1117 return NULL;
1118 for (j = 0; binds[j].cmd != NULL; j++) {
1119 int found = 1, s;
1120 for (s = 0; s < n && binds[j].input[s] != 0; s++) {
1121 if (binds[j].input[s] != keys[s]) {
1122 found = 0;
1123 break;
1126 if (found && binds[j].input[s] == 0 && s == n)
1127 break;
1129 return binds[j].cmd;
1132 static struct cmd_bind_section *get_bind_section(struct input_ctx *ictx,
1133 char *section)
1135 struct cmd_bind_section *bind_section = ictx->cmd_bind_sections;
1137 if (section == NULL)
1138 section = "default";
1139 while (bind_section) {
1140 if (strcmp(section, bind_section->section) == 0)
1141 return bind_section;
1142 if (bind_section->next == NULL)
1143 break;
1144 bind_section = bind_section->next;
1146 if (bind_section) {
1147 bind_section->next = talloc_ptrtype(ictx, bind_section->next);
1148 bind_section = bind_section->next;
1149 } else {
1150 ictx->cmd_bind_sections = talloc_ptrtype(ictx, ictx->cmd_bind_sections);
1151 bind_section = ictx->cmd_bind_sections;
1153 bind_section->cmd_binds = NULL;
1154 bind_section->section = talloc_strdup(bind_section, section);
1155 bind_section->next = NULL;
1156 return bind_section;
1159 static mp_cmd_t *get_cmd_from_keys(struct input_ctx *ictx, int n, int *keys)
1161 char *cmd = NULL;
1162 mp_cmd_t *ret;
1164 if (ictx->cmd_binds)
1165 cmd = find_bind_for_key(ictx->cmd_binds, n, keys);
1166 if (ictx->cmd_binds_default && cmd == NULL)
1167 cmd = find_bind_for_key(ictx->cmd_binds_default, n, keys);
1168 if (ictx->default_bindings && cmd == NULL)
1169 cmd = find_bind_for_key(def_cmd_binds, n, keys);
1171 if (cmd == NULL) {
1172 char *key_buf = get_key_combo_name(keys, n);
1173 mp_tmsg(MSGT_INPUT, MSGL_WARN,
1174 "No bind found for key '%s'.\n", key_buf);
1175 talloc_free(key_buf);
1176 return NULL;
1178 if (strcmp(cmd, "ignore") == 0)
1179 return NULL;
1180 ret = mp_input_parse_cmd(cmd);
1181 if (!ret) {
1182 char *key_buf = get_key_combo_name(keys, n);
1183 mp_tmsg(MSGT_INPUT, MSGL_ERR,
1184 "Invalid command for bound key '%s': '%s'\n", key_buf, cmd);
1185 talloc_free(key_buf);
1187 return ret;
1191 static mp_cmd_t *interpret_key(struct input_ctx *ictx, int code)
1193 unsigned int j;
1194 mp_cmd_t *ret;
1196 /* On normal keyboards shift changes the character code of non-special
1197 * keys, so don't count the modifier separately for those. In other words
1198 * we want to have "a" and "A" instead of "a" and "Shift+A"; but a separate
1199 * shift modifier is still kept for special keys like arrow keys.
1201 int unmod = code & ~KEY_MODIFIER_MASK;
1202 if (unmod < 256 && unmod != KEY_ENTER && unmod != KEY_TAB)
1203 code &= ~KEY_MODIFIER_SHIFT;
1205 if (mp_input_key_cb) {
1206 if (code & MP_KEY_DOWN)
1207 return NULL;
1208 code &= ~(MP_KEY_DOWN | MP_NO_REPEAT_KEY);
1209 if (mp_input_key_cb(code))
1210 return NULL;
1213 if (code & MP_KEY_DOWN) {
1214 if (ictx->num_key_down > MP_MAX_KEY_DOWN) {
1215 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Too many key down events "
1216 "at the same time\n");
1217 return NULL;
1219 code &= ~MP_KEY_DOWN;
1220 // Check if we don't already have this key as pushed
1221 for (j = 0; j < ictx->num_key_down; j++) {
1222 if (ictx->key_down[j] == code)
1223 break;
1225 if (j != ictx->num_key_down)
1226 return NULL;
1227 ictx->key_down[ictx->num_key_down] = code;
1228 ictx->num_key_down++;
1229 ictx->last_key_down = GetTimer();
1230 ictx->ar_state = 0;
1231 return NULL;
1233 // button released or press of key with no separate down/up events
1234 for (j = 0; j < ictx->num_key_down; j++) {
1235 if (ictx->key_down[j] == code)
1236 break;
1238 bool doubleclick = code >= MOUSE_BTN0_DBL && code < MOUSE_BTN_DBL_END;
1239 if (doubleclick) {
1240 int btn = code - MOUSE_BTN0_DBL + MOUSE_BTN0;
1241 if (!ictx->num_key_down
1242 || ictx->key_down[ictx->num_key_down - 1] != btn)
1243 return NULL;
1244 j = ictx->num_key_down - 1;
1245 ictx->key_down[j] = code;
1247 if (j == ictx->num_key_down) { // was not already down; add temporarily
1248 if (ictx->num_key_down > MP_MAX_KEY_DOWN) {
1249 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Too many key down events "
1250 "at the same time\n");
1251 return NULL;
1253 ictx->key_down[ictx->num_key_down] = code;
1254 ictx->num_key_down++;
1255 ictx->last_key_down = 1;
1257 // Interpret only maximal point of multibutton event
1258 ret = ictx->last_key_down ?
1259 get_cmd_from_keys(ictx, ictx->num_key_down, ictx->key_down)
1260 : NULL;
1261 if (doubleclick) {
1262 ictx->key_down[j] = code - MOUSE_BTN0_DBL + MOUSE_BTN0;
1263 return ret;
1265 // Remove the key
1266 if (j + 1 < ictx->num_key_down)
1267 memmove(&ictx->key_down[j], &ictx->key_down[j + 1],
1268 (ictx->num_key_down - (j + 1)) * sizeof(int));
1269 ictx->num_key_down--;
1270 ictx->last_key_down = 0;
1271 ictx->ar_state = -1;
1272 mp_cmd_free(ictx->ar_cmd);
1273 ictx->ar_cmd = NULL;
1274 return ret;
1277 static mp_cmd_t *check_autorepeat(struct input_ctx *ictx)
1279 // No input : autorepeat ?
1280 if (ictx->ar_rate > 0 && ictx->ar_state >= 0 && ictx->num_key_down > 0
1281 && !(ictx->key_down[ictx->num_key_down - 1] & MP_NO_REPEAT_KEY)) {
1282 unsigned int t = GetTimer();
1283 // First time : wait delay
1284 if (ictx->ar_state == 0
1285 && (t - ictx->last_key_down) >= ictx->ar_delay * 1000) {
1286 ictx->ar_cmd = get_cmd_from_keys(ictx, ictx->num_key_down,
1287 ictx->key_down);
1288 if (!ictx->ar_cmd) {
1289 ictx->ar_state = -1;
1290 return NULL;
1292 ictx->ar_state = 1;
1293 ictx->last_ar = t;
1294 return mp_cmd_clone(ictx->ar_cmd);
1295 // Then send rate / sec event
1296 } else if (ictx->ar_state == 1
1297 && (t - ictx->last_ar) >= 1000000 / ictx->ar_rate) {
1298 ictx->last_ar = t;
1299 return mp_cmd_clone(ictx->ar_cmd);
1302 return NULL;
1305 void mp_input_feed_key(struct input_ctx *ictx, int code)
1307 ictx->got_new_events = true;
1308 if (code == MP_INPUT_RELEASE_ALL) {
1309 memset(ictx->key_down, 0, sizeof(ictx->key_down));
1310 ictx->num_key_down = 0;
1311 ictx->last_key_down = 0;
1312 return;
1314 struct mp_cmd *cmd = interpret_key(ictx, code);
1315 if (!cmd)
1316 return;
1317 struct cmd_queue *queue = &ictx->key_cmd_queue;
1318 if (queue->num_cmds >= ictx->key_fifo_size &&
1319 (!is_abort_cmd(cmd->id) || queue->num_abort_cmds))
1320 return;
1321 queue_add(queue, cmd, false);
1324 static void read_cmd_fd(struct input_ctx *ictx, struct input_fd *cmd_fd)
1326 int r;
1327 char *text;
1328 while ((r = read_cmd(cmd_fd, &text)) >= 0) {
1329 ictx->got_new_events = true;
1330 struct mp_cmd *cmd = mp_input_parse_cmd(text);
1331 talloc_free(text);
1332 if (cmd)
1333 queue_add(&ictx->control_cmd_queue, cmd, false);
1334 if (!cmd_fd->got_cmd)
1335 return;
1337 if (r == MP_INPUT_ERROR)
1338 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Error on command file descriptor %d\n",
1339 cmd_fd->fd);
1340 else if (r == MP_INPUT_DEAD)
1341 cmd_fd->dead = true;
1344 static void read_key_fd(struct input_ctx *ictx, struct input_fd *key_fd)
1346 int code = key_fd->read_func.key(key_fd->ctx, key_fd->fd);
1347 if (code >= 0 || code == MP_INPUT_RELEASE_ALL) {
1348 mp_input_feed_key(ictx, code);
1349 return;
1352 if (code == MP_INPUT_ERROR)
1353 mp_tmsg(MSGT_INPUT, MSGL_ERR,
1354 "Error on key input file descriptor %d\n", key_fd->fd);
1355 else if (code == MP_INPUT_DEAD) {
1356 mp_tmsg(MSGT_INPUT, MSGL_ERR,
1357 "Dead key input on file descriptor %d\n", key_fd->fd);
1358 key_fd->dead = true;
1363 * \param time time to wait at most for an event in milliseconds
1365 static void read_events(struct input_ctx *ictx, int time)
1367 ictx->got_new_events = false;
1368 struct input_fd *key_fds = ictx->key_fds;
1369 struct input_fd *cmd_fds = ictx->cmd_fds;
1370 for (int i = 0; i < ictx->num_key_fd; i++)
1371 if (key_fds[i].dead) {
1372 mp_input_rm_key_fd(ictx, key_fds[i].fd);
1373 i--;
1374 } else if (time && key_fds[i].no_select)
1375 read_key_fd(ictx, &key_fds[i]);
1376 for (int i = 0; i < ictx->num_cmd_fd; i++)
1377 if (cmd_fds[i].dead || cmd_fds[i].eof) {
1378 mp_input_rm_cmd_fd(ictx, cmd_fds[i].fd);
1379 i--;
1380 } else if (time && cmd_fds[i].no_select)
1381 read_cmd_fd(ictx, &cmd_fds[i]);
1382 if (ictx->got_new_events)
1383 time = 0;
1384 #ifdef HAVE_POSIX_SELECT
1385 fd_set fds;
1386 FD_ZERO(&fds);
1387 int max_fd = 0;
1388 for (int i = 0; i < ictx->num_key_fd; i++) {
1389 if (key_fds[i].no_select)
1390 continue;
1391 if (key_fds[i].fd > max_fd)
1392 max_fd = key_fds[i].fd;
1393 FD_SET(key_fds[i].fd, &fds);
1395 for (int i = 0; i < ictx->num_cmd_fd; i++) {
1396 if (cmd_fds[i].no_select)
1397 continue;
1398 if (cmd_fds[i].fd > max_fd)
1399 max_fd = cmd_fds[i].fd;
1400 FD_SET(cmd_fds[i].fd, &fds);
1402 struct timeval tv, *time_val;
1403 if (time >= 0) {
1404 tv.tv_sec = time / 1000;
1405 tv.tv_usec = (time % 1000) * 1000;
1406 time_val = &tv;
1407 } else
1408 time_val = NULL;
1409 if (select(max_fd + 1, &fds, NULL, NULL, time_val) < 0) {
1410 if (errno != EINTR)
1411 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Select error: %s\n",
1412 strerror(errno));
1413 FD_ZERO(&fds);
1415 #else
1416 if (time)
1417 usec_sleep(time * 1000);
1418 #endif
1421 for (int i = 0; i < ictx->num_key_fd; i++) {
1422 #ifdef HAVE_POSIX_SELECT
1423 if (!key_fds[i].no_select && !FD_ISSET(key_fds[i].fd, &fds))
1424 continue;
1425 #endif
1426 read_key_fd(ictx, &key_fds[i]);
1429 for (int i = 0; i < ictx->num_cmd_fd; i++) {
1430 #ifdef HAVE_POSIX_SELECT
1431 if (!cmd_fds[i].no_select && !FD_ISSET(cmd_fds[i].fd, &fds))
1432 continue;
1433 #endif
1434 read_cmd_fd(ictx, &cmd_fds[i]);
1438 /* To support blocking file descriptors we don't loop the read over
1439 * every source until it's known to be empty. Instead we use this wrapper
1440 * to run select() again.
1442 static void read_all_events(struct input_ctx *ictx, int time)
1444 while (1) {
1445 read_events(ictx, time);
1446 if (!ictx->got_new_events)
1447 return;
1448 time = 0;
1452 int mp_input_queue_cmd(struct input_ctx *ictx, mp_cmd_t *cmd)
1454 ictx->got_new_events = true;
1455 if (!cmd)
1456 return 0;
1457 queue_add(&ictx->control_cmd_queue, cmd, true);
1458 return 1;
1462 * \param peek_only when set, the returned command stays in the queue.
1463 * Do not free the returned cmd whe you set this!
1465 mp_cmd_t *mp_input_get_cmd(struct input_ctx *ictx, int time, int peek_only)
1467 if (async_quit_request)
1468 return mp_input_parse_cmd("quit 1");
1470 if (ictx->control_cmd_queue.num_cmds || ictx->key_cmd_queue.num_cmds)
1471 time = 0;
1472 read_all_events(ictx, time);
1473 struct mp_cmd *ret;
1474 struct cmd_queue *queue = &ictx->control_cmd_queue;
1475 if (!queue->num_cmds)
1476 queue = &ictx->key_cmd_queue;
1477 if (!queue->num_cmds) {
1478 ret = check_autorepeat(ictx);
1479 if (!ret)
1480 return NULL;
1481 queue_add(queue, ret, false);
1482 } else
1483 ret = queue->first;
1485 for (struct cmd_filter *cf = cmd_filters; cf; cf = cf->next) {
1486 if (cf->filter(ret, cf->ctx)) {
1487 // The filter ate the cmd, so remove it from the queue
1488 queue_pop(queue);
1489 mp_cmd_free(ret);
1490 // Retry with next command
1491 return mp_input_get_cmd(ictx, 0, peek_only);
1495 if (!peek_only)
1496 queue_pop(queue);
1498 return ret;
1501 void mp_cmd_free(mp_cmd_t *cmd)
1503 talloc_free(cmd);
1506 mp_cmd_t *mp_cmd_clone(mp_cmd_t *cmd)
1508 mp_cmd_t *ret;
1509 int i;
1511 ret = talloc_memdup(NULL, cmd, sizeof(mp_cmd_t));
1512 ret->name = talloc_strdup(ret, cmd->name);
1513 for (i = 0; i < MP_CMD_MAX_ARGS && cmd->args[i].type != -1; i++) {
1514 if (cmd->args[i].type == MP_CMD_ARG_STRING && cmd->args[i].v.s != NULL)
1515 ret->args[i].v.s = talloc_strdup(ret, cmd->args[i].v.s);
1518 return ret;
1521 int mp_input_get_key_from_name(const char *name)
1523 int modifiers = 0;
1524 const char *p;
1525 while ((p = strchr(name, '+'))) {
1526 for (struct key_name *m = modifier_names; m->name; m++)
1527 if (!bstrcasecmp(bstr(m->name),
1528 (struct bstr){(char *)name, p - name})) {
1529 modifiers |= m->key;
1530 goto found;
1532 if (!strcmp(name, "+"))
1533 return '+' + modifiers;
1534 return -1;
1535 found:
1536 name = p + 1;
1538 int len = strlen(name);
1539 if (len == 1) // Direct key code
1540 return (unsigned char)name[0] + modifiers;
1541 else if (len > 2 && strncasecmp("0x", name, 2) == 0)
1542 return strtol(name, NULL, 16) + modifiers;
1544 for (int i = 0; key_names[i].name != NULL; i++) {
1545 if (strcasecmp(key_names[i].name, name) == 0)
1546 return key_names[i].key + modifiers;
1549 return -1;
1552 static int get_input_from_name(char *name, int *keys)
1554 char *end, *ptr;
1555 int n = 0;
1557 ptr = name;
1558 n = 0;
1559 for (end = strchr(ptr, '-'); ptr != NULL; end = strchr(ptr, '-')) {
1560 if (end && end[1] != '\0') {
1561 if (end[1] == '-')
1562 end = &end[1];
1563 end[0] = '\0';
1565 keys[n] = mp_input_get_key_from_name(ptr);
1566 if (keys[n] < 0)
1567 return 0;
1568 n++;
1569 if (end && end[1] != '\0' && n < MP_MAX_KEY_DOWN)
1570 ptr = &end[1];
1571 else
1572 break;
1574 keys[n] = 0;
1575 return 1;
1578 #define SPACE_CHAR " \n\r\t"
1580 static void bind_keys(struct input_ctx *ictx,
1581 const int keys[MP_MAX_KEY_DOWN + 1], char *cmd)
1583 int i = 0, j;
1584 struct cmd_bind *bind = NULL;
1585 struct cmd_bind_section *bind_section = NULL;
1586 char *section = NULL, *p;
1588 if (*cmd == '{' && (p = strchr(cmd, '}'))) {
1589 *p = 0;
1590 section = ++cmd;
1591 cmd = ++p;
1592 // Jump beginning space
1593 cmd += strspn(cmd, SPACE_CHAR);
1595 bind_section = get_bind_section(ictx, section);
1597 if (bind_section->cmd_binds) {
1598 for (i = 0; bind_section->cmd_binds[i].cmd != NULL; i++) {
1599 for (j = 0; bind_section->cmd_binds[i].input[j] == keys[j] && keys[j] != 0; j++)
1600 /* NOTHING */;
1601 if (keys[j] == 0 && bind_section->cmd_binds[i].input[j] == 0 ) {
1602 bind = &bind_section->cmd_binds[i];
1603 break;
1608 if (!bind) {
1609 bind_section->cmd_binds = talloc_realloc(bind_section,
1610 bind_section->cmd_binds,
1611 struct cmd_bind, i + 2);
1612 memset(&bind_section->cmd_binds[i], 0, 2 * sizeof(struct cmd_bind));
1613 bind = &bind_section->cmd_binds[i];
1615 talloc_free(bind->cmd);
1616 bind->cmd = talloc_strdup(bind_section->cmd_binds, cmd);
1617 memcpy(bind->input, keys, (MP_MAX_KEY_DOWN + 1) * sizeof(int));
1620 static int parse_config(struct input_ctx *ictx, char *file)
1622 int fd = open(file, O_RDONLY);
1624 if (fd < 0) {
1625 mp_msg(MSGT_INPUT, MSGL_V, "Can't open input config file %s: %s\n",
1626 file, strerror(errno));
1627 return 0;
1630 mp_msg(MSGT_INPUT, MSGL_V, "Parsing input config file %s\n", file);
1633 unsigned char buffer[512];
1634 struct bstr buf = { buffer, 0 };
1635 bool eof = false, comments = false;
1636 int n_binds = 0, keys[MP_MAX_KEY_DOWN + 1];
1638 while (1) {
1639 if (buf.start != buffer) {
1640 memmove(buffer, buf.start, buf.len);
1641 buf.start = buffer;
1643 if (!eof && buf.len < sizeof(buffer)) {
1644 int r = read(fd, buffer + buf.len, sizeof(buffer) - buf.len);
1645 if (r < 0) {
1646 if (errno == EINTR)
1647 continue;
1648 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Error while reading "
1649 "input config file %s: %s\n", file, strerror(errno));
1650 close(fd);
1651 return 0;
1652 } else if (r == 0) {
1653 eof = true;
1654 } else {
1655 buf.len += r;
1656 continue;
1659 if (buf.len == 0) {
1660 mp_msg(MSGT_INPUT, MSGL_V, "Input config file %s parsed: "
1661 "%d binds\n", file, n_binds);
1662 close(fd);
1663 return 1;
1665 if (comments) {
1666 int idx = bstrchr(buf, '\n');
1667 if (idx >= 0) {
1668 buf = bstr_cut(buf, idx + 1);
1669 comments = false;
1670 } else
1671 buf = bstr_cut(buf, buf.len);
1672 continue;
1674 buf = bstr_lstrip(buf);
1675 if (buf.start != buffer)
1676 continue;
1677 if (buf.start[0] == '#') {
1678 comments = true;
1679 continue;
1681 int eol = bstrchr(buf, '\n');
1682 if (eol < 0) {
1683 if (eof) {
1684 eol = buf.len;
1685 } else {
1686 mp_tmsg(MSGT_INPUT, MSGL_ERR,
1687 "Key binding is too long: %.*s\n", BSTR_P(buf));
1688 comments = true;
1689 continue;
1692 struct bstr line = bstr_splice(buf, 0, eol);
1693 buf = bstr_cut(buf, eol);
1694 struct bstr command;
1695 // Find the key name starting a line
1696 struct bstr keyname = bstr_split(line, SPACE_CHAR, &command);
1697 command = bstr_strip(command);
1698 if (command.len == 0) {
1699 mp_tmsg(MSGT_INPUT, MSGL_ERR,
1700 "Unfinished key binding: %.*s\n", BSTR_P(line));
1701 continue;
1703 char *name = bstrdup0(NULL, keyname);
1704 if (!get_input_from_name(name, keys)) {
1705 talloc_free(name);
1706 mp_tmsg(MSGT_INPUT, MSGL_ERR,
1707 "Unknown key '%.*s'\n", BSTR_P(keyname));
1708 continue;
1710 talloc_free(name);
1711 char *cmd = bstrdup0(NULL, command);
1712 bind_keys(ictx, keys, cmd);
1713 n_binds++;
1714 talloc_free(cmd);
1718 void mp_input_set_section(struct input_ctx *ictx, char *name)
1720 struct cmd_bind_section *bind_section = NULL;
1722 ictx->cmd_binds = NULL;
1723 ictx->cmd_binds_default = NULL;
1724 talloc_free(ictx->section);
1725 if (name)
1726 ictx->section = talloc_strdup(ictx, name);
1727 else
1728 ictx->section = talloc_strdup(ictx, "default");
1729 if ((bind_section = get_bind_section(ictx, ictx->section)))
1730 ictx->cmd_binds = bind_section->cmd_binds;
1731 if (strcmp(ictx->section, "default") == 0)
1732 return;
1733 if ((bind_section = get_bind_section(ictx, NULL)))
1734 ictx->cmd_binds_default = bind_section->cmd_binds;
1737 char *mp_input_get_section(struct input_ctx *ictx)
1739 return ictx->section;
1742 struct input_ctx *mp_input_init(struct input_conf *input_conf)
1744 struct input_ctx *ictx = talloc_ptrtype(NULL, ictx);
1745 *ictx = (struct input_ctx){
1746 .key_fifo_size = input_conf->key_fifo_size,
1747 .ar_state = -1,
1748 .ar_delay = input_conf->ar_delay,
1749 .ar_rate = input_conf->ar_rate,
1750 .default_bindings = input_conf->default_bindings,
1753 char *file;
1754 char *config_file = input_conf->config_file;
1755 file = config_file[0] != '/' ? get_path(config_file) : config_file;
1756 if (!file)
1757 return ictx;
1759 if (!parse_config(ictx, file)) {
1760 // free file if it was allocated by get_path(),
1761 // before it gets overwritten
1762 if (file != config_file)
1763 free(file);
1764 // Try global conf dir
1765 file = MPLAYER_CONFDIR "/input.conf";
1766 if (!parse_config(ictx, file))
1767 mp_msg(MSGT_INPUT, MSGL_V, "Falling back on default (hardcoded) "
1768 "input config\n");
1769 } else {
1770 // free file if it was allocated by get_path()
1771 if (file != config_file)
1772 free(file);
1775 #ifdef CONFIG_JOYSTICK
1776 if (input_conf->use_joystick) {
1777 int fd = mp_input_joystick_init(input_conf->js_dev);
1778 if (fd < 0)
1779 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Can't init input joystick\n");
1780 else
1781 mp_input_add_key_fd(ictx, fd, 1, mp_input_joystick_read,
1782 close, NULL);
1784 #endif
1786 #ifdef CONFIG_LIRC
1787 if (input_conf->use_lirc) {
1788 int fd = mp_input_lirc_init();
1789 if (fd > 0)
1790 mp_input_add_cmd_fd(ictx, fd, 0, mp_input_lirc_read,
1791 mp_input_lirc_close);
1793 #endif
1795 #ifdef CONFIG_LIRCC
1796 if (input_conf->use_lircc) {
1797 int fd = lircc_init("mplayer", NULL);
1798 if (fd >= 0)
1799 mp_input_add_cmd_fd(ictx, fd, 1, NULL, lircc_cleanup);
1801 #endif
1803 #ifdef CONFIG_APPLE_REMOTE
1804 if (input_conf->use_ar) {
1805 if (mp_input_ar_init() < 0)
1806 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Can't init Apple Remote.\n");
1807 else
1808 mp_input_add_key_fd(ictx, -1, 0, mp_input_ar_read,
1809 mp_input_ar_close, NULL);
1811 #endif
1813 #ifdef CONFIG_APPLE_IR
1814 if (input_conf->use_ar) {
1815 int fd = mp_input_appleir_init(input_conf->ar_dev);
1816 if (fd < 0)
1817 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Can't init Apple Remote.\n");
1818 else
1819 mp_input_add_key_fd(ictx, fd, 1, mp_input_appleir_read,
1820 close, NULL);
1822 #endif
1824 if (input_conf->in_file) {
1825 struct stat st;
1826 int mode = O_RDONLY | O_NONBLOCK;
1827 // Use RDWR for FIFOs to ensure they stay open over multiple accesses.
1828 // Note that on Windows stat may fail for named pipes,
1829 // but due to how the API works, using RDONLY should be ok.
1830 if (stat(input_conf->in_file, &st) == 0 && S_ISFIFO(st.st_mode))
1831 mode = O_RDWR | O_NONBLOCK;
1832 int in_file_fd = open(input_conf->in_file, mode);
1833 if (in_file_fd >= 0)
1834 mp_input_add_cmd_fd(ictx, in_file_fd, 1, NULL, close);
1835 else
1836 mp_tmsg(MSGT_INPUT, MSGL_ERR, "Can't open %s: %s\n",
1837 input_conf->in_file, strerror(errno));
1839 return ictx;
1842 void mp_input_uninit(struct input_ctx *ictx)
1844 if (!ictx)
1845 return;
1847 unsigned int i;
1849 for (i = 0; i < ictx->num_key_fd; i++) {
1850 if (ictx->key_fds[i].close_func)
1851 ictx->key_fds[i].close_func(ictx->key_fds[i].fd);
1854 for (i = 0; i < ictx->num_cmd_fd; i++) {
1855 if (ictx->cmd_fds[i].close_func)
1856 ictx->cmd_fds[i].close_func(ictx->cmd_fds[i].fd);
1858 talloc_free(ictx);
1861 void mp_input_register_options(m_config_t *cfg)
1863 m_config_register_options(cfg, mp_input_opts);
1866 static int print_key_list(m_option_t *cfg)
1868 int i;
1869 printf("\n");
1870 for (i = 0; key_names[i].name != NULL; i++)
1871 printf("%s\n", key_names[i].name);
1872 exit(0);
1875 static int print_cmd_list(m_option_t *cfg)
1877 const mp_cmd_t *cmd;
1878 int i, j;
1879 const char *type;
1881 for (i = 0; (cmd = &mp_cmds[i])->name != NULL; i++) {
1882 printf("%-20.20s", cmd->name);
1883 for (j = 0; j < MP_CMD_MAX_ARGS && cmd->args[j].type != -1; j++) {
1884 switch (cmd->args[j].type) {
1885 case MP_CMD_ARG_INT:
1886 type = "Integer";
1887 break;
1888 case MP_CMD_ARG_FLOAT:
1889 type = "Float";
1890 break;
1891 case MP_CMD_ARG_STRING:
1892 type = "String";
1893 break;
1894 default:
1895 type = "??";
1897 if (j + 1 > cmd->nargs)
1898 printf(" [%s]", type);
1899 else
1900 printf(" %s", type);
1902 printf("\n");
1904 exit(0);
1908 * \param time time to wait for an interruption in milliseconds
1910 int mp_input_check_interrupt(struct input_ctx *ictx, int time)
1912 for (int i = 0; ; i++) {
1913 if (async_quit_request || ictx->key_cmd_queue.num_abort_cmds ||
1914 ictx->control_cmd_queue.num_abort_cmds) {
1915 mp_tmsg(MSGT_INPUT, MSGL_WARN, "Received command to move to "
1916 "another file. Aborting current processing.\n");
1917 return true;
1919 if (i)
1920 return false;
1921 read_all_events(ictx, time);