]> git.sesse.net Git - kdenlive/blobdiff - src/jogshuttle.cpp
jogshuttle: enumerate devices using mediactrl
[kdenlive] / src / jogshuttle.cpp
index 0188b166a7367ce42720f327fc587f2508407220..c846e9c96e4a10eada03cc6f80943d056bcc0b6d 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <QApplication>
 #include <QEvent>
+#include <QDir>
 
 #include <stdlib.h>
 #include <stdio.h>
@@ -68,7 +69,7 @@
 #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;
@@ -87,79 +88,131 @@ bool ShuttleThread::isWorking()
 void ShuttleThread::run()
 {
        kDebug() << "-------  STARTING SHUTTLE: " << m_device;
-       /* open file descriptor */
-       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");
+       struct media_ctrl mc;
+    media_ctrl_open2(&mc, m_device.toUtf8().data());
+
+    /* open file descriptor */
+       //const int fd = KDE_open((char *) m_device.toUtf8().data(), O_RDONLY);
+       if (mc.fd < 0) {
+               perror("Can't open Jog Shuttle FILE DESCRIPTOR");
                return;
        }
 
-       EV ev;
-
+       EV ev[64];
+#if 0
        if (ioctl(fd, EVIOCGRAB, 1) < 0) {
                fprintf(stderr, "Can't get exclusive access on  Jog Shuttle FILE DESCRIPTOR\n");
                close(fd);
                return;
        }
+#endif
 
        fd_set             readset;
        struct timeval timeout;
 
-       int num_warnings = 0;
+       int num_warnings = 0, readResult = 0;
        int result, iof = -1;
+#if 0
+       /* get fd settings */
+    if ((iof = fcntl(fd, F_GETFL, 0)) == -1) {
+        fprintf(stderr, "Can't get Jog Shuttle file status\n");
+        close(fd);
+        return;
+    }
+#endif
+#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
+    struct media_ctrl_event mev;
 
        /* enter thread loop */
        while (!stop_me) {
                /* reset the read set */
                FD_ZERO(&readset);
-               FD_SET(fd, &readset);
+               FD_SET(mc.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);
+               result = select(mc.fd+1, &readset, NULL, NULL, &timeout);
 
                /* see if there was an error or timeout else process event */
-               if (result < 0) {
-                       /* usually this is a condition for exit but EINTR error is thrown
-                        * one time when the playback is started the first time. I think
-                        * its ok to ignore this if its not too often */
+               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)) {
-                               /* get fd settings */
-                               if ((iof = fcntl(fd, F_GETFL, 0)) != -1) {
-                                       /* set fd non blocking */
-                                       fcntl(fd, F_SETFL, iof | O_NONBLOCK);
-                                       /* read input */
-                                       if (read(fd, &ev, sizeof(ev)) < 0) {
-                                               if (num_warnings % 10000 == 0)
-                                                       /* should not happen cause select called before */
-                                                       fprintf(stderr, "Failed to read event from Jog Shuttle FILE DESCRIPTOR (repeated %d times)\n", num_warnings + 1);
-                                               num_warnings++;
+                       if (FD_ISSET(mc.fd, &readset)) {
+                               /* read input */
+                           mev.type = MEDIA_CTRL_EVENT_NONE;
+                               //readResult = read(fd, ev, sizeof(EV) * 64);
+                               media_ctrl_read_event(&mc, &mev);
+                /* process event */
+                handle_event(mev);
+#if 0
+                               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);
                                        }
-
-                                       /* restore settings */
-                                       if (iof != -1) {
-                                               fcntl(fd, F_SETFL, iof);
+                                       /* 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;
                                        }
-                                       /* process event */
-                                       handle_event(ev);
-                               } else {
-                                       fprintf(stderr, "Can't set Jog Shuttle FILE DESCRIPTOR to O_NONBLOCK and stop thread\n");
+                                       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]);
+                                       }
                                }
+#endif
                        }
                }
        }
 
+    kDebug() << "-------  STOPPING SHUTTLE: ";
        /* close the handle and return thread */
-       close(fd);
+       //close(fd);
+    media_ctrl_close(&mc);
+}
+
+void ShuttleThread::handle_event(struct media_ctrl_event ev)
+{
+    if (ev.type == MEDIA_CTRL_EVENT_KEY)
+        key(ev);
+    else if (ev.type == MEDIA_CTRL_EVENT_JOG)
+        jog(ev);
+    else if (ev.type == MEDIA_CTRL_EVENT_SHUTTLE)
+        shuttle(ev);
 }
 
 void ShuttleThread::handle_event(EV ev)
@@ -177,6 +230,14 @@ void ShuttleThread::handle_event(EV ev)
     }
 }
 
+void ShuttleThread::key(struct media_ctrl_event ev)
+{
+    if (ev.value == KEY_PRESS) {
+        int code = ev.index + 1;
+        QApplication::postEvent(m_parent, new QEvent((QEvent::Type)(KEY_EVENT_OFFSET + code)));
+    }
+}
+
 void ShuttleThread::key(unsigned short code, unsigned int value)
 {
     if (value == 0) {
@@ -189,11 +250,16 @@ 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)));
 
 }
 
+void ShuttleThread::shuttle(struct media_ctrl_event ev)
+{
+    QApplication::postEvent(m_parent, new QEvent((QEvent::Type) (JOG_STOP + (ev.value/2))));
+}
+
 void ShuttleThread::shuttle(int value)
 {
     //gettimeofday( &last_shuttle, 0 );
@@ -213,6 +279,14 @@ void ShuttleThread::shuttle(int value)
     QApplication::postEvent(m_parent, new QEvent((QEvent::Type) (JOG_STOP + value)));
 }
 
+void ShuttleThread::jog(struct media_ctrl_event ev)
+{
+    if (ev.value < 0)
+        QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_BACK1));
+    else if (ev.value > 0)
+        QApplication::postEvent(m_parent, new QEvent((QEvent::Type) JOG_FWD1));
+}
+
 void ShuttleThread::jog(unsigned int value)
 {
     // generate a synthetic event for the shuttle going
@@ -249,7 +323,7 @@ void ShuttleThread::jog(unsigned int value)
 }
 
 
-JogShuttle::JogShuttle(QString device, QObject *parent) :
+JogShuttle::JogShuttle(const QString &device, QObject *parent) :
         QObject(parent)
 {
     initDevice(device);
@@ -260,7 +334,7 @@ JogShuttle::~JogShuttle()
        stopDevice();
 }
 
-void JogShuttle::initDevice(QString device)
+void JogShuttle::initDevice(const QString &device)
 {
     if (m_shuttleProcess.isRunning()) {
         if (device == m_shuttleProcess.m_device) return;
@@ -312,7 +386,40 @@ void JogShuttle::customEvent(QEvent* e)
     emit button(e->type() - KEY_EVENT_OFFSET);
 }
 
+QString JogShuttle::enumerateDevice(const QString& device)
+{
+    return QDir(device).canonicalPath();
+}
+
+DeviceMap JogShuttle::enumerateDevices(const QString& devPath)
+{
+    DeviceMap devs;
+    QDir devDir(devPath);
+
+    if (!devDir.exists()) {
+        return devs;
+    }
+
+    QStringList fileList = devDir.entryList(QDir::System | QDir::Files);
+    foreach (const QString &fileName, fileList) {
+        QString devFullPath = devDir.absoluteFilePath(fileName);
+        QString fileLink = JogShuttle::enumerateDevice(devFullPath);
+        kDebug() << QString(" [%1] ").arg(fileName);
+        kDebug() << QString(" [%1] ").arg(fileLink);
+
+        struct media_ctrl mc;
+        media_ctrl_open2(&mc, (char*)fileLink.toUtf8().data());
+        if (mc.fd > 0 && mc.device) {
+            devs.insert(QString(mc.device->name), devFullPath);
+        }
+        media_ctrl_close(&mc);
+    }
+
+    return devs;
+}
 
 
 // #include "jogshuttle.moc"
 
+
+#include "jogshuttle.moc"