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.
27 #include <sys/types.h>
39 #include "osdep/timer.h"
40 #include "libavutil/avstring.h"
41 #include "libavutil/common.h"
49 #include "stream/stream.h"
58 #include <lirc/lircc.h>
64 #include "osdep/cocoa_events.h"
67 static const char embedded_file
[] =
68 #include "input.conf.h"
70 static const struct bstr builtin_input_conf
= {
71 .start
= (char *)embedded_file
, .len
= sizeof(embedded_file
) - 1
74 #define MP_MAX_KEY_DOWN 32
77 int input
[MP_MAX_KEY_DOWN
+ 1];
86 /* This array defines all known commands.
87 * The first field is an id used to recognize the command.
88 * The second is the command name used in slave mode and input.conf.
89 * Then comes the definition of each argument, first mandatory arguments
90 * (ARG_INT, ARG_FLOAT, ARG_STRING) if any, then optional arguments
91 * (OARG_INT(default), etc) if any. The command will be given the default
92 * argument value if the user didn't give enough arguments to specify it.
93 * A command can take a maximum of MP_CMD_MAX_ARGS arguments (10).
95 #define ARG_INT { .type = MP_CMD_ARG_INT }
96 #define OARG_INT(def) { .type = MP_CMD_ARG_INT, .optional = true, .v.i = def }
97 #define ARG_FLOAT { .type = MP_CMD_ARG_FLOAT }
98 #define OARG_FLOAT(def) { .type = MP_CMD_ARG_FLOAT, .optional = true, .v.f = def }
99 #define ARG_STRING { .type = MP_CMD_ARG_STRING }
100 #define OARG_STRING(def) { .type = MP_CMD_ARG_STRING, .optional = true, .v.s = def }
102 static const mp_cmd_t mp_cmds
[] = {
104 { MP_CMD_RADIO_STEP_CHANNEL
, "radio_step_channel", { ARG_INT
} },
105 { MP_CMD_RADIO_SET_CHANNEL
, "radio_set_channel", { ARG_STRING
} },
106 { MP_CMD_RADIO_SET_FREQ
, "radio_set_freq", { ARG_FLOAT
} },
107 { MP_CMD_RADIO_STEP_FREQ
, "radio_step_freq", {ARG_FLOAT
} },
109 { MP_CMD_SEEK
, "seek", { ARG_FLOAT
, OARG_INT(0), OARG_INT(0) } },
110 { MP_CMD_EDL_MARK
, "edl_mark", },
111 { MP_CMD_AUDIO_DELAY
, "audio_delay", { ARG_FLOAT
, OARG_INT(0) } },
112 { MP_CMD_SPEED_INCR
, "speed_incr", { ARG_FLOAT
} },
113 { MP_CMD_SPEED_MULT
, "speed_mult", { ARG_FLOAT
} },
114 { MP_CMD_SPEED_SET
, "speed_set", { ARG_FLOAT
} },
115 { MP_CMD_QUIT
, "quit", { OARG_INT(0) } },
116 { MP_CMD_STOP
, "stop", },
117 { MP_CMD_PAUSE
, "pause", },
118 { MP_CMD_FRAME_STEP
, "frame_step", },
119 { MP_CMD_PLAY_TREE_STEP
, "pt_step", { ARG_INT
, OARG_INT(0) } },
120 { MP_CMD_PLAY_TREE_UP_STEP
, "pt_up_step", { ARG_INT
, OARG_INT(0) } },
121 { MP_CMD_PLAY_ALT_SRC_STEP
, "alt_src_step", { ARG_INT
} },
122 { MP_CMD_LOOP
, "loop", { ARG_INT
, OARG_INT(0) } },
123 { MP_CMD_SUB_DELAY
, "sub_delay", { ARG_FLOAT
, OARG_INT(0) } },
124 { MP_CMD_OSD
, "osd", { OARG_INT(-1) } },
125 { MP_CMD_OSD_SHOW_TEXT
, "osd_show_text", { ARG_STRING
, OARG_INT(-1), OARG_INT(0) } },
126 { MP_CMD_OSD_SHOW_PROPERTY_TEXT
, "osd_show_property_text", { ARG_STRING
, OARG_INT(-1), OARG_INT(0) } },
127 { MP_CMD_OSD_SHOW_PROGRESSION
, "osd_show_progression", },
128 { MP_CMD_VOLUME
, "volume", { ARG_FLOAT
, OARG_INT(0) } },
129 { MP_CMD_BALANCE
, "balance", { ARG_FLOAT
, OARG_INT(0) } },
130 { MP_CMD_MUTE
, "mute", { OARG_INT(-1) } },
131 { MP_CMD_CONTRAST
, "contrast", { ARG_INT
, OARG_INT(0) } },
132 { MP_CMD_GAMMA
, "gamma", { ARG_INT
, OARG_INT(0) } },
133 { MP_CMD_BRIGHTNESS
, "brightness", { ARG_INT
, OARG_INT(0) } },
134 { MP_CMD_HUE
, "hue", { ARG_INT
, OARG_INT(0) } },
135 { MP_CMD_SATURATION
, "saturation", { ARG_INT
, OARG_INT(0) } },
136 { MP_CMD_FRAMEDROPPING
, "frame_drop", { OARG_INT(-1) } },
137 { MP_CMD_SUB_POS
, "sub_pos", { ARG_INT
, OARG_INT(0) } },
138 { MP_CMD_SUB_ALIGNMENT
, "sub_alignment", { OARG_INT(-1) } },
139 { MP_CMD_SUB_VISIBILITY
, "sub_visibility", { OARG_INT(-1) } },
140 { MP_CMD_SUB_LOAD
, "sub_load", { ARG_STRING
} },
141 { MP_CMD_SUB_REMOVE
, "sub_remove", { OARG_INT(-1) } },
142 { MP_CMD_SUB_SELECT
, "vobsub_lang", { OARG_INT(-2) } }, // for compatibility
143 { MP_CMD_SUB_SELECT
, "sub_select", { OARG_INT(-2) } },
144 { MP_CMD_SUB_SOURCE
, "sub_source", { OARG_INT(-2) } },
145 { MP_CMD_SUB_VOB
, "sub_vob", { OARG_INT(-2) } },
146 { MP_CMD_SUB_DEMUX
, "sub_demux", { OARG_INT(-2) } },
147 { MP_CMD_SUB_FILE
, "sub_file", { OARG_INT(-2) } },
148 { MP_CMD_SUB_LOG
, "sub_log", },
149 { MP_CMD_SUB_SCALE
, "sub_scale", { ARG_FLOAT
, OARG_INT(0) } },
151 { MP_CMD_ASS_USE_MARGINS
, "ass_use_margins", { OARG_INT(-1) } },
153 { MP_CMD_GET_PERCENT_POS
, "get_percent_pos", },
154 { MP_CMD_GET_TIME_POS
, "get_time_pos", },
155 { MP_CMD_GET_TIME_LENGTH
, "get_time_length", },
156 { MP_CMD_GET_FILENAME
, "get_file_name", },
157 { MP_CMD_GET_VIDEO_CODEC
, "get_video_codec", },
158 { MP_CMD_GET_VIDEO_BITRATE
, "get_video_bitrate", },
159 { MP_CMD_GET_VIDEO_RESOLUTION
, "get_video_resolution", },
160 { MP_CMD_GET_AUDIO_CODEC
, "get_audio_codec", },
161 { MP_CMD_GET_AUDIO_BITRATE
, "get_audio_bitrate", },
162 { MP_CMD_GET_AUDIO_SAMPLES
, "get_audio_samples", },
163 { MP_CMD_GET_META_TITLE
, "get_meta_title", },
164 { MP_CMD_GET_META_ARTIST
, "get_meta_artist", },
165 { MP_CMD_GET_META_ALBUM
, "get_meta_album", },
166 { MP_CMD_GET_META_YEAR
, "get_meta_year", },
167 { MP_CMD_GET_META_COMMENT
, "get_meta_comment", },
168 { MP_CMD_GET_META_TRACK
, "get_meta_track", },
169 { MP_CMD_GET_META_GENRE
, "get_meta_genre", },
170 { MP_CMD_SWITCH_AUDIO
, "switch_audio", { OARG_INT(-1) } },
171 { MP_CMD_SWITCH_ANGLE
, "switch_angle", { OARG_INT(-1) } },
172 { MP_CMD_SWITCH_TITLE
, "switch_title", { OARG_INT(-1) } },
174 { MP_CMD_TV_START_SCAN
, "tv_start_scan", },
175 { MP_CMD_TV_STEP_CHANNEL
, "tv_step_channel", { ARG_INT
} },
176 { MP_CMD_TV_STEP_NORM
, "tv_step_norm", },
177 { MP_CMD_TV_STEP_CHANNEL_LIST
, "tv_step_chanlist", },
178 { MP_CMD_TV_SET_CHANNEL
, "tv_set_channel", { ARG_STRING
} },
179 { MP_CMD_TV_LAST_CHANNEL
, "tv_last_channel", },
180 { MP_CMD_TV_SET_FREQ
, "tv_set_freq", { ARG_FLOAT
} },
181 { MP_CMD_TV_STEP_FREQ
, "tv_step_freq", { ARG_FLOAT
} },
182 { MP_CMD_TV_SET_NORM
, "tv_set_norm", { ARG_STRING
} },
183 { MP_CMD_TV_SET_BRIGHTNESS
, "tv_set_brightness", { ARG_INT
, OARG_INT(1) } },
184 { MP_CMD_TV_SET_CONTRAST
, "tv_set_contrast", { ARG_INT
, OARG_INT(1) } },
185 { MP_CMD_TV_SET_HUE
, "tv_set_hue", { ARG_INT
, OARG_INT(1) } },
186 { MP_CMD_TV_SET_SATURATION
, "tv_set_saturation", { ARG_INT
, OARG_INT(1) } },
188 { MP_CMD_SUB_FORCED_ONLY
, "forced_subs_only", { OARG_INT(-1) } },
190 { MP_CMD_DVB_SET_CHANNEL
, "dvb_set_channel", { ARG_INT
, ARG_INT
} },
192 { MP_CMD_SWITCH_RATIO
, "switch_ratio", { OARG_FLOAT(0) } },
193 { MP_CMD_VO_FULLSCREEN
, "vo_fullscreen", { OARG_INT(-1) } },
194 { MP_CMD_VO_ONTOP
, "vo_ontop", { OARG_INT(-1) } },
195 { MP_CMD_VO_ROOTWIN
, "vo_rootwin", { OARG_INT(-1) } },
196 { MP_CMD_VO_BORDER
, "vo_border", { OARG_INT(-1) } },
197 { MP_CMD_SCREENSHOT
, "screenshot", { OARG_INT(0), OARG_INT(0) } },
198 { MP_CMD_PANSCAN
, "panscan", { ARG_FLOAT
, OARG_INT(0) } },
199 { MP_CMD_SWITCH_VSYNC
, "switch_vsync", { OARG_INT(0) } },
200 { MP_CMD_LOADFILE
, "loadfile", { ARG_STRING
, OARG_INT(0) } },
201 { MP_CMD_LOADLIST
, "loadlist", { ARG_STRING
, OARG_INT(0) } },
202 { MP_CMD_RUN
, "run", { ARG_STRING
} },
203 { MP_CMD_CAPTURING
, "capturing", },
204 { MP_CMD_VF_CHANGE_RECTANGLE
, "change_rectangle", { ARG_INT
, ARG_INT
} },
205 { MP_CMD_TV_TELETEXT_ADD_DEC
, "teletext_add_dec", { ARG_STRING
} },
206 { MP_CMD_TV_TELETEXT_GO_LINK
, "teletext_go_link", { ARG_INT
} },
209 { MP_CMD_DVDNAV
, "dvdnav", { ARG_STRING
} },
212 { MP_CMD_GET_VO_FULLSCREEN
, "get_vo_fullscreen", },
213 { MP_CMD_GET_SUB_VISIBILITY
, "get_sub_visibility", },
214 { MP_CMD_KEYDOWN_EVENTS
, "key_down_event", { ARG_INT
} },
215 { MP_CMD_SET_PROPERTY
, "set_property", { ARG_STRING
, ARG_STRING
} },
216 { MP_CMD_SET_PROPERTY_OSD
, "set_property_osd", { ARG_STRING
, ARG_STRING
} },
217 { MP_CMD_GET_PROPERTY
, "get_property", { ARG_STRING
} },
218 { MP_CMD_STEP_PROPERTY
, "step_property", { ARG_STRING
, OARG_FLOAT(0) } },
219 { MP_CMD_STEP_PROPERTY_OSD
, "step_property_osd", { ARG_STRING
, OARG_FLOAT(0) } },
221 { MP_CMD_SEEK_CHAPTER
, "seek_chapter", { ARG_INT
, OARG_INT(0) } },
222 { MP_CMD_SET_MOUSE_POS
, "set_mouse_pos", { ARG_INT
, ARG_INT
} },
224 { MP_CMD_AF_SWITCH
, "af_switch", { ARG_STRING
} },
225 { MP_CMD_AF_ADD
, "af_add", { ARG_STRING
} },
226 { MP_CMD_AF_DEL
, "af_del", { ARG_STRING
} },
227 { MP_CMD_AF_CLR
, "af_clr", },
228 { MP_CMD_AF_CMDLINE
, "af_cmdline", { ARG_STRING
, ARG_STRING
} },
232 /// The names of the keys as used in input.conf
233 /// If you add some new keys, you also need to add them here
235 static const struct key_name key_names
[] = {
238 { KEY_ENTER
, "ENTER" },
240 { KEY_BACKSPACE
, "BS" },
241 { KEY_DELETE
, "DEL" },
242 { KEY_INSERT
, "INS" },
243 { KEY_HOME
, "HOME" },
245 { KEY_PAGE_UP
, "PGUP" },
246 { KEY_PAGE_DOWN
, "PGDWN" },
248 { KEY_PRINT
, "PRINT" },
249 { KEY_RIGHT
, "RIGHT" },
250 { KEY_LEFT
, "LEFT" },
251 { KEY_DOWN
, "DOWN" },
275 { KEY_KPDEL
, "KP_DEL" },
276 { KEY_KPDEC
, "KP_DEC" },
277 { KEY_KPINS
, "KP_INS" },
278 { KEY_KPENTER
, "KP_ENTER" },
279 { MOUSE_BTN0
, "MOUSE_BTN0" },
280 { MOUSE_BTN1
, "MOUSE_BTN1" },
281 { MOUSE_BTN2
, "MOUSE_BTN2" },
282 { MOUSE_BTN3
, "MOUSE_BTN3" },
283 { MOUSE_BTN4
, "MOUSE_BTN4" },
284 { MOUSE_BTN5
, "MOUSE_BTN5" },
285 { MOUSE_BTN6
, "MOUSE_BTN6" },
286 { MOUSE_BTN7
, "MOUSE_BTN7" },
287 { MOUSE_BTN8
, "MOUSE_BTN8" },
288 { MOUSE_BTN9
, "MOUSE_BTN9" },
289 { MOUSE_BTN10
, "MOUSE_BTN10" },
290 { MOUSE_BTN11
, "MOUSE_BTN11" },
291 { MOUSE_BTN12
, "MOUSE_BTN12" },
292 { MOUSE_BTN13
, "MOUSE_BTN13" },
293 { MOUSE_BTN14
, "MOUSE_BTN14" },
294 { MOUSE_BTN15
, "MOUSE_BTN15" },
295 { MOUSE_BTN16
, "MOUSE_BTN16" },
296 { MOUSE_BTN17
, "MOUSE_BTN17" },
297 { MOUSE_BTN18
, "MOUSE_BTN18" },
298 { MOUSE_BTN19
, "MOUSE_BTN19" },
299 { MOUSE_BTN0_DBL
, "MOUSE_BTN0_DBL" },
300 { MOUSE_BTN1_DBL
, "MOUSE_BTN1_DBL" },
301 { MOUSE_BTN2_DBL
, "MOUSE_BTN2_DBL" },
302 { MOUSE_BTN3_DBL
, "MOUSE_BTN3_DBL" },
303 { MOUSE_BTN4_DBL
, "MOUSE_BTN4_DBL" },
304 { MOUSE_BTN5_DBL
, "MOUSE_BTN5_DBL" },
305 { MOUSE_BTN6_DBL
, "MOUSE_BTN6_DBL" },
306 { MOUSE_BTN7_DBL
, "MOUSE_BTN7_DBL" },
307 { MOUSE_BTN8_DBL
, "MOUSE_BTN8_DBL" },
308 { MOUSE_BTN9_DBL
, "MOUSE_BTN9_DBL" },
309 { MOUSE_BTN10_DBL
, "MOUSE_BTN10_DBL" },
310 { MOUSE_BTN11_DBL
, "MOUSE_BTN11_DBL" },
311 { MOUSE_BTN12_DBL
, "MOUSE_BTN12_DBL" },
312 { MOUSE_BTN13_DBL
, "MOUSE_BTN13_DBL" },
313 { MOUSE_BTN14_DBL
, "MOUSE_BTN14_DBL" },
314 { MOUSE_BTN15_DBL
, "MOUSE_BTN15_DBL" },
315 { MOUSE_BTN16_DBL
, "MOUSE_BTN16_DBL" },
316 { MOUSE_BTN17_DBL
, "MOUSE_BTN17_DBL" },
317 { MOUSE_BTN18_DBL
, "MOUSE_BTN18_DBL" },
318 { MOUSE_BTN19_DBL
, "MOUSE_BTN19_DBL" },
319 { JOY_AXIS1_MINUS
, "JOY_UP" },
320 { JOY_AXIS1_PLUS
, "JOY_DOWN" },
321 { JOY_AXIS0_MINUS
, "JOY_LEFT" },
322 { JOY_AXIS0_PLUS
, "JOY_RIGHT" },
324 { JOY_AXIS0_PLUS
, "JOY_AXIS0_PLUS" },
325 { JOY_AXIS0_MINUS
, "JOY_AXIS0_MINUS" },
326 { JOY_AXIS1_PLUS
, "JOY_AXIS1_PLUS" },
327 { JOY_AXIS1_MINUS
, "JOY_AXIS1_MINUS" },
328 { JOY_AXIS2_PLUS
, "JOY_AXIS2_PLUS" },
329 { JOY_AXIS2_MINUS
, "JOY_AXIS2_MINUS" },
330 { JOY_AXIS3_PLUS
, "JOY_AXIS3_PLUS" },
331 { JOY_AXIS3_MINUS
, "JOY_AXIS3_MINUS" },
332 { JOY_AXIS4_PLUS
, "JOY_AXIS4_PLUS" },
333 { JOY_AXIS4_MINUS
, "JOY_AXIS4_MINUS" },
334 { JOY_AXIS5_PLUS
, "JOY_AXIS5_PLUS" },
335 { JOY_AXIS5_MINUS
, "JOY_AXIS5_MINUS" },
336 { JOY_AXIS6_PLUS
, "JOY_AXIS6_PLUS" },
337 { JOY_AXIS6_MINUS
, "JOY_AXIS6_MINUS" },
338 { JOY_AXIS7_PLUS
, "JOY_AXIS7_PLUS" },
339 { JOY_AXIS7_MINUS
, "JOY_AXIS7_MINUS" },
340 { JOY_AXIS8_PLUS
, "JOY_AXIS8_PLUS" },
341 { JOY_AXIS8_MINUS
, "JOY_AXIS8_MINUS" },
342 { JOY_AXIS9_PLUS
, "JOY_AXIS9_PLUS" },
343 { JOY_AXIS9_MINUS
, "JOY_AXIS9_MINUS" },
345 { JOY_BTN0
, "JOY_BTN0" },
346 { JOY_BTN1
, "JOY_BTN1" },
347 { JOY_BTN2
, "JOY_BTN2" },
348 { JOY_BTN3
, "JOY_BTN3" },
349 { JOY_BTN4
, "JOY_BTN4" },
350 { JOY_BTN5
, "JOY_BTN5" },
351 { JOY_BTN6
, "JOY_BTN6" },
352 { JOY_BTN7
, "JOY_BTN7" },
353 { JOY_BTN8
, "JOY_BTN8" },
354 { JOY_BTN9
, "JOY_BTN9" },
356 { AR_PLAY
, "AR_PLAY" },
357 { AR_PLAY_HOLD
, "AR_PLAY_HOLD" },
358 { AR_NEXT
, "AR_NEXT" },
359 { AR_NEXT_HOLD
, "AR_NEXT_HOLD" },
360 { AR_PREV
, "AR_PREV" },
361 { AR_PREV_HOLD
, "AR_PREV_HOLD" },
362 { AR_MENU
, "AR_MENU" },
363 { AR_MENU_HOLD
, "AR_MENU_HOLD" },
364 { AR_VUP
, "AR_VUP" },
365 { AR_VDOWN
, "AR_VDOWN" },
367 { KEY_POWER
, "POWER" },
368 { KEY_MENU
, "MENU" },
369 { KEY_PLAY
, "PLAY" },
370 { KEY_PAUSE
, "PAUSE" },
371 { KEY_PLAYPAUSE
, "PLAYPAUSE" },
372 { KEY_STOP
, "STOP" },
373 { KEY_FORWARD
, "FORWARD" },
374 { KEY_REWIND
, "REWIND" },
375 { KEY_NEXT
, "NEXT" },
376 { KEY_PREV
, "PREV" },
377 { KEY_VOLUME_UP
, "VOLUME_UP" },
378 { KEY_VOLUME_DOWN
, "VOLUME_DOWN" },
379 { KEY_MUTE
, "MUTE" },
381 // These are kept for backward compatibility
382 { KEY_PAUSE
, "XF86_PAUSE" },
383 { KEY_STOP
, "XF86_STOP" },
384 { KEY_PREV
, "XF86_PREV" },
385 { KEY_NEXT
, "XF86_NEXT" },
387 { KEY_CLOSE_WIN
, "CLOSE_WIN" },
392 struct key_name modifier_names
[] = {
393 { KEY_MODIFIER_SHIFT
, "Shift" },
394 { KEY_MODIFIER_CTRL
, "Ctrl" },
395 { KEY_MODIFIER_ALT
, "Alt" },
396 { KEY_MODIFIER_META
, "Meta" },
400 #define KEY_MODIFIER_MASK (KEY_MODIFIER_SHIFT | KEY_MODIFIER_CTRL | KEY_MODIFIER_ALT | KEY_MODIFIER_META)
402 #ifndef MP_MAX_KEY_FD
403 #define MP_MAX_KEY_FD 10
406 #ifndef MP_MAX_CMD_FD
407 #define MP_MAX_CMD_FD 10
413 int (*key
)(void *ctx
, int fd
);
414 int (*cmd
)(int fd
, char *dest
, int size
);
416 int (*close_func
)(int fd
);
421 unsigned got_cmd
: 1;
422 unsigned no_select
: 1;
423 // These fields are for the cmd fds.
428 struct cmd_bind_section
{
429 struct cmd_bind
*cmd_binds
;
431 struct cmd_bind_section
*next
;
435 struct mp_cmd
*first
;
445 unsigned int last_ar
;
447 unsigned int ar_delay
;
448 unsigned int ar_rate
;
449 // Maximum number of queued commands from keypresses (limit to avoid
450 // repeated slow commands piling up)
453 // these are the keys currently down
454 int key_down
[MP_MAX_KEY_DOWN
];
455 unsigned int num_key_down
;
456 unsigned int last_key_down
;
458 // List of command binding sections
459 struct cmd_bind_section
*cmd_bind_sections
;
460 // Name of currently used command section
463 // Used to track whether we managed to read something while checking
464 // events sources. If yes, the sources may have more queued.
467 struct input_fd key_fds
[MP_MAX_KEY_FD
];
468 unsigned int num_key_fd
;
470 struct input_fd cmd_fds
[MP_MAX_CMD_FD
];
471 unsigned int num_cmd_fd
;
473 struct cmd_queue key_cmd_queue
;
474 struct cmd_queue control_cmd_queue
;
482 int async_quit_request
;
484 static int print_key_list(m_option_t
*cfg
, char *optname
, char *optparam
);
485 static int print_cmd_list(m_option_t
*cfg
, char *optname
, char *optparam
);
487 // Our command line options
488 static const m_option_t input_conf
[] = {
489 OPT_STRING("conf", input
.config_file
, CONF_GLOBAL
, OPTDEF_STR("input.conf")),
490 OPT_INT("ar-delay", input
.ar_delay
, CONF_GLOBAL
),
491 OPT_INT("ar-rate", input
.ar_rate
, CONF_GLOBAL
),
492 { "keylist", print_key_list
, CONF_TYPE_PRINT_FUNC
, CONF_NOCFG
},
493 { "cmdlist", print_cmd_list
, CONF_TYPE_PRINT_FUNC
, CONF_NOCFG
},
494 OPT_STRING("js-dev", input
.js_dev
, CONF_GLOBAL
),
495 OPT_STRING("ar-dev", input
.ar_dev
, CONF_GLOBAL
),
496 OPT_STRING("file", input
.in_file
, CONF_GLOBAL
),
497 OPT_MAKE_FLAGS("default-bindings", input
.default_bindings
, CONF_GLOBAL
),
498 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
501 static const m_option_t mp_input_opts
[] = {
502 { "input", (void *)&input_conf
, CONF_TYPE_SUBCONFIG
, 0, 0, 0, NULL
},
503 OPT_MAKE_FLAGS("joystick", input
.use_joystick
, CONF_GLOBAL
),
504 OPT_MAKE_FLAGS("lirc", input
.use_lirc
, CONF_GLOBAL
),
505 OPT_MAKE_FLAGS("lircc", input
.use_lircc
, CONF_GLOBAL
),
506 OPT_MAKE_FLAGS("ar", input
.use_ar
, CONF_GLOBAL
),
507 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
510 static int default_cmd_func(int fd
, char *buf
, int l
);
512 // Encode the unicode codepoint as UTF-8, and append to the end of the
514 static char *append_utf8_buffer(char *buffer
, uint32_t codepoint
)
519 PUT_UTF8(codepoint
, tmp
, *output
++ = tmp
;);
520 return talloc_strndup_append_buffer(buffer
, data
, output
- data
);
523 static char *get_key_name(int key
, char *ret
)
525 for (int i
= 0; modifier_names
[i
].name
; i
++) {
526 if (modifier_names
[i
].key
& key
) {
527 ret
= talloc_asprintf_append_buffer(ret
, "%s+",
528 modifier_names
[i
].name
);
529 key
-= modifier_names
[i
].key
;
532 for (int i
= 0; key_names
[i
].name
!= NULL
; i
++) {
533 if (key_names
[i
].key
== key
)
534 return talloc_asprintf_append_buffer(ret
, "%s", key_names
[i
].name
);
537 // printable, and valid unicode range
538 if (key
>= 32 && key
<= 0x10FFFF)
539 return append_utf8_buffer(ret
, key
);
541 // Print the hex key code
542 return talloc_asprintf_append_buffer(ret
, "%#-8x", key
);
545 static char *get_key_combo_name(int *keys
, int max
)
547 char *ret
= talloc_strdup(NULL
, "");
549 ret
= get_key_name(*keys
, ret
);
550 if (--max
&& *++keys
)
551 talloc_asprintf_append_buffer(ret
, "-");
558 static bool is_abort_cmd(int cmd_id
)
562 case MP_CMD_PLAY_TREE_STEP
:
563 case MP_CMD_PLAY_TREE_UP_STEP
:
564 case MP_CMD_PLAY_ALT_SRC_STEP
:
570 static void queue_pop(struct cmd_queue
*queue
)
572 assert(queue
->num_cmds
> 0);
573 struct mp_cmd
*cmd
= queue
->first
;
574 queue
->first
= cmd
->queue_next
;
576 queue
->num_abort_cmds
-= is_abort_cmd(cmd
->id
);
579 static void queue_add(struct cmd_queue
*queue
, struct mp_cmd
*cmd
,
582 if (!queue
->num_cmds
) {
585 } else if (at_head
) {
586 queue
->first
->queue_prev
= cmd
;
587 cmd
->queue_next
= queue
->first
;
590 queue
->last
->queue_next
= cmd
;
591 cmd
->queue_prev
= queue
->last
;
595 queue
->num_abort_cmds
+= is_abort_cmd(cmd
->id
);
598 int mp_input_add_cmd_fd(struct input_ctx
*ictx
, int fd
, int select
,
599 int read_func(int fd
, char *dest
, int size
),
600 int close_func(int fd
))
602 if (ictx
->num_cmd_fd
== MP_MAX_CMD_FD
) {
603 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Too many command file descriptors, "
604 "cannot register file descriptor %d.\n", fd
);
607 if (select
&& fd
< 0) {
608 mp_msg(MSGT_INPUT
, MSGL_ERR
,
609 "Invalid fd %d in mp_input_add_cmd_fd", fd
);
613 ictx
->cmd_fds
[ictx
->num_cmd_fd
] = (struct input_fd
){
615 .read_func
.cmd
= read_func
? read_func
: default_cmd_func
,
616 .close_func
= close_func
,
624 void mp_input_rm_cmd_fd(struct input_ctx
*ictx
, int fd
)
626 struct input_fd
*cmd_fds
= ictx
->cmd_fds
;
629 for (i
= 0; i
< ictx
->num_cmd_fd
; i
++) {
630 if (cmd_fds
[i
].fd
== fd
)
633 if (i
== ictx
->num_cmd_fd
)
635 if (cmd_fds
[i
].close_func
)
636 cmd_fds
[i
].close_func(cmd_fds
[i
].fd
);
637 talloc_free(cmd_fds
[i
].buffer
);
639 if (i
+ 1 < ictx
->num_cmd_fd
)
640 memmove(&cmd_fds
[i
], &cmd_fds
[i
+ 1],
641 (ictx
->num_cmd_fd
- i
- 1) * sizeof(struct input_fd
));
645 void mp_input_rm_key_fd(struct input_ctx
*ictx
, int fd
)
647 struct input_fd
*key_fds
= ictx
->key_fds
;
650 for (i
= 0; i
< ictx
->num_key_fd
; i
++) {
651 if (key_fds
[i
].fd
== fd
)
654 if (i
== ictx
->num_key_fd
)
656 if (key_fds
[i
].close_func
)
657 key_fds
[i
].close_func(key_fds
[i
].fd
);
659 if (i
+ 1 < ictx
->num_key_fd
)
660 memmove(&key_fds
[i
], &key_fds
[i
+ 1],
661 (ictx
->num_key_fd
- i
- 1) * sizeof(struct input_fd
));
665 int mp_input_add_key_fd(struct input_ctx
*ictx
, int fd
, int select
,
666 int read_func(void *ctx
, int fd
),
667 int close_func(int fd
), void *ctx
)
669 if (ictx
->num_key_fd
== MP_MAX_KEY_FD
) {
670 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Too many key file descriptors, "
671 "cannot register file descriptor %d.\n", fd
);
674 if (select
&& fd
< 0) {
675 mp_msg(MSGT_INPUT
, MSGL_ERR
,
676 "Invalid fd %d in mp_input_add_key_fd", fd
);
680 ictx
->key_fds
[ictx
->num_key_fd
] = (struct input_fd
){
682 .read_func
.key
= read_func
,
683 .close_func
= close_func
,
684 .no_select
= !select
,
692 mp_cmd_t
*mp_input_parse_cmd(char *str
)
697 const mp_cmd_t
*cmd_def
;
699 // Ignore heading spaces.
700 while (str
[0] == ' ' || str
[0] == '\t')
703 if (strncmp(str
, "pausing ", 8) == 0) {
706 } else if (strncmp(str
, "pausing_keep ", 13) == 0) {
709 } else if (strncmp(str
, "pausing_toggle ", 15) == 0) {
712 } else if (strncmp(str
, "pausing_keep_force ", 19) == 0) {
717 ptr
= str
+ strcspn(str
, "\t ");
726 for (i
= 0; mp_cmds
[i
].name
!= NULL
; i
++) {
727 if (strncasecmp(mp_cmds
[i
].name
, str
, l
) == 0)
731 if (mp_cmds
[i
].name
== NULL
)
734 cmd_def
= &mp_cmds
[i
];
736 mp_cmd_t
*cmd
= talloc_ptrtype(NULL
, cmd
);
739 .name
= talloc_strdup(cmd
, cmd_def
->name
),
745 for (i
= 0; ptr
&& i
< MP_CMD_MAX_ARGS
; i
++) {
746 while (ptr
[0] != ' ' && ptr
[0] != '\t' && ptr
[0] != '\0')
750 while (ptr
[0] == ' ' || ptr
[0] == '\t')
752 if (ptr
[0] == '\0' || ptr
[0] == '#')
754 cmd
->args
[i
].type
= cmd_def
->args
[i
].type
;
755 switch (cmd_def
->args
[i
].type
) {
758 cmd
->args
[i
].v
.i
= atoi(ptr
);
760 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Command %s: argument %d "
761 "isn't an integer.\n", cmd_def
->name
, i
+ 1);
765 case MP_CMD_ARG_FLOAT
:
767 cmd
->args
[i
].v
.f
= atof(ptr
);
769 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Command %s: argument %d "
770 "isn't a float.\n", cmd_def
->name
, i
+ 1);
774 case MP_CMD_ARG_STRING
: {
776 if (*ptr
== '\'' || *ptr
== '"')
778 char *argptr
= talloc_size(cmd
, strlen(ptr
) + 1);
779 cmd
->args
[i
].v
.s
= argptr
;
784 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Command %s: argument %d is "
785 "unterminated.\n", cmd_def
->name
, i
+ 1);
802 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Unknown argument %d\n", i
);
808 for (min_args
= 0; min_args
< MP_CMD_MAX_ARGS
809 && cmd_def
->args
[min_args
].type
810 && !cmd_def
->args
[min_args
].optional
; min_args
++);
811 if (cmd
->nargs
< min_args
) {
812 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Command \"%s\" requires at least %d "
813 "arguments, we found only %d so far.\n", cmd_def
->name
,
814 min_args
, cmd
->nargs
);
818 for (; i
< MP_CMD_MAX_ARGS
&& cmd_def
->args
[i
].type
; i
++) {
819 memcpy(&cmd
->args
[i
], &cmd_def
->args
[i
], sizeof(struct mp_cmd_arg
));
820 if (cmd_def
->args
[i
].type
== MP_CMD_ARG_STRING
821 && cmd_def
->args
[i
].v
.s
!= NULL
)
822 cmd
->args
[i
].v
.s
= talloc_strdup(cmd
, cmd_def
->args
[i
].v
.s
);
825 if (i
< MP_CMD_MAX_ARGS
)
826 cmd
->args
[i
].type
= 0;
835 #define MP_CMD_MAX_SIZE 4096
837 static int read_cmd(struct input_fd
*mp_fd
, char **ret
)
842 // Allocate the buffer if it doesn't exist
843 if (!mp_fd
->buffer
) {
844 mp_fd
->buffer
= talloc_size(NULL
, MP_CMD_MAX_SIZE
);
846 mp_fd
->size
= MP_CMD_MAX_SIZE
;
849 // Get some data if needed/possible
850 while (!mp_fd
->got_cmd
&& !mp_fd
->eof
&& (mp_fd
->size
- mp_fd
->pos
> 1)) {
851 int r
= mp_fd
->read_func
.cmd(mp_fd
->fd
, mp_fd
->buffer
+ mp_fd
->pos
,
852 mp_fd
->size
- 1 - mp_fd
->pos
);
858 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Error while reading "
859 "command file descriptor %d: %s\n",
860 mp_fd
->fd
, strerror(errno
));
861 case MP_INPUT_NOTHING
:
880 mp_fd
->buffer
[mp_fd
->pos
] = '\0';
881 end
= strchr(mp_fd
->buffer
, '\r');
884 end
= strchr(mp_fd
->buffer
, '\n');
887 // If buffer is full we must drop all until the next \n
888 if (mp_fd
->size
- mp_fd
->pos
<= 1) {
889 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Command buffer of file "
890 "descriptor %d is full: dropping content.\n",
897 // We already have a cmd : set the got_cmd flag
903 l
= end
- mp_fd
->buffer
;
905 // Not dropping : put the cmd in ret
907 *ret
= talloc_strndup(NULL
, mp_fd
->buffer
, l
);
911 memmove(mp_fd
->buffer
, end
+ 1, mp_fd
->pos
);
917 return MP_INPUT_NOTHING
;
920 static int default_cmd_func(int fd
, char *buf
, int l
)
923 int r
= read(fd
, buf
, l
);
928 else if (errno
== EAGAIN
)
929 return MP_INPUT_NOTHING
;
930 return MP_INPUT_ERROR
;
937 static int read_wakeup(void *ctx
, int fd
)
940 read(fd
, buf
, sizeof(buf
));
941 return MP_INPUT_NOTHING
;
945 static struct cmd_bind_section
*get_bind_section(struct input_ctx
*ictx
,
948 struct cmd_bind_section
*bind_section
= ictx
->cmd_bind_sections
;
950 while (bind_section
) {
951 if (bstrcmp(section
, bind_section
->section
) == 0)
953 if (bind_section
->next
== NULL
)
955 bind_section
= bind_section
->next
;
958 bind_section
->next
= talloc_ptrtype(ictx
, bind_section
->next
);
959 bind_section
= bind_section
->next
;
961 ictx
->cmd_bind_sections
= talloc_ptrtype(ictx
, ictx
->cmd_bind_sections
);
962 bind_section
= ictx
->cmd_bind_sections
;
964 bind_section
->cmd_binds
= NULL
;
965 bind_section
->section
= bstrdup(bind_section
, section
);
966 bind_section
->next
= NULL
;
970 static char *find_bind_for_key(struct input_ctx
*ictx
, struct bstr section
,
975 struct cmd_bind_section
*s
= get_bind_section(ictx
, section
);
976 struct cmd_bind
*binds
= s
->cmd_binds
;
980 for (j
= 0; binds
[j
].cmd
!= NULL
; j
++) {
982 for (s
= 0; s
< n
&& binds
[j
].input
[s
] != 0; s
++) {
983 if (binds
[j
].input
[s
] != keys
[s
]) {
988 if (found
&& binds
[j
].input
[s
] == 0 && s
== n
)
994 static mp_cmd_t
*get_cmd_from_keys(struct input_ctx
*ictx
, int n
, int *keys
)
996 char *cmd
= find_bind_for_key(ictx
, ictx
->section
, n
, keys
);
998 cmd
= find_bind_for_key(ictx
, bstr("default"), n
, keys
);
1000 char *key_buf
= get_key_combo_name(keys
, n
);
1001 mp_tmsg(MSGT_INPUT
, MSGL_WARN
,
1002 "No bind found for key '%s'.\n", key_buf
);
1003 talloc_free(key_buf
);
1006 if (strcmp(cmd
, "ignore") == 0)
1008 struct mp_cmd
*ret
= mp_input_parse_cmd(cmd
);
1010 char *key_buf
= get_key_combo_name(keys
, n
);
1011 mp_tmsg(MSGT_INPUT
, MSGL_ERR
,
1012 "Invalid command for bound key '%s': '%s'\n", key_buf
, cmd
);
1013 talloc_free(key_buf
);
1019 static mp_cmd_t
*interpret_key(struct input_ctx
*ictx
, int code
)
1024 /* On normal keyboards shift changes the character code of non-special
1025 * keys, so don't count the modifier separately for those. In other words
1026 * we want to have "a" and "A" instead of "a" and "Shift+A"; but a separate
1027 * shift modifier is still kept for special keys like arrow keys.
1029 int unmod
= code
& ~KEY_MODIFIER_MASK
;
1030 if (unmod
>= 32 && unmod
< MP_KEY_BASE
)
1031 code
&= ~KEY_MODIFIER_SHIFT
;
1033 if (code
& MP_KEY_DOWN
) {
1034 if (ictx
->num_key_down
>= MP_MAX_KEY_DOWN
) {
1035 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Too many key down events "
1036 "at the same time\n");
1039 code
&= ~MP_KEY_DOWN
;
1040 // Check if we don't already have this key as pushed
1041 for (j
= 0; j
< ictx
->num_key_down
; j
++) {
1042 if (ictx
->key_down
[j
] == code
)
1045 if (j
!= ictx
->num_key_down
)
1047 ictx
->key_down
[ictx
->num_key_down
] = code
;
1048 ictx
->num_key_down
++;
1049 ictx
->last_key_down
= GetTimer();
1053 // button released or press of key with no separate down/up events
1054 for (j
= 0; j
< ictx
->num_key_down
; j
++) {
1055 if (ictx
->key_down
[j
] == code
)
1058 bool doubleclick
= code
>= MOUSE_BTN0_DBL
&& code
< MOUSE_BTN_DBL_END
;
1060 int btn
= code
- MOUSE_BTN0_DBL
+ MOUSE_BTN0
;
1061 if (!ictx
->num_key_down
1062 || ictx
->key_down
[ictx
->num_key_down
- 1] != btn
)
1064 j
= ictx
->num_key_down
- 1;
1065 ictx
->key_down
[j
] = code
;
1067 if (j
== ictx
->num_key_down
) { // was not already down; add temporarily
1068 if (ictx
->num_key_down
> MP_MAX_KEY_DOWN
) {
1069 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Too many key down events "
1070 "at the same time\n");
1073 ictx
->key_down
[ictx
->num_key_down
] = code
;
1074 ictx
->num_key_down
++;
1075 ictx
->last_key_down
= 1;
1077 // Interpret only maximal point of multibutton event
1078 ret
= ictx
->last_key_down
?
1079 get_cmd_from_keys(ictx
, ictx
->num_key_down
, ictx
->key_down
)
1082 ictx
->key_down
[j
] = code
- MOUSE_BTN0_DBL
+ MOUSE_BTN0
;
1086 if (j
+ 1 < ictx
->num_key_down
)
1087 memmove(&ictx
->key_down
[j
], &ictx
->key_down
[j
+ 1],
1088 (ictx
->num_key_down
- (j
+ 1)) * sizeof(int));
1089 ictx
->num_key_down
--;
1090 ictx
->last_key_down
= 0;
1091 ictx
->ar_state
= -1;
1092 mp_cmd_free(ictx
->ar_cmd
);
1093 ictx
->ar_cmd
= NULL
;
1097 static mp_cmd_t
*check_autorepeat(struct input_ctx
*ictx
)
1099 // No input : autorepeat ?
1100 if (ictx
->ar_rate
> 0 && ictx
->ar_state
>= 0 && ictx
->num_key_down
> 0
1101 && !(ictx
->key_down
[ictx
->num_key_down
- 1] & MP_NO_REPEAT_KEY
)) {
1102 unsigned int t
= GetTimer();
1103 // First time : wait delay
1104 if (ictx
->ar_state
== 0
1105 && (t
- ictx
->last_key_down
) >= ictx
->ar_delay
* 1000) {
1106 ictx
->ar_cmd
= get_cmd_from_keys(ictx
, ictx
->num_key_down
,
1108 if (!ictx
->ar_cmd
) {
1109 ictx
->ar_state
= -1;
1114 return mp_cmd_clone(ictx
->ar_cmd
);
1115 // Then send rate / sec event
1116 } else if (ictx
->ar_state
== 1
1117 && (t
- ictx
->last_ar
) >= 1000000 / ictx
->ar_rate
) {
1119 return mp_cmd_clone(ictx
->ar_cmd
);
1125 void mp_input_feed_key(struct input_ctx
*ictx
, int code
)
1127 ictx
->got_new_events
= true;
1128 if (code
== MP_INPUT_RELEASE_ALL
) {
1129 memset(ictx
->key_down
, 0, sizeof(ictx
->key_down
));
1130 ictx
->num_key_down
= 0;
1131 ictx
->last_key_down
= 0;
1134 struct mp_cmd
*cmd
= interpret_key(ictx
, code
);
1137 struct cmd_queue
*queue
= &ictx
->key_cmd_queue
;
1138 if (queue
->num_cmds
>= ictx
->key_fifo_size
&&
1139 (!is_abort_cmd(cmd
->id
) || queue
->num_abort_cmds
)) {
1143 queue_add(queue
, cmd
, false);
1146 static void read_cmd_fd(struct input_ctx
*ictx
, struct input_fd
*cmd_fd
)
1150 while ((r
= read_cmd(cmd_fd
, &text
)) >= 0) {
1151 ictx
->got_new_events
= true;
1152 struct mp_cmd
*cmd
= mp_input_parse_cmd(text
);
1155 queue_add(&ictx
->control_cmd_queue
, cmd
, false);
1156 if (!cmd_fd
->got_cmd
)
1159 if (r
== MP_INPUT_ERROR
)
1160 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Error on command file descriptor %d\n",
1162 else if (r
== MP_INPUT_DEAD
)
1163 cmd_fd
->dead
= true;
1166 static void read_key_fd(struct input_ctx
*ictx
, struct input_fd
*key_fd
)
1168 int code
= key_fd
->read_func
.key(key_fd
->ctx
, key_fd
->fd
);
1169 if (code
>= 0 || code
== MP_INPUT_RELEASE_ALL
) {
1170 mp_input_feed_key(ictx
, code
);
1174 if (code
== MP_INPUT_ERROR
)
1175 mp_tmsg(MSGT_INPUT
, MSGL_ERR
,
1176 "Error on key input file descriptor %d\n", key_fd
->fd
);
1177 else if (code
== MP_INPUT_DEAD
) {
1178 mp_tmsg(MSGT_INPUT
, MSGL_ERR
,
1179 "Dead key input on file descriptor %d\n", key_fd
->fd
);
1180 key_fd
->dead
= true;
1185 * \param time time to wait at most for an event in milliseconds
1187 static void read_events(struct input_ctx
*ictx
, int time
)
1189 ictx
->got_new_events
= false;
1190 struct input_fd
*key_fds
= ictx
->key_fds
;
1191 struct input_fd
*cmd_fds
= ictx
->cmd_fds
;
1192 for (int i
= 0; i
< ictx
->num_key_fd
; i
++)
1193 if (key_fds
[i
].dead
) {
1194 mp_input_rm_key_fd(ictx
, key_fds
[i
].fd
);
1196 } else if (time
&& key_fds
[i
].no_select
)
1197 read_key_fd(ictx
, &key_fds
[i
]);
1198 for (int i
= 0; i
< ictx
->num_cmd_fd
; i
++)
1199 if (cmd_fds
[i
].dead
|| cmd_fds
[i
].eof
) {
1200 mp_input_rm_cmd_fd(ictx
, cmd_fds
[i
].fd
);
1202 } else if (time
&& cmd_fds
[i
].no_select
)
1203 read_cmd_fd(ictx
, &cmd_fds
[i
]);
1204 if (ictx
->got_new_events
)
1206 #ifdef HAVE_POSIX_SELECT
1210 for (int i
= 0; i
< ictx
->num_key_fd
; i
++) {
1211 if (key_fds
[i
].no_select
)
1213 if (key_fds
[i
].fd
> max_fd
)
1214 max_fd
= key_fds
[i
].fd
;
1215 FD_SET(key_fds
[i
].fd
, &fds
);
1217 for (int i
= 0; i
< ictx
->num_cmd_fd
; i
++) {
1218 if (cmd_fds
[i
].no_select
)
1220 if (cmd_fds
[i
].fd
> max_fd
)
1221 max_fd
= cmd_fds
[i
].fd
;
1222 FD_SET(cmd_fds
[i
].fd
, &fds
);
1224 struct timeval tv
, *time_val
;
1226 tv
.tv_sec
= time
/ 1000;
1227 tv
.tv_usec
= (time
% 1000) * 1000;
1231 if (select(max_fd
+ 1, &fds
, NULL
, NULL
, time_val
) < 0) {
1233 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Select error: %s\n",
1239 usec_sleep(time
* 1000);
1243 for (int i
= 0; i
< ictx
->num_key_fd
; i
++) {
1244 #ifdef HAVE_POSIX_SELECT
1245 if (!key_fds
[i
].no_select
&& !FD_ISSET(key_fds
[i
].fd
, &fds
))
1248 read_key_fd(ictx
, &key_fds
[i
]);
1251 for (int i
= 0; i
< ictx
->num_cmd_fd
; i
++) {
1252 #ifdef HAVE_POSIX_SELECT
1253 if (!cmd_fds
[i
].no_select
&& !FD_ISSET(cmd_fds
[i
].fd
, &fds
))
1256 read_cmd_fd(ictx
, &cmd_fds
[i
]);
1260 /* To support blocking file descriptors we don't loop the read over
1261 * every source until it's known to be empty. Instead we use this wrapper
1262 * to run select() again.
1264 static void read_all_fd_events(struct input_ctx
*ictx
, int time
)
1267 read_events(ictx
, time
);
1268 if (!ictx
->got_new_events
)
1274 static void read_all_events(struct input_ctx
*ictx
, int time
)
1277 cocoa_events_read_all_events(ictx
, time
);
1279 read_all_fd_events(ictx
, time
);
1283 int mp_input_queue_cmd(struct input_ctx
*ictx
, mp_cmd_t
*cmd
)
1285 ictx
->got_new_events
= true;
1288 queue_add(&ictx
->control_cmd_queue
, cmd
, true);
1293 * \param peek_only when set, the returned command stays in the queue.
1294 * Do not free the returned cmd whe you set this!
1296 mp_cmd_t
*mp_input_get_cmd(struct input_ctx
*ictx
, int time
, int peek_only
)
1298 if (async_quit_request
)
1299 return mp_input_parse_cmd("quit 1");
1301 if (ictx
->control_cmd_queue
.num_cmds
|| ictx
->key_cmd_queue
.num_cmds
)
1303 read_all_events(ictx
, time
);
1305 struct cmd_queue
*queue
= &ictx
->control_cmd_queue
;
1306 if (!queue
->num_cmds
)
1307 queue
= &ictx
->key_cmd_queue
;
1308 if (!queue
->num_cmds
) {
1309 ret
= check_autorepeat(ictx
);
1312 queue_add(queue
, ret
, false);
1322 void mp_cmd_free(mp_cmd_t
*cmd
)
1327 mp_cmd_t
*mp_cmd_clone(mp_cmd_t
*cmd
)
1332 ret
= talloc_memdup(NULL
, cmd
, sizeof(mp_cmd_t
));
1333 ret
->name
= talloc_strdup(ret
, cmd
->name
);
1334 for (i
= 0; i
< MP_CMD_MAX_ARGS
&& cmd
->args
[i
].type
; i
++) {
1335 if (cmd
->args
[i
].type
== MP_CMD_ARG_STRING
&& cmd
->args
[i
].v
.s
!= NULL
)
1336 ret
->args
[i
].v
.s
= talloc_strdup(ret
, cmd
->args
[i
].v
.s
);
1342 int mp_input_get_key_from_name(const char *name
)
1346 while ((p
= strchr(name
, '+'))) {
1347 for (struct key_name
*m
= modifier_names
; m
->name
; m
++)
1348 if (!bstrcasecmp(bstr(m
->name
),
1349 (struct bstr
){(char *)name
, p
- name
})) {
1350 modifiers
|= m
->key
;
1353 if (!strcmp(name
, "+"))
1354 return '+' + modifiers
;
1360 struct bstr bname
= bstr(name
);
1363 int code
= bstr_decode_utf8(bname
, &rest
);
1364 if (code
>= 0 && rest
.len
== 0)
1365 return code
+ modifiers
;
1367 if (bstr_startswith0(bname
, "0x"))
1368 return strtol(name
, NULL
, 16) + modifiers
;
1370 for (int i
= 0; key_names
[i
].name
!= NULL
; i
++) {
1371 if (strcasecmp(key_names
[i
].name
, name
) == 0)
1372 return key_names
[i
].key
+ modifiers
;
1378 static int get_input_from_name(char *name
, int *keys
)
1385 for (end
= strchr(ptr
, '-'); ptr
!= NULL
; end
= strchr(ptr
, '-')) {
1386 if (end
&& end
[1] != '\0') {
1391 keys
[n
] = mp_input_get_key_from_name(ptr
);
1395 if (end
&& end
[1] != '\0' && n
< MP_MAX_KEY_DOWN
)
1404 static void bind_keys(struct input_ctx
*ictx
,
1405 const int keys
[MP_MAX_KEY_DOWN
+ 1], struct bstr cmd
)
1408 struct cmd_bind
*bind
= NULL
;
1409 struct cmd_bind_section
*bind_section
= NULL
;
1410 struct bstr section
= bstr("default");
1413 if (bstr_startswith0(cmd
, "{") && (idx
= bstrchr(cmd
, '}')) > 0) {
1414 section
= bstr_strip(bstr_splice(cmd
, 1, idx
));
1415 cmd
= bstr_strip(bstr_cut(cmd
, idx
+ 1));
1417 bind_section
= get_bind_section(ictx
, section
);
1419 if (bind_section
->cmd_binds
) {
1420 for (i
= 0; bind_section
->cmd_binds
[i
].cmd
!= NULL
; i
++) {
1421 for (j
= 0; bind_section
->cmd_binds
[i
].input
[j
] == keys
[j
] && keys
[j
] != 0; j
++)
1423 if (keys
[j
] == 0 && bind_section
->cmd_binds
[i
].input
[j
] == 0 ) {
1424 bind
= &bind_section
->cmd_binds
[i
];
1431 bind_section
->cmd_binds
= talloc_realloc(bind_section
,
1432 bind_section
->cmd_binds
,
1433 struct cmd_bind
, i
+ 2);
1434 memset(&bind_section
->cmd_binds
[i
], 0, 2 * sizeof(struct cmd_bind
));
1435 bind
= &bind_section
->cmd_binds
[i
];
1437 talloc_free(bind
->cmd
);
1438 bind
->cmd
= bstrdup0(bind_section
->cmd_binds
, cmd
);
1439 memcpy(bind
->input
, keys
, (MP_MAX_KEY_DOWN
+ 1) * sizeof(int));
1442 static int parse_config(struct input_ctx
*ictx
, struct bstr data
)
1444 int n_binds
= 0, keys
[MP_MAX_KEY_DOWN
+ 1];
1447 struct bstr line
= bstr_strip(bstr_getline(data
, &data
));
1448 if (line
.len
== 0 || bstr_startswith0(line
, "#"))
1450 struct bstr command
;
1451 // Find the key name starting a line
1452 struct bstr keyname
= bstr_split(line
, WHITESPACE
, &command
);
1453 command
= bstr_strip(command
);
1454 if (command
.len
== 0) {
1455 mp_tmsg(MSGT_INPUT
, MSGL_ERR
,
1456 "Unfinished key binding: %.*s\n", BSTR_P(line
));
1459 char *name
= bstrdup0(NULL
, keyname
);
1460 if (!get_input_from_name(name
, keys
)) {
1462 mp_tmsg(MSGT_INPUT
, MSGL_ERR
,
1463 "Unknown key '%.*s'\n", BSTR_P(keyname
));
1467 bind_keys(ictx
, keys
, command
);
1474 static int parse_config_file(struct input_ctx
*ictx
, char *file
)
1476 stream_t
*s
= open_stream(file
, ictx
->opts
, NULL
);
1478 mp_msg(MSGT_INPUT
, MSGL_V
, "Can't open input config file %s.\n", file
);
1481 struct bstr res
= stream_read_complete(s
, NULL
, 1000000, 0);
1484 mp_msg(MSGT_INPUT
, MSGL_ERR
, "Could not read input config file %s.\n",
1488 mp_msg(MSGT_INPUT
, MSGL_V
, "Parsing input config file %s\n", file
);
1489 int n_binds
= parse_config(ictx
, res
);
1490 talloc_free(res
.start
);
1491 mp_msg(MSGT_INPUT
, MSGL_V
, "Input config file %s parsed: %d binds\n",
1496 void mp_input_set_section(struct input_ctx
*ictx
, char *name
)
1498 talloc_free(ictx
->section
.start
);
1499 ictx
->section
= bstrdup(ictx
, name
? bstr(name
) : bstr("default"));
1502 struct input_ctx
*mp_input_init(struct MPOpts
*opts
)
1504 struct input_conf
*input_conf
= &opts
->input
;
1505 struct input_ctx
*ictx
= talloc_ptrtype(NULL
, ictx
);
1506 *ictx
= (struct input_ctx
){
1507 .key_fifo_size
= input_conf
->key_fifo_size
,
1509 .ar_delay
= input_conf
->ar_delay
,
1510 .ar_rate
= input_conf
->ar_rate
,
1511 .section
= bstrdup(ictx
, bstr("default")),
1512 .wakeup_pipe
= {-1, -1},
1517 cocoa_events_init(ictx
, read_all_fd_events
);
1521 long ret
= pipe(ictx
->wakeup_pipe
);
1522 for (int i
= 0; i
< 2 && ret
>= 0; i
++) {
1523 ret
= fcntl(ictx
->wakeup_pipe
[i
], F_GETFL
);
1526 ret
= fcntl(ictx
->wakeup_pipe
[i
], F_SETFL
, ret
| O_NONBLOCK
);
1529 mp_msg(MSGT_INPUT
, MSGL_ERR
,
1530 "Failed to initialize wakeup pipe: %s\n", strerror(errno
));
1532 mp_input_add_key_fd(ictx
, ictx
->wakeup_pipe
[0], true, read_wakeup
,
1536 if (input_conf
->default_bindings
)
1537 parse_config(ictx
, builtin_input_conf
);
1540 char *config_file
= input_conf
->config_file
;
1541 file
= config_file
[0] != '/' ? get_path(config_file
) : config_file
;
1543 if (file
&& !parse_config_file(ictx
, file
)) {
1544 // free file if it was allocated by get_path(),
1545 // before it gets overwritten
1546 if (file
!= config_file
)
1548 // Try global conf dir
1549 file
= MPLAYER_CONFDIR
"/input.conf";
1550 if (!parse_config_file(ictx
, file
))
1551 mp_msg(MSGT_INPUT
, MSGL_V
, "Falling back on default (hardcoded) "
1554 // free file if it was allocated by get_path()
1555 if (file
!= config_file
)
1559 #ifdef CONFIG_JOYSTICK
1560 if (input_conf
->use_joystick
) {
1561 int fd
= mp_input_joystick_init(input_conf
->js_dev
);
1563 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Can't init input joystick\n");
1565 mp_input_add_key_fd(ictx
, fd
, 1, mp_input_joystick_read
,
1571 if (input_conf
->use_lirc
) {
1572 int fd
= mp_input_lirc_init();
1574 mp_input_add_cmd_fd(ictx
, fd
, 0, mp_input_lirc_read
,
1575 mp_input_lirc_close
);
1580 if (input_conf
->use_lircc
) {
1581 int fd
= lircc_init("mplayer", NULL
);
1583 mp_input_add_cmd_fd(ictx
, fd
, 1, NULL
, lircc_cleanup
);
1587 #ifdef CONFIG_APPLE_REMOTE
1588 if (input_conf
->use_ar
) {
1589 if (mp_input_ar_init() < 0)
1590 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Can't init Apple Remote.\n");
1592 mp_input_add_key_fd(ictx
, -1, 0, mp_input_ar_read
,
1593 mp_input_ar_close
, NULL
);
1597 #ifdef CONFIG_APPLE_IR
1598 if (input_conf
->use_ar
) {
1599 int fd
= mp_input_appleir_init(input_conf
->ar_dev
);
1601 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Can't init Apple Remote.\n");
1603 mp_input_add_key_fd(ictx
, fd
, 1, mp_input_appleir_read
,
1608 if (input_conf
->in_file
) {
1609 int mode
= O_RDONLY
;
1611 // Use RDWR for FIFOs to ensure they stay open over multiple accesses.
1612 // Note that on Windows due to how the API works, using RDONLY should
1615 if (stat(input_conf
->in_file
, &st
) == 0 && S_ISFIFO(st
.st_mode
))
1619 int in_file_fd
= open(input_conf
->in_file
, mode
);
1620 if (in_file_fd
>= 0)
1621 mp_input_add_cmd_fd(ictx
, in_file_fd
, 1, NULL
, close
);
1623 mp_tmsg(MSGT_INPUT
, MSGL_ERR
, "Can't open %s: %s\n",
1624 input_conf
->in_file
, strerror(errno
));
1630 void mp_input_uninit(struct input_ctx
*ictx
)
1633 cocoa_events_uninit();
1639 for (int i
= 0; i
< ictx
->num_key_fd
; i
++) {
1640 if (ictx
->key_fds
[i
].close_func
)
1641 ictx
->key_fds
[i
].close_func(ictx
->key_fds
[i
].fd
);
1643 for (int i
= 0; i
< ictx
->num_cmd_fd
; i
++) {
1644 if (ictx
->cmd_fds
[i
].close_func
)
1645 ictx
->cmd_fds
[i
].close_func(ictx
->cmd_fds
[i
].fd
);
1647 for (int i
= 0; i
< 2; i
++)
1648 if (ictx
->wakeup_pipe
[i
] != -1)
1649 close(ictx
->wakeup_pipe
[i
]);
1653 void mp_input_register_options(m_config_t
*cfg
)
1655 m_config_register_options(cfg
, mp_input_opts
);
1658 static int print_key_list(m_option_t
*cfg
, char *optname
, char *optparam
)
1661 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1662 for (i
= 0; key_names
[i
].name
!= NULL
; i
++)
1663 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%s\n", key_names
[i
].name
);
1667 static int print_cmd_list(m_option_t
*cfg
, char *optname
, char *optparam
)
1669 const mp_cmd_t
*cmd
;
1673 for (i
= 0; (cmd
= &mp_cmds
[i
])->name
!= NULL
; i
++) {
1674 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "%-20.20s", cmd
->name
);
1675 for (j
= 0; j
< MP_CMD_MAX_ARGS
&& cmd
->args
[j
].type
; j
++) {
1676 switch (cmd
->args
[j
].type
) {
1677 case MP_CMD_ARG_INT
:
1680 case MP_CMD_ARG_FLOAT
:
1683 case MP_CMD_ARG_STRING
:
1689 if (cmd
->args
[j
].optional
)
1690 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " [%s]", type
);
1692 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, " %s", type
);
1694 mp_msg(MSGT_CFGPARSER
, MSGL_INFO
, "\n");
1699 void mp_input_wakeup(struct input_ctx
*ictx
)
1701 if (ictx
->wakeup_pipe
[1] >= 0)
1702 write(ictx
->wakeup_pipe
[1], &(char){0}, 1);
1706 * \param time time to wait for an interruption in milliseconds
1708 int mp_input_check_interrupt(struct input_ctx
*ictx
, int time
)
1710 for (int i
= 0; ; i
++) {
1711 if (async_quit_request
|| ictx
->key_cmd_queue
.num_abort_cmds
||
1712 ictx
->control_cmd_queue
.num_abort_cmds
) {
1713 mp_tmsg(MSGT_INPUT
, MSGL_WARN
, "Received command to move to "
1714 "another file. Aborting current processing.\n");
1719 read_all_events(ictx
, time
);