X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fjogshuttle.cpp;h=44517d7745a839db137310c716bb256b90d3c618;hb=937f547e26859d0ef9ddc0ac38d6986ab591b3fd;hp=b5dd0e8cbe2f641af58d8a6027f30c8957d7621b;hpb=16e43620d9ff9e432ea91ded529f1e365d03fd52;p=kdenlive diff --git a/src/jogshuttle.cpp b/src/jogshuttle.cpp index b5dd0e8c..44517d77 100644 --- a/src/jogshuttle.cpp +++ b/src/jogshuttle.cpp @@ -26,11 +26,14 @@ #include #include +#include #include #include #include #include +#include +#include #include #define DELAY 10 @@ -66,14 +69,14 @@ #define JOG_STOP 10020 #define MAX_SHUTTLE_RANGE 7 -void ShuttleThread::init(QObject *parent, QString device) +void ShuttleThread::init(QObject *parent, const QString &device) { m_parent = parent; m_device = device; stop_me = false; m_isWorking = false; shuttlevalue = 0xffff; - shuttlechange = false; + shuttlecounter = 0; jogvalue = 0xffff; } @@ -84,31 +87,111 @@ bool ShuttleThread::isWorking() void ShuttleThread::run() { - kDebug() << "------- STARTING SHUTTLE: " << m_device; + kDebug() << "------- STARTING SHUTTLE: " << m_device; - const int fd = KDE_open((char *) m_device.toUtf8().data(), O_RDONLY); - if (fd < 0) { - fprintf(stderr, "Can't open Jog Shuttle FILE DESCRIPTOR\n"); - return;; - } - EV ev; + /* open file descriptor */ + const int fd = KDE_open((char *) m_device.toUtf8().data(), O_RDONLY); + if (fd < 0) { + perror("Can't open Jog Shuttle FILE DESCRIPTOR"); + return; + } - if (ioctl(fd, EVIOCGRAB, 1) < 0) { - fprintf(stderr, "Can't get exclusive access on Jog Shuttle FILE DESCRIPTOR\n"); - return;; - } + EV ev[64]; - int num_warnings = 0; - while (!stop_me) { - if (read(fd, &ev, sizeof(ev)) < 0) { - if (num_warnings % 10000 == 0) - fprintf(stderr, "Failed to read event from Jog Shuttle FILE DESCRIPTOR (repeated %d times)\n", num_warnings + 1); - num_warnings++; - } - handle_event(ev); + if (ioctl(fd, EVIOCGRAB, 1) < 0) { + fprintf(stderr, "Can't get exclusive access on Jog Shuttle FILE DESCRIPTOR\n"); + close(fd); + return; + } + + fd_set readset; + struct timeval timeout; + + int num_warnings = 0, readResult = 0; + int result, iof = -1; + + /* get fd settings */ + if ((iof = fcntl(fd, F_GETFL, 0)) == -1) { + fprintf(stderr, "Can't get Jog Shuttle file status\n"); + close(fd); + return; } - close(fd); +#if 0 + else if (fcntl(fd, F_SETFL, iof | O_NONBLOCK) == -1) { + fprintf(stderr, "Can't set Jog Shuttle FILE DESCRIPTOR to O_NONBLOCK and stop thread\n"); + close(fd); + return; + } +#endif + + /* enter thread loop */ + while (!stop_me) { + /* reset the read set */ + FD_ZERO(&readset); + FD_SET(fd, &readset); + + /* reinit the timeout structure */ + timeout.tv_sec = 0; + timeout.tv_usec = 400000; /* 400 ms */ + + /* do select in blocked mode and wake up after timeout for eval stop_me */ + result = select(fd+1, &readset, NULL, NULL, &timeout); + + /* see if there was an error or timeout else process event */ + if (result < 0 && errno == EINTR) { + /* EINTR event catched. This is not a problem - continue processing */ + kDebug() << strerror(errno) << "\n"; + /* continue processing */ + continue; + } else if (result < 0) { + /* stop thread */ + stop_me = true; + kDebug() << strerror(errno) << "\n"; + } else if (result == 0) { + /* do nothing. reserved for future purposes */ + } else { + /* we have input */ + if (FD_ISSET(fd, &readset)) { + /* read input */ + readResult = read(fd, ev, sizeof(EV) * 64); + if (readResult < 0) { + if (num_warnings % 10000 == 0) { + /* if device is not available anymore - dead or disconnected */ + fprintf(stderr, "Failed to read event from Jog Shuttle FILE DESCRIPTOR (repeated %d times)\n", num_warnings + 1); + } + /* exit if device is not available or the error occurs to long */ + if (errno == ENODEV) { + perror("Failed to read from Jog Shuttle FILE DESCRIPTOR. Stop thread"); + /* stop thread */ + stop_me = true; + } else if (num_warnings > 1000000) { + perror("Failed to read from Jog Shuttle FILE DESCRIPTOR. Limit reached. Stop thread"); + /* stop thread */ + stop_me = true; + } + num_warnings++; + } else if (readResult < (int)sizeof(EV)) { + fprintf(stderr, "readResult < (int)sizeof(EV)\n"); + /* stop thread */ + stop_me = true; + } else if (readResult % (int)sizeof(EV) != 0) { + fprintf(stderr, "readResult mod (int)sizeof(EV) != 0\n"); + /* stop thread */ + stop_me = true; + } else { + for (int i = 0; i < readResult / (int)sizeof(EV); i++) { + /* process event */ + handle_event(ev[i]); + } + } + } + } + } + + kDebug() << "------- STOPPING SHUTTLE: "; + /* close the handle and return thread */ + close(fd); } void ShuttleThread::handle_event(EV ev) @@ -138,7 +221,7 @@ void ShuttleThread::key(unsigned short code, unsigned int value) if (code > 16) return; - kDebug() << "Button PRESSED: " << code; + //kDebug() << "Button PRESSED: " << code; QApplication::postEvent(m_parent, new QEvent((QEvent::Type)(KEY_EVENT_OFFSET + code))); } @@ -148,15 +231,17 @@ void ShuttleThread::shuttle(int value) //gettimeofday( &last_shuttle, 0 ); //need_synthetic_shuttle = value != 0; - if (value == shuttlevalue) + if (value == shuttlevalue) { + shuttlecounter = 1; return; + } if (value > MAX_SHUTTLE_RANGE || value < -MAX_SHUTTLE_RANGE) { fprintf(stderr, "Jog Shuttle returned value of %d (should be between -%d ad +%d)", value, MAX_SHUTTLE_RANGE, MAX_SHUTTLE_RANGE); return; } shuttlevalue = value; - shuttlechange = true; + shuttlecounter = 1; QApplication::postEvent(m_parent, new QEvent((QEvent::Type) (JOG_STOP + value))); } @@ -183,18 +268,20 @@ void ShuttleThread::jog(unsigned int value) QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_BACK1)); else if ((forward && !wrap) || (rewind && wrap)) QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_FWD1)); - else if (!forward && !rewind && !shuttlechange) + else if (!forward && !rewind && shuttlecounter > 2) { // An event without changing the jog value is sent after each shuttle change. // As the shuttle rest position does not get a shuttle event, only a non-position-changing jog event. // Hence we stop on this when we see 2 non-position-changing jog events in a row. + shuttlecounter = 0; QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_STOP)); + } } jogvalue = value; - shuttlechange = false; + if (shuttlecounter > 0) shuttlecounter++; } -JogShuttle::JogShuttle(QString device, QObject *parent) : +JogShuttle::JogShuttle(const QString &device, QObject *parent) : QObject(parent) { initDevice(device); @@ -202,10 +289,10 @@ JogShuttle::JogShuttle(QString device, QObject *parent) : JogShuttle::~JogShuttle() { - if (m_shuttleProcess.isRunning()) m_shuttleProcess.exit(); + stopDevice(); } -void JogShuttle::initDevice(QString device) +void JogShuttle::initDevice(const QString &device) { if (m_shuttleProcess.isRunning()) { if (device == m_shuttleProcess.m_device) return; @@ -217,8 +304,19 @@ void JogShuttle::initDevice(QString device) void JogShuttle::stopDevice() { - if (m_shuttleProcess.isRunning()) + if (m_shuttleProcess.isRunning()) { + /* tell thread to stop */ m_shuttleProcess.stop_me = true; + m_shuttleProcess.exit(); + /* give the thread some time (ms) to shutdown */ + m_shuttleProcess.wait(600); + + /* if still running - do it in the hardcore way */ + if (m_shuttleProcess.isRunning()) { + m_shuttleProcess.terminate(); + kDebug() << "/// terminate jogshuttle process\n"; + } + } } void JogShuttle::customEvent(QEvent* e) @@ -246,7 +344,15 @@ void JogShuttle::customEvent(QEvent* e) emit button(e->type() - KEY_EVENT_OFFSET); } +QString JogShuttle::enumerateDevice(const QString &device) +{ + QDir canonDir(device); + //return QDir::canonicalPath(device); + return canonDir.canonicalPath(); +} // #include "jogshuttle.moc" + +#include "jogshuttle.moc"