X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fjogshuttle.cpp;h=1d6688ed7e96e774e3d112c4fd165943a51ed860;hb=a7a883757867c177be234cb2a05bb9ce47cc562c;hp=8c9d845f8bd16d1c5fcc649fedc85ab5bda19de0;hpb=bf16decf8d7de356d6bbfda824ac2583d92d2d59;p=kdenlive diff --git a/src/jogshuttle.cpp b/src/jogshuttle.cpp index 8c9d845f..1d6688ed 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,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; @@ -84,78 +87,108 @@ 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"); + kDebug() << "------- STARTING SHUTTLE: " << m_device; + struct media_ctrl mc; + + // open device + media_ctrl_open2(&mc, m_device.toUtf8().data()); + + // on failure return + if (mc.fd < 0) { + perror("Can't open Jog Shuttle FILE DESCRIPTOR"); return; } - EV ev; - if (ioctl(fd, EVIOCGRAB, 1) < 0) { - fprintf(stderr, "Can't get exclusive access on Jog Shuttle FILE DESCRIPTOR\n"); - close(fd); - return; + // init + int result; + fd_set readset; + struct timeval timeout; + + /* enter thread loop */ + while (!stop_me) { + /* reset the read set */ + FD_ZERO(&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 stop_me evaluation + result = select(mc.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) { + // we have input + if (FD_ISSET(mc.fd, &readset)) { + struct media_ctrl_event mev; + mev.type = MEDIA_CTRL_EVENT_NONE; + // read input + media_ctrl_read_event(&mc, &mev); + // process event + handle_event(mev); + } + } else if (result == 0) { + // on timeout. let it here for debug + } + } + + kDebug() << "------- STOPPING SHUTTLE: "; + /* close the handle and return thread */ + media_ctrl_close(&mc); +} + +void ShuttleThread::handle_event(const 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::key(const 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::shuttle(const struct media_ctrl_event& ev) +{ + int value = ev.value / 2; - fd_set readset; - struct timeval timeout; - - int num_warnings = 0; - int result, iof = -1; - - /* 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 = 300000; /* 300 ms */ - - /* do the select */ - result = select(fd+1, &readset, NULL, NULL, &timeout); - - /* see if there was an error or timeout */ - if (result < 0) { -// perror("select failed"); - } else if (result == 0) { -// puts("TIMEOUT"); - } 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++; - } - - /* restore settings */ - if (iof != -1) { - fcntl(fd, F_SETFL, iof); - } - /* process event */ - handle_event(ev); - } else { - fprintf(stderr, "Can't set Jog Shuttle FILE DESCRIPTOR to O_NONBLOCK\n"); - stop_me = true; - } - } - } + if (value > MAX_SHUTTLE_RANGE || value < -MAX_SHUTTLE_RANGE) { + kDebug() << "Jog shuttle value is out of range: " << MAX_SHUTTLE_RANGE; + return; } - /* close the handle and return thread */ - close(fd); + QApplication::postEvent(m_parent, + new QEvent((QEvent::Type) (JOG_STOP + (value)))); } +void ShuttleThread::jog(const 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)); +} + +#ifdef USE_DEPRECATED void ShuttleThread::handle_event(EV ev) { switch (ev.type) { @@ -183,7 +216,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))); } @@ -241,9 +274,9 @@ void ShuttleThread::jog(unsigned int value) jogvalue = value; if (shuttlecounter > 0) shuttlecounter++; } +#endif // USE_DEPRECATED - -JogShuttle::JogShuttle(QString device, QObject *parent) : +JogShuttle::JogShuttle(const QString &device, QObject *parent) : QObject(parent) { initDevice(device); @@ -254,12 +287,15 @@ 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; + if (device == m_shuttleProcess.m_device) + return; + stopDevice(); } + m_shuttleProcess.init(this, device); m_shuttleProcess.start(QThread::LowestPriority); } @@ -267,7 +303,7 @@ void JogShuttle::initDevice(QString device) void JogShuttle::stopDevice() { if (m_shuttleProcess.isRunning()) { - /* the read fd is in blocking mode => stop_me is broken at the moment */ + /* tell thread to stop */ m_shuttleProcess.stop_me = true; m_shuttleProcess.exit(); /* give the thread some time (ms) to shutdown */ @@ -285,16 +321,17 @@ void JogShuttle::customEvent(QEvent* e) { int code = e->type(); - // Handle simple job events + // handle simple job events switch (code) { - case JOG_BACK1: - emit jogBack(); - return; - case JOG_FWD1: - emit jogForward(); - return; + case JOG_BACK1: + emit jogBack(); + return; + case JOG_FWD1: + emit jogForward(); + return; } + // FIXME: this is a bad shuttle indication int shuttle_pos = code - JOG_STOP; if (shuttle_pos >= -MAX_SHUTTLE_RANGE && shuttle_pos <= MAX_SHUTTLE_RANGE) { emit shuttlePos(shuttle_pos); @@ -302,11 +339,58 @@ void JogShuttle::customEvent(QEvent* e) } // we've got a key event. - //fprintf(stderr, "Firing button event for #%d\n", e->type() - KEY_EVENT_OFFSET); // DBG emit button(e->type() - KEY_EVENT_OFFSET); } +QString JogShuttle::canonicalDevice(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::canonicalDevice(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); + kDebug() << QString(" [keys-count=%1] ").arg( + media_ctrl_get_keys_count(&mc)); + } + media_ctrl_close(&mc); + } + + return devs; +} + +int JogShuttle::keysCount(const QString& devPath) +{ + struct media_ctrl mc; + int keysCount = 0; + QString fileLink = canonicalDevice(devPath); + media_ctrl_open2(&mc, (char*)fileLink.toUtf8().data()); + if (mc.fd > 0 && mc.device) { + keysCount = media_ctrl_get_keys_count(&mc); + } + + return keysCount; +} // #include "jogshuttle.moc" + +#include "jogshuttle.moc"