glupload: Fix allocator leak
[platform/upstream/gstreamer.git] / tools / gst-play-kb.c
1 /* GStreamer command line playback testing utility - keyboard handling helpers
2  *
3  * Copyright (C) 2013 Tim-Philipp Müller <tim centricular net>
4  * Copyright (C) 2013 Centricular Ltd
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include "gst-play-kb.h"
27
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <string.h>
31
32 #ifdef G_OS_UNIX
33 #include <unistd.h>
34 #include <termios.h>
35 #endif
36
37 #ifdef G_OS_WIN32
38 #include <windows.h>
39 #include <io.h>
40 #endif
41
42 #include <gst/gst.h>
43
44 /* This is all not thread-safe, but doesn't have to be really */
45 static GstPlayKbFunc kb_callback;
46 static gpointer kb_callback_data;
47
48 #ifdef G_OS_UNIX
49 static struct termios term_settings;
50 static gboolean term_settings_saved = FALSE;
51 static gulong io_watch_id;
52
53 static gboolean
54 gst_play_kb_io_cb (GIOChannel * ioc, GIOCondition cond, gpointer user_data)
55 {
56   GIOStatus status;
57
58   if (cond & G_IO_IN) {
59     gchar buf[16] = { 0, };
60     gsize read;
61
62     status = g_io_channel_read_chars (ioc, buf, sizeof (buf) - 1, &read, NULL);
63     if (status == G_IO_STATUS_ERROR)
64       return FALSE;
65     if (status == G_IO_STATUS_NORMAL) {
66       if (kb_callback)
67         kb_callback (buf, kb_callback_data);
68     }
69   }
70
71   return TRUE;                  /* call us again */
72 }
73
74 gboolean
75 gst_play_kb_set_key_handler (GstPlayKbFunc kb_func, gpointer user_data)
76 {
77   GIOChannel *ioc;
78
79   if (!isatty (STDIN_FILENO)) {
80     GST_INFO ("stdin is not connected to a terminal");
81     return FALSE;
82   }
83
84   if (io_watch_id > 0) {
85     g_source_remove (io_watch_id);
86     io_watch_id = 0;
87   }
88
89   if (kb_func == NULL && term_settings_saved) {
90     /* restore terminal settings */
91     if (tcsetattr (STDIN_FILENO, TCSAFLUSH, &term_settings) == 0)
92       term_settings_saved = FALSE;
93     else
94       g_warning ("could not restore terminal attributes");
95
96     setvbuf (stdin, NULL, _IOLBF, 0);
97   }
98
99   if (kb_func != NULL) {
100     struct termios new_settings;
101
102     if (!term_settings_saved) {
103       if (tcgetattr (STDIN_FILENO, &term_settings) != 0) {
104         g_warning ("could not save terminal attributes");
105         return FALSE;
106       }
107       term_settings_saved = TRUE;
108
109       /* Echo off, canonical mode off, extended input processing off  */
110       new_settings = term_settings;
111       new_settings.c_lflag &= ~(ECHO | ICANON | IEXTEN);
112       new_settings.c_cc[VMIN] = 0;
113       new_settings.c_cc[VTIME] = 0;
114
115       if (tcsetattr (STDIN_FILENO, TCSAFLUSH, &new_settings) != 0) {
116         g_warning ("Could not set terminal state");
117         return FALSE;
118       }
119       setvbuf (stdin, NULL, _IONBF, 0);
120     }
121   }
122
123   ioc = g_io_channel_unix_new (STDIN_FILENO);
124
125   io_watch_id = g_io_add_watch_full (ioc, G_PRIORITY_DEFAULT, G_IO_IN,
126       (GIOFunc) gst_play_kb_io_cb, user_data, NULL);
127   g_io_channel_unref (ioc);
128
129   kb_callback = kb_func;
130   kb_callback_data = user_data;
131
132   return TRUE;
133 }
134
135 #elif defined(G_OS_WIN32)
136
137 static GSource *source = NULL;
138
139 static gboolean
140 gst_play_kb_source_cb (gpointer user_data)
141 {
142   HANDLE h_input = GetStdHandle (STD_INPUT_HANDLE);
143   INPUT_RECORD buffer;
144   DWORD n;
145
146   if (PeekConsoleInput (h_input, &buffer, 1, &n) && n == 1) {
147     ReadConsoleInput (h_input, &buffer, 1, &n);
148
149     if (!kb_callback)
150       return G_SOURCE_REMOVE;
151
152     if (buffer.EventType == KEY_EVENT && !buffer.Event.KeyEvent.bKeyDown) {
153       gchar key_val[2] = { 0 };
154
155       switch (buffer.Event.KeyEvent.wVirtualKeyCode) {
156         case VK_RIGHT:
157           kb_callback (GST_PLAY_KB_ARROW_RIGHT, kb_callback_data);
158           break;
159         case VK_LEFT:
160           kb_callback (GST_PLAY_KB_ARROW_LEFT, kb_callback_data);
161           break;
162         case VK_UP:
163           kb_callback (GST_PLAY_KB_ARROW_UP, kb_callback_data);
164           break;
165         case VK_DOWN:
166           kb_callback (GST_PLAY_KB_ARROW_DOWN, kb_callback_data);
167           break;
168         default:
169           key_val[0] = buffer.Event.KeyEvent.uChar.AsciiChar;
170           kb_callback (key_val, kb_callback_data);
171           break;
172       }
173     }
174   }
175
176   return G_SOURCE_CONTINUE;
177 }
178
179 gboolean
180 gst_play_kb_set_key_handler (GstPlayKbFunc kb_func, gpointer user_data)
181 {
182   gint fd = _fileno (stdin);
183
184   if (!_isatty (fd)) {
185     GST_INFO ("stdin is not connected to a terminal");
186     return FALSE;
187   }
188
189   if (source) {
190     g_source_destroy (source);
191     g_source_unref (source);
192     source = NULL;
193   }
194
195   if (kb_func) {
196     /* check input per 50 ms */
197     source = g_timeout_source_new (50);
198     g_source_set_callback (source,
199         (GSourceFunc) gst_play_kb_source_cb, NULL, NULL);
200     g_source_attach (source, NULL);
201   }
202
203   kb_callback = kb_func;
204   kb_callback_data = user_data;
205
206   return TRUE;
207 }
208
209 #else
210
211 gboolean
212 gst_play_kb_set_key_handler (GstPlayKbFunc key_func, gpointer user_data)
213 {
214   GST_FIXME ("Keyboard handling for this OS needs to be implemented");
215   return FALSE;
216 }
217
218 #endif /* !G_OS_UNIX */