Class: LIBUSB::DevHandle
- Inherits:
-
Object
- Object
- LIBUSB::DevHandle
- Defined in:
- lib/libusb/dev_handle.rb,
lib/libusb/eventmachine.rb
Overview
Class representing a handle on a USB device.
A device handle is used to perform I/O and other operations. When finished with a device handle, you should call DevHandle#close .
Defined Under Namespace
Classes: EMTransfer
Instance Attribute Summary (collapse)
-
- (Device) device
readonly
The device this handle belongs to.
Instance Method Summary (collapse)
-
- (Object) attach_kernel_driver(interface)
Re-attach an interface's kernel driver, which was previously detached using #detach_kernel_driver.
-
- (Fixnum, ...) bulk_transfer(args = {}) {|result| ... }
Perform a USB bulk transfer.
-
- (Object) claim_interface(interface)
Claim an interface on a given device handle.
-
- (Object) clear_halt(endpoint)
Clear the halt/stall condition for an endpoint.
-
- (Object) close
Close a device handle.
-
- (Fixnum, ...) control_transfer(args = {}) {|result| ... }
Perform a USB control transfer.
-
- (Object) detach_kernel_driver(interface)
Detach a kernel driver from an interface.
-
- (Object) eventmachine_bulk_transfer(opts = {})
Execute an eventmachine driven USB bulk transfer.
-
- (Object) eventmachine_control_transfer(opts = {})
Execute an eventmachine driven USB control transfer.
-
- (Object) eventmachine_interrupt_transfer(opts = {})
Execute an eventmachine driven USB interrupt transfer.
-
- (DevHandle) initialize(device, pHandle)
constructor
A new instance of DevHandle.
-
- (Fixnum, ...) interrupt_transfer(args = {}) {|result| ... }
Perform a USB interrupt transfer.
-
- (Boolean) kernel_driver_active?(interface)
Determine if a kernel driver is active on an interface.
-
- (Object) release_interface(interface)
Release an interface previously claimed with #claim_interface.
-
- (Object) reset_device
Perform a USB port reset to reinitialize a device.
-
- (Object) set_configuration(configuration)
(also: #configuration=)
Set the active configuration for a device.
-
- (Object) set_interface_alt_setting(setting_or_interface_number, alternate_setting = nil)
Activate an alternate setting for an interface.
- - (Object) string_descriptor_ascii(index)
Constructor Details
- (DevHandle) initialize(device, pHandle)
A new instance of DevHandle
29 30 31 32 33 |
# File 'lib/libusb/dev_handle.rb', line 29 def initialize device, pHandle @device = device @pHandle = pHandle @bulk_transfer = @control_transfer = @interrupt_transfer = nil end |
Instance Attribute Details
- (Device) device (readonly)
The device this handle belongs to.
27 28 29 |
# File 'lib/libusb/dev_handle.rb', line 27 def device @device end |
Instance Method Details
- (Object) attach_kernel_driver(interface)
Re-attach an interface's kernel driver, which was previously detached using #detach_kernel_driver.
222 223 224 225 226 |
# File 'lib/libusb/dev_handle.rb', line 222 def attach_kernel_driver(interface) interface = interface.bInterfaceNumber if interface.respond_to? :bInterfaceNumber res = Call.libusb_attach_kernel_driver(@pHandle, interface) LIBUSB.raise_error res, "in libusb_attach_kernel_driver" if res!=0 end |
- (Fixnum, ...) bulk_transfer(args = {}) {|result| ... }
Perform a USB bulk transfer.
When called without a block, the transfer is done synchronously - so all events are handled internally and the sent/received data will be returned after completion or an exception will be raised.
When called with a block, the method returns immediately after submitting the transfer. You then have to ensure, that Context#handle_events is called properly. As soon as the transfer is completed, the block is called with the sent/received data in case of success or the exception instance in case of failure.
The direction of the transfer is inferred from the direction bits of the endpoint address.
For bulk reads, the :dataIn param indicates the maximum length of data you are expecting to receive. If less data arrives than expected, this function will return that data.
You should check the returned number of bytes for bulk writes. Not all of the data may have been written.
Also check Error#transferred when dealing with a timeout exception. libusb may have to split your transfer into a number of chunks to satisfy underlying O/S requirements, meaning that the timeout may expire after the first few chunks have completed. libusb is careful not to lose any data that may have been transferred; do not assume that timeout conditions indicate a complete lack of I/O.
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/libusb/dev_handle.rb', line 270 def bulk_transfer(args={}, &block) timeout = args.delete(:timeout) || 1000 endpoint = args.delete(:endpoint) || raise(ArgumentError, "no endpoint given") endpoint = endpoint.bEndpointAddress if endpoint.respond_to? :bEndpointAddress if endpoint&ENDPOINT_IN != 0 dataIn = args.delete(:dataIn) || raise(ArgumentError, "no :dataIn given for bulk read") else dataOut = args.delete(:dataOut) || raise(ArgumentError, "no :dataOut given for bulk write") end raise ArgumentError, "invalid params #{args.inspect}" unless args.empty? # reuse transfer struct to speed up transfer @bulk_transfer ||= BulkTransfer.new :dev_handle => self tr = @bulk_transfer tr.endpoint = endpoint tr.timeout = timeout if dataOut tr.buffer = dataOut else tr.alloc_buffer(dataIn) end submit_transfer(tr, dataIn, 0, &block) end |
- (Object) claim_interface(interface)
Claim an interface on a given device handle.
You must claim the interface you wish to use before you can perform I/O on any of its endpoints.
It is legal to attempt to claim an already-claimed interface, in which case libusb just returns without doing anything.
Claiming of interfaces is a purely logical operation; it does not cause any requests to be sent over the bus. Interface claiming is used to instruct the underlying operating system that your application wishes to take ownership of the interface.
This is a non-blocking function.
If called with a block, the device handle is passed through to the block and the interface is released when the block has finished.
73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/libusb/dev_handle.rb', line 73 def claim_interface(interface) interface = interface.bInterfaceNumber if interface.respond_to? :bInterfaceNumber res = Call.libusb_claim_interface(@pHandle, interface) LIBUSB.raise_error res, "in libusb_claim_interface" if res!=0 return self unless block_given? begin yield self ensure release_interface(interface) end end |
- (Object) clear_halt(endpoint)
Clear the halt/stall condition for an endpoint.
Endpoints with halt status are unable to receive or transmit data until the halt condition is stalled.
You should cancel all pending transfers before attempting to clear the halt condition.
This is a blocking function.
169 170 171 172 173 |
# File 'lib/libusb/dev_handle.rb', line 169 def clear_halt(endpoint) endpoint = endpoint.bEndpointAddress if endpoint.respond_to? :bEndpointAddress res = Call.libusb_clear_halt(@pHandle, endpoint) LIBUSB.raise_error res, "in libusb_clear_halt" if res!=0 end |
- (Object) close
Close a device handle.
Should be called on all open handles before your application exits.
Internally, this function destroys the reference that was added by LIBUSB::Device#open on the given device.
This is a non-blocking function; no requests are sent over the bus.
43 44 45 |
# File 'lib/libusb/dev_handle.rb', line 43 def close Call.libusb_close(@pHandle) end |
- (Fixnum, ...) control_transfer(args = {}) {|result| ... }
Perform a USB control transfer.
When called without a block, the transfer is done synchronously - so all events are handled internally and the sent/received data will be returned after completion or an exception will be raised.
When called with a block, the method returns immediately after submitting the transfer. You then have to ensure, that Context#handle_events is called properly. As soon as the transfer is completed, the block is called with the sent/received data in case of success or the exception instance in case of failure.
The direction of the transfer is inferred from the :bmRequestType field of the setup packet.
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/libusb/dev_handle.rb', line 395 def control_transfer(args={}, &block) bmRequestType = args.delete(:bmRequestType) || raise(ArgumentError, "param :bmRequestType not given") bRequest = args.delete(:bRequest) || raise(ArgumentError, "param :bRequest not given") wValue = args.delete(:wValue) || raise(ArgumentError, "param :wValue not given") wIndex = args.delete(:wIndex) || raise(ArgumentError, "param :wIndex not given") timeout = args.delete(:timeout) || 1000 if bmRequestType&ENDPOINT_IN != 0 dataIn = args.delete(:dataIn) || 0 dataOut = '' else dataOut = args.delete(:dataOut) || '' end raise ArgumentError, "invalid params #{args.inspect}" unless args.empty? # reuse transfer struct to speed up transfer @control_transfer ||= ControlTransfer.new :dev_handle => self tr = @control_transfer tr.timeout = timeout if dataIn setup_data = [bmRequestType, bRequest, wValue, wIndex, dataIn].pack('CCvvv') tr.alloc_buffer( dataIn + CONTROL_SETUP_SIZE, setup_data ) else tr.buffer = [bmRequestType, bRequest, wValue, wIndex, dataOut.bytesize, dataOut].pack('CCvvva*') end submit_transfer(tr, dataIn, CONTROL_SETUP_SIZE, &block) end |
- (Object) detach_kernel_driver(interface)
Detach a kernel driver from an interface.
If successful, you will then be able to claim the interface and perform I/O.
212 213 214 215 216 |
# File 'lib/libusb/dev_handle.rb', line 212 def detach_kernel_driver(interface) interface = interface.bInterfaceNumber if interface.respond_to? :bInterfaceNumber res = Call.libusb_detach_kernel_driver(@pHandle, interface) LIBUSB.raise_error res, "in libusb_detach_kernel_driver" if res!=0 end |
- (Object) eventmachine_bulk_transfer(opts = {})
Execute an eventmachine driven USB bulk transfer.
154 155 156 |
# File 'lib/libusb/eventmachine.rb', line 154 def eventmachine_bulk_transfer(opts={}) eventmachine_transfer(opts, :bulk_transfer) end |
- (Object) eventmachine_control_transfer(opts = {})
Execute an eventmachine driven USB control transfer.
174 175 176 |
# File 'lib/libusb/eventmachine.rb', line 174 def eventmachine_control_transfer(opts={}) eventmachine_transfer(opts, :control_transfer) end |
- (Object) eventmachine_interrupt_transfer(opts = {})
Execute an eventmachine driven USB interrupt transfer.
137 138 139 |
# File 'lib/libusb/eventmachine.rb', line 137 def eventmachine_interrupt_transfer(opts={}) eventmachine_transfer(opts, :interrupt_transfer) end |
- (Fixnum, ...) interrupt_transfer(args = {}) {|result| ... }
Perform a USB interrupt transfer.
When called without a block, the transfer is done synchronously - so all events are handled internally and the sent/received data will be returned after completion or an exception will be raised.
When called with a block, the method returns immediately after submitting the transfer. You then have to ensure, that Context#handle_events is called properly. As soon as the transfer is completed, the block is called with the sent/received data in case of success or the exception instance in case of failure.
The direction of the transfer is inferred from the direction bits of the endpoint address.
For interrupt reads, the :dataIn param indicates the maximum length of data you are expecting to receive. If less data arrives than expected, this function will return that data.
You should check the returned number of bytes for interrupt writes. Not all of the data may have been written.
Also check Error#transferred when dealing with a timeout exception. libusb may have to split your transfer into a number of chunks to satisfy underlying O/S requirements, meaning that the timeout may expire after the first few chunks have completed. libusb is careful not to lose any data that may have been transferred; do not assume that timeout conditions indicate a complete lack of I/O.
The default endpoint bInterval value is used as the polling interval.
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/libusb/dev_handle.rb', line 338 def interrupt_transfer(args={}, &block) timeout = args.delete(:timeout) || 1000 endpoint = args.delete(:endpoint) || raise(ArgumentError, "no endpoint given") endpoint = endpoint.bEndpointAddress if endpoint.respond_to? :bEndpointAddress if endpoint&ENDPOINT_IN != 0 dataIn = args.delete(:dataIn) || raise(ArgumentError, "no :dataIn given for interrupt read") else dataOut = args.delete(:dataOut) || raise(ArgumentError, "no :dataOut given for interrupt write") end raise ArgumentError, "invalid params #{args.inspect}" unless args.empty? # reuse transfer struct to speed up transfer @interrupt_transfer ||= InterruptTransfer.new :dev_handle => self tr = @interrupt_transfer tr.endpoint = endpoint tr.timeout = timeout if dataOut tr.buffer = dataOut else tr.alloc_buffer(dataIn) end submit_transfer(tr, dataIn, 0, &block) end |
- (Boolean) kernel_driver_active?(interface)
Determine if a kernel driver is active on an interface.
If a kernel driver is active, you cannot claim the interface, and libusb will be unable to perform I/O.
199 200 201 202 203 204 |
# File 'lib/libusb/dev_handle.rb', line 199 def kernel_driver_active?(interface) interface = interface.bInterfaceNumber if interface.respond_to? :bInterfaceNumber res = Call.libusb_kernel_driver_active(@pHandle, interface) LIBUSB.raise_error res, "in libusb_kernel_driver_active" unless res>=0 return res==1 end |
- (Object) release_interface(interface)
Release an interface previously claimed with #claim_interface.
You should release all claimed interfaces before closing a device handle.
This is a blocking function. A SET_INTERFACE control request will be sent to the device, resetting interface state to the first alternate setting.
94 95 96 97 98 |
# File 'lib/libusb/dev_handle.rb', line 94 def release_interface(interface) interface = interface.bInterfaceNumber if interface.respond_to? :bInterfaceNumber res = Call.libusb_release_interface(@pHandle, interface) LIBUSB.raise_error res, "in libusb_release_interface" if res!=0 end |
- (Object) reset_device
Perform a USB port reset to reinitialize a device.
The system will attempt to restore the previous configuration and alternate settings after the reset has completed.
If the reset fails, the descriptors change, or the previous state cannot be restored, the device will appear to be disconnected and reconnected. This means that the device handle is no longer valid (you should close it) and rediscover the device. A Exception of LIBUSB::ERROR_NOT_FOUND indicates when this is the case.
This is a blocking function which usually incurs a noticeable delay.
187 188 189 190 |
# File 'lib/libusb/dev_handle.rb', line 187 def reset_device res = Call.libusb_reset_device(@pHandle) LIBUSB.raise_error res, "in libusb_reset_device" if res!=0 end |
- (Object) set_configuration(configuration) Also known as: configuration=
Set the active configuration for a device.
The operating system may or may not have already set an active configuration on the device. It is up to your application to ensure the correct configuration is selected before you attempt to claim interfaces and perform other operations.
If you call this function on a device already configured with the selected configuration, then this function will act as a lightweight device reset: it will issue a SET_CONFIGURATION request using the current configuration, causing most USB-related device state to be reset (altsetting reset to zero, endpoint halts cleared, toggles reset).
You cannot change/reset configuration if your application has claimed interfaces - you should free them with #release_interface first. You cannot change/reset configuration if other applications or drivers have claimed interfaces.
A configuration value of nil will put the device in unconfigured state. The USB specifications state that a configuration value of 0 does this, however buggy devices exist which actually have a configuration 0.
You should always use this function rather than formulating your own SET_CONFIGURATION control request. This is because the underlying operating system needs to know when such changes happen.
This is a blocking function.
130 131 132 133 134 |
# File 'lib/libusb/dev_handle.rb', line 130 def set_configuration(configuration) configuration = configuration.bConfigurationValue if configuration.respond_to? :bConfigurationValue res = Call.libusb_set_configuration(@pHandle, configuration || -1) LIBUSB.raise_error res, "in libusb_set_configuration" if res!=0 end |
- (Object) set_interface_alt_setting(setting_or_interface_number, alternate_setting = nil)
Activate an alternate setting for an interface.
The interface must have been previously claimed with #claim_interface.
You should always use this function rather than formulating your own SET_INTERFACE control request. This is because the underlying operating system needs to know when such changes happen.
This is a blocking function.
151 152 153 154 155 156 |
# File 'lib/libusb/dev_handle.rb', line 151 def set_interface_alt_setting(setting_or_interface_number, alternate_setting=nil) alternate_setting ||= setting_or_interface_number.bAlternateSetting if setting_or_interface_number.respond_to? :bAlternateSetting setting_or_interface_number = setting_or_interface_number.bInterfaceNumber if setting_or_interface_number.respond_to? :bInterfaceNumber res = Call.libusb_set_interface_alt_setting(@pHandle, setting_or_interface_number, alternate_setting) LIBUSB.raise_error res, "in libusb_set_interface_alt_setting" if res!=0 end |
- (Object) string_descriptor_ascii(index)
47 48 49 50 51 52 |
# File 'lib/libusb/dev_handle.rb', line 47 def string_descriptor_ascii(index) pString = FFI::MemoryPointer.new 0x100 res = Call.libusb_get_string_descriptor_ascii(@pHandle, index, pString, pString.size) LIBUSB.raise_error res, "in libusb_get_string_descriptor_ascii" unless res>=0 pString.read_string(res) end |