2011-05-02 127 views
1

我正在使用libevent編寫一個事件驅動的應用程序,我需要使用libusb-1.0進行USB傳輸。如何將libusb與libevent一起使用?

我想用libusb_get_pollfds獲得的文件描述符列表(fds)並將其添加到LIBEVENT這樣的:

const struct libusb_pollfd **fds = libusb_get_pollfds(device->context); 

const struct libusb_pollfd *it = *fds; 
for(;it != NULL; ++it) { 
    cout << "Adding fd: " << it->fd << ", " << it->events << endl; 
    struct event * ev = event_new(base_, 
     it->fd, it->events | EV_PERSIST, 
     callbacks::libusb_cb, this); 
    event_add(ev, 0); 
    libusb_fds_events.insert(std::make_pair(it->fd, ev)); 
} 

free(fds); 

// (...) 

// And the callback function: 
void callbacks::libusb_cb(evutil_socket_t fd, short what, void *arg) { 
    Server *s = reinterpret_cast<Server*>(arg); 
    libusb_handle_events_timeout(s->device_->context, 0); 
} 

還有,我用libusb_set_pollfd_notifierslibusb_fds_events添加/刪除FDS。

問題是我在libusb返回的列表上得到了很多奇怪的fds(例如,我得到stdin(!)很多次,事件等於0)。

我是否正確使用它?

回答

3

我在代碼中發現錯誤。它應該是:

const struct libusb_pollfd **it = fds; 
for(;*it != NULL; ++it) { 
    cout << "Adding fd: " << (*it)->fd << ", " << (*it)->events << endl; 
    struct event * ev = event_new(base_, 
     (*it)->fd, (*it)->events | EV_PERSIST, 
     callbacks::libusb_cb, this); 
    event_add(ev, 0); 
    libusb_fds_events.insert(std::make_pair((*it)->fd, ev)); 
} 
相關問題