]> git.sesse.net Git - kdenlive/blob - src/jogshuttle.cpp
clean thread shutdown implemented in ShuttleThread
[kdenlive] / src / jogshuttle.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *   Based on code by Arendt David <admin@prnet.org>                       *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21
22 #include "jogshuttle.h"
23
24 #include <KDebug>
25 #include <kde_file.h>
26
27 #include <QApplication>
28 #include <QEvent>
29
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <unistd.h>
33 #include <fcntl.h>
34 #include <linux/input.h>
35
36 #define DELAY 10
37
38 #define KEY 1
39 #define KEY1 256
40 #define KEY2 257
41 #define KEY3 258
42 #define KEY4 259
43 #define KEY5 260
44 #define KEY6 261
45 #define KEY7 262
46 #define KEY8 263
47 #define KEY9 264
48 #define KEY10 265
49 #define KEY11 266
50 #define KEY12 267
51 #define KEY13 268
52 #define KEY14 269
53 #define KEY15 270
54
55 // Constants for the returned events when reading them from the device
56 #define JOGSHUTTLE 2
57 #define JOG 7
58 #define SHUTTLE 8
59
60 // Constants for the signals sent.
61 #define JOG_BACK1 10001
62 #define JOG_FWD1 10002
63 #define KEY_EVENT_OFFSET 20000
64
65 // middle value for shuttle, will be +/-MAX_SHUTTLE_RANGE
66 #define JOG_STOP 10020
67 #define MAX_SHUTTLE_RANGE 7
68
69 void ShuttleThread::init(QObject *parent, QString device)
70 {
71     m_parent = parent;
72     m_device = device;
73     stop_me = false;
74     m_isWorking = false;
75     shuttlevalue = 0xffff;
76     shuttlecounter = 0;
77     jogvalue = 0xffff;
78 }
79
80 bool ShuttleThread::isWorking()
81 {
82     return m_isWorking;
83 }
84
85 void ShuttleThread::run()
86 {
87     kDebug() << "-------  STARTING SHUTTLE: " << m_device;
88     /* open file descriptor */
89     const int fd = KDE_open((char *) m_device.toUtf8().data(), O_RDONLY);
90     if (fd < 0) {
91         fprintf(stderr, "Can't open Jog Shuttle FILE DESCRIPTOR\n");
92         return;
93     }
94
95     EV ev;
96     if (ioctl(fd, EVIOCGRAB, 1) < 0) {
97         fprintf(stderr, "Can't get exclusive access on  Jog Shuttle FILE DESCRIPTOR\n");
98         close(fd);
99         return;
100     }
101
102     fd_set         readset;
103     struct timeval timeout;
104
105     int num_warnings = 0;
106     int result, iof = -1;
107
108     /* enter thread loop */
109     while (!stop_me) {
110         /* reset the read set */
111         FD_ZERO(&readset);
112         FD_SET(fd, &readset);
113
114         /* reinit the timeout structure */
115         timeout.tv_sec  = 0;
116         timeout.tv_usec = 300000; /* 300 ms */
117
118         /* do the select */
119         result = select(fd+1, &readset, NULL, NULL, &timeout);
120
121         /* see if there was an error or timeout */
122         if (result < 0) {
123 //          perror("select failed");
124         } else if (result == 0) {
125 //          puts("TIMEOUT");
126         } else {
127             /* we have input */
128             if (FD_ISSET(fd, &readset)) {
129                 /* get fd settings */
130                 if ((iof = fcntl(fd, F_GETFL, 0)) != -1) {
131                         /* set fd non blocking */
132                         fcntl(fd, F_SETFL, iof | O_NONBLOCK);
133                         /* read input */
134                                         if (read(fd, &ev, sizeof(ev)) < 0) {
135                                                 if (num_warnings % 10000 == 0)
136                                                         /* should not happen cause select called before */
137                                                         fprintf(stderr, "Failed to read event from Jog Shuttle FILE DESCRIPTOR (repeated %d times)\n", num_warnings + 1);
138                                                 num_warnings++;
139                                         }
140
141                                         /* restore settings */
142                                         if (iof != -1) {
143                                                 fcntl(fd, F_SETFL, iof);
144                                         }
145                                         /* process event */
146                                         handle_event(ev);
147                 } else {
148                     fprintf(stderr, "Can't set Jog Shuttle FILE DESCRIPTOR to O_NONBLOCK\n");
149                     stop_me = true;
150                 }
151             }
152         }
153     }
154
155     /* close the handle and return thread */
156     close(fd);
157 }
158
159 void ShuttleThread::handle_event(EV ev)
160 {
161     switch (ev.type) {
162     case KEY :
163         key(ev.code, ev.value);
164         break;
165     case JOGSHUTTLE :
166         if (ev.code == JOG)
167             jog(ev.value);
168         if (ev.code == SHUTTLE)
169             shuttle(ev.value);
170         break;
171     }
172 }
173
174 void ShuttleThread::key(unsigned short code, unsigned int value)
175 {
176     if (value == 0) {
177         // Button release (ignored)
178         return;
179     }
180
181     // Check key index
182     code -= KEY1 - 1;
183     if (code > 16)
184         return;
185
186     kDebug() << "Button PRESSED: " << code;
187     QApplication::postEvent(m_parent, new QEvent((QEvent::Type)(KEY_EVENT_OFFSET + code)));
188
189 }
190
191 void ShuttleThread::shuttle(int value)
192 {
193     //gettimeofday( &last_shuttle, 0 );
194     //need_synthetic_shuttle = value != 0;
195
196     if (value == shuttlevalue) {
197         shuttlecounter = 1;
198         return;
199     }
200
201     if (value > MAX_SHUTTLE_RANGE || value < -MAX_SHUTTLE_RANGE) {
202         fprintf(stderr, "Jog Shuttle returned value of %d (should be between -%d ad +%d)", value, MAX_SHUTTLE_RANGE, MAX_SHUTTLE_RANGE);
203         return;
204     }
205     shuttlevalue = value;
206     shuttlecounter = 1;
207     QApplication::postEvent(m_parent, new QEvent((QEvent::Type) (JOG_STOP + value)));
208 }
209
210 void ShuttleThread::jog(unsigned int value)
211 {
212     // generate a synthetic event for the shuttle going
213     // to the home position if we have not seen one recently.
214     //if (shuttlevalue != 0) {
215     //  QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_STOP));
216     //  shuttlevalue = 0;
217     //}
218
219     // This code takes care of wrapping around the limits of the jog dial number (it is represented as a single byte, hence
220     // wraps at the 0/255 boundary). I used 25 as the difference to make sure that even in heavy load, with the jog dial
221     // turning fast and we miss some events that we do not mistakenly reverse the direction.
222     // Note also that at least the Contour ShuttlePRO v2 does not send an event for the value 0, so at the wrap it will
223     // need 2 events to go forward. But that is nothing we can do about...
224     if (jogvalue != 0xffff) {
225         //fprintf(stderr, "value=%d jogvalue=%d\n", value, jogvalue);
226         bool wrap = abs(value - jogvalue) > 25;
227         bool rewind = value < jogvalue;
228         bool forward = value > jogvalue;
229         if ((rewind && !wrap) || (forward && wrap))
230             QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_BACK1));
231         else if ((forward && !wrap) || (rewind && wrap))
232             QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_FWD1));
233         else if (!forward && !rewind && shuttlecounter > 2) {
234             // An event without changing the jog value is sent after each shuttle change.
235             // As the shuttle rest position does not get a shuttle event, only a non-position-changing jog event.
236             // Hence we stop on this when we see 2 non-position-changing jog events in a row.
237             shuttlecounter = 0;
238             QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_STOP));
239         }
240     }
241     jogvalue = value;
242     if (shuttlecounter > 0) shuttlecounter++;
243 }
244
245
246 JogShuttle::JogShuttle(QString device, QObject *parent) :
247         QObject(parent)
248 {
249     initDevice(device);
250 }
251
252 JogShuttle::~JogShuttle()
253 {
254         stopDevice();
255 }
256
257 void JogShuttle::initDevice(QString device)
258 {
259     if (m_shuttleProcess.isRunning()) {
260         if (device == m_shuttleProcess.m_device) return;
261         stopDevice();
262     }
263     m_shuttleProcess.init(this, device);
264     m_shuttleProcess.start(QThread::LowestPriority);
265 }
266
267 void JogShuttle::stopDevice()
268 {
269     if (m_shuttleProcess.isRunning()) {
270         /* the read fd is in blocking mode => stop_me is broken at the moment */
271         m_shuttleProcess.stop_me = true;
272         m_shuttleProcess.exit();
273         /* give the thread some time (ms) to shutdown */
274         m_shuttleProcess.wait(600);
275
276         /* if still running - do it in the hardcore way */
277         if (m_shuttleProcess.isRunning()) {
278                 m_shuttleProcess.terminate();
279             kDebug() << "/// terminate jogshuttle process\n";
280         }
281     }
282 }
283
284 void JogShuttle::customEvent(QEvent* e)
285 {
286     int code = e->type();
287
288     // Handle simple job events
289     switch (code) {
290     case JOG_BACK1:
291         emit jogBack();
292         return;
293     case JOG_FWD1:
294         emit jogForward();
295         return;
296     }
297
298     int shuttle_pos = code - JOG_STOP;
299     if (shuttle_pos >= -MAX_SHUTTLE_RANGE && shuttle_pos <= MAX_SHUTTLE_RANGE) {
300         emit shuttlePos(shuttle_pos);
301         return;
302     }
303
304     // we've got a key event.
305     //fprintf(stderr, "Firing button event for #%d\n", e->type() - KEY_EVENT_OFFSET); // DBG
306     emit button(e->type() - KEY_EVENT_OFFSET);
307 }
308
309
310
311 // #include "jogshuttle.moc"
312