]> git.sesse.net Git - kdenlive/blob - src/jogshuttle.cpp
jogshuttle.cpp: close() on error path [Coverity 7/14] by Mikko Rapeli
[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     shuttlechange = false;
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
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     EV ev;
95
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     int num_warnings = 0;
103     while (!stop_me) {
104         if (read(fd, &ev, sizeof(ev)) < 0) {
105             if (num_warnings % 10000 == 0)
106                 fprintf(stderr, "Failed to read event from Jog Shuttle FILE DESCRIPTOR (repeated %d times)\n", num_warnings + 1);
107             num_warnings++;
108         }
109         handle_event(ev);
110     }
111     close(fd);
112
113 }
114
115 void ShuttleThread::handle_event(EV ev)
116 {
117     switch (ev.type) {
118     case KEY :
119         key(ev.code, ev.value);
120         break;
121     case JOGSHUTTLE :
122         if (ev.code == JOG)
123             jog(ev.value);
124         if (ev.code == SHUTTLE)
125             shuttle(ev.value);
126         break;
127     }
128 }
129
130 void ShuttleThread::key(unsigned short code, unsigned int value)
131 {
132     if (value == 0) {
133         // Button release (ignored)
134         return;
135     }
136
137     // Check key index
138     code -= KEY1 - 1;
139     if (code > 16)
140         return;
141
142     kDebug() << "Button PRESSED: " << code;
143     QApplication::postEvent(m_parent, new QEvent((QEvent::Type)(KEY_EVENT_OFFSET + code)));
144
145 }
146
147 void ShuttleThread::shuttle(int value)
148 {
149     //gettimeofday( &last_shuttle, 0 );
150     //need_synthetic_shuttle = value != 0;
151
152     if (value == shuttlevalue)
153         return;
154
155     if (value > MAX_SHUTTLE_RANGE || value < -MAX_SHUTTLE_RANGE) {
156         fprintf(stderr, "Jog Shuttle returned value of %d (should be between -%d ad +%d)", value, MAX_SHUTTLE_RANGE, MAX_SHUTTLE_RANGE);
157         return;
158     }
159     shuttlevalue = value;
160     shuttlechange = true;
161     QApplication::postEvent(m_parent, new QEvent((QEvent::Type) (JOG_STOP + value)));
162 }
163
164 void ShuttleThread::jog(unsigned int value)
165 {
166     // generate a synthetic event for the shuttle going
167     // to the home position if we have not seen one recently.
168     //if (shuttlevalue != 0) {
169     //  QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_STOP));
170     //  shuttlevalue = 0;
171     //}
172
173     // This code takes care of wrapping around the limits of the jog dial number (it is represented as a single byte, hence
174     // wraps at the 0/255 boundary). I used 25 as the difference to make sure that even in heavy load, with the jog dial
175     // turning fast and we miss some events that we do not mistakenly reverse the direction.
176     // Note also that at least the Contour ShuttlePRO v2 does not send an event for the value 0, so at the wrap it will
177     // need 2 events to go forward. But that is nothing we can do about...
178     if (jogvalue != 0xffff) {
179         //fprintf(stderr, "value=%d jogvalue=%d\n", value, jogvalue);
180         bool wrap = abs(value - jogvalue) > 25;
181         bool rewind = value < jogvalue;
182         bool forward = value > jogvalue;
183         if ((rewind && !wrap) || (forward && wrap))
184             QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_BACK1));
185         else if ((forward && !wrap) || (rewind && wrap))
186             QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_FWD1));
187         else if (!forward && !rewind && !shuttlechange)
188             // An event without changing the jog value is sent after each shuttle change.
189             // As the shuttle rest position does not get a shuttle event, only a non-position-changing jog event.
190             // Hence we stop on this when we see 2 non-position-changing jog events in a row.
191             QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_STOP));
192     }
193     jogvalue = value;
194     shuttlechange = false;
195 }
196
197
198 JogShuttle::JogShuttle(QString device, QObject *parent) :
199         QObject(parent)
200 {
201     initDevice(device);
202 }
203
204 JogShuttle::~JogShuttle()
205 {
206     if (m_shuttleProcess.isRunning()) m_shuttleProcess.exit();
207 }
208
209 void JogShuttle::initDevice(QString device)
210 {
211     if (m_shuttleProcess.isRunning()) {
212         if (device == m_shuttleProcess.m_device) return;
213         stopDevice();
214     }
215     m_shuttleProcess.init(this, device);
216     m_shuttleProcess.start(QThread::LowestPriority);
217 }
218
219 void JogShuttle::stopDevice()
220 {
221     if (m_shuttleProcess.isRunning())
222         m_shuttleProcess.stop_me = true;
223 }
224
225 void JogShuttle::customEvent(QEvent* e)
226 {
227     int code = e->type();
228
229     // Handle simple job events
230     switch (code) {
231     case JOG_BACK1:
232         emit jogBack();
233         return;
234     case JOG_FWD1:
235         emit jogForward();
236         return;
237     }
238
239     int shuttle_pos = code - JOG_STOP;
240     if (shuttle_pos >= -MAX_SHUTTLE_RANGE && shuttle_pos <= MAX_SHUTTLE_RANGE) {
241         emit shuttlePos(shuttle_pos);
242         return;
243     }
244
245     // we've got a key event.
246     //fprintf(stderr, "Firing button event for #%d\n", e->type() - KEY_EVENT_OFFSET); // DBG
247     emit button(e->type() - KEY_EVENT_OFFSET);
248 }
249
250
251
252 // #include "jogshuttle.moc"
253