Source code for nidaqmx.stream_readers._digital_multi_channel_reader

from __future__ import annotations

from typing import Any

from nitypes.waveform import DigitalWaveform

from nidaqmx import DaqError
from nidaqmx._feature_toggles import WAVEFORM_SUPPORT, requires_feature
from nidaqmx.constants import READ_ALL_AVAILABLE, FillMode, ReallocationPolicy
from nidaqmx.error_codes import DAQmxErrors
from nidaqmx.stream_readers._channel_reader_base import ChannelReaderBase


[docs] class DigitalMultiChannelReader(ChannelReaderBase): """Reads samples from one or more digital input channels in an NI-DAQmx task."""
[docs] def read_many_sample_port_byte( self, data, number_of_samples_per_channel=READ_ALL_AVAILABLE, timeout=10.0 ): """Reads one or more 8-bit unsigned integer samples from one or more digital input channel in a task. Use this method for devices with up to 8 lines per port. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 2D NumPy array of 8-bit unsigned integer values to hold the samples requested. The size of the array must be large enough to hold all requested samples from all channels in the task; otherwise, an error is thrown. Each row corresponds to a channel in the task. Each column corresponds to a sample from each channel. The order of the channels in the array corresponds to the order in which you add the channels to the task or to the order of the channels you specify with the "channels_to_read" property. If the size of the array is too large or the array is shaped incorrectly, the previous statement may not hold true as the samples read may not be separated into rows and columns properly. Set the "verify_array_shape" property on this channel reader object to True to validate that the NumPy array object is shaped properly. Setting this property may marginally adversely impact the performance of the method. number_of_samples_per_channel (Optional[int]): Specifies the number of samples to read. If you set this input to nidaqmx.constants. READ_ALL_AVAILABLE, NI-DAQmx determines how many samples to read based on if the task acquires samples continuously or acquires a finite number of samples. If the task acquires samples continuously and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, this method reads all the samples currently available in the buffer. If the task acquires a finite number of samples and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, the method waits for the task to acquire all requested samples, then reads those samples. If you set the "read_all_avail_samp" property to True, the method reads the samples currently available in the buffer and does not wait for the task to acquire all requested samples. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. Returns: int: Indicates the number of samples acquired by each channel. NI-DAQmx returns a single value because this value is the same for all channels. """ # noqa: W505 - doc line too long (109 > 100 characters) (auto-generated noqa) number_of_samples_per_channel = self._task._calculate_num_samps_per_chan( number_of_samples_per_channel ) self._verify_array(data, number_of_samples_per_channel, True, True) _, samps_per_chan_read = self._interpreter.read_digital_u8( self._handle, number_of_samples_per_channel, timeout, FillMode.GROUP_BY_CHANNEL.value, data, ) return samps_per_chan_read
[docs] def read_many_sample_port_uint16( self, data, number_of_samples_per_channel=READ_ALL_AVAILABLE, timeout=10.0 ): """Reads one or more 16-bit unsigned integer samples from one or more digital input channels in a task. Use this method for devices with up to 16 lines per port. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 2D NumPy array of 16-bit unsigned integer values to hold the samples requested. The size of the array must be large enough to hold all requested samples from all channels in the task; otherwise, an error is thrown. Each row corresponds to a channel in the task. Each column corresponds to a sample from each channel. The order of the channels in the array corresponds to the order in which you add the channels to the task or to the order of the channels you specify with the "channels_to_read" property. If the size of the array is too large or the array is shaped incorrectly, the previous statement may not hold true as the samples read may not be separated into rows and columns properly. Set the "verify_array_shape" property on this channel reader object to True to validate that the NumPy array object is shaped properly. Setting this property may marginally adversely impact the performance of the method. number_of_samples_per_channel (Optional[int]): Specifies the number of samples to read. If you set this input to nidaqmx.constants. READ_ALL_AVAILABLE, NI-DAQmx determines how many samples to read based on if the task acquires samples continuously or acquires a finite number of samples. If the task acquires samples continuously and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, this method reads all the samples currently available in the buffer. If the task acquires a finite number of samples and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, the method waits for the task to acquire all requested samples, then reads those samples. If you set the "read_all_avail_samp" property to True, the method reads the samples currently available in the buffer and does not wait for the task to acquire all requested samples. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. Returns: int: Indicates the number of samples acquired by each channel. NI-DAQmx returns a single value because this value is the same for all channels. """ # noqa: W505 - doc line too long (111 > 100 characters) (auto-generated noqa) number_of_samples_per_channel = self._task._calculate_num_samps_per_chan( number_of_samples_per_channel ) self._verify_array(data, number_of_samples_per_channel, True, True) _, samps_per_chan_read = self._interpreter.read_digital_u16( self._handle, number_of_samples_per_channel, timeout, FillMode.GROUP_BY_CHANNEL.value, data, ) return samps_per_chan_read
[docs] def read_many_sample_port_uint32( self, data, number_of_samples_per_channel=READ_ALL_AVAILABLE, timeout=10.0 ): """Reads one or more 32-bit unsigned integer samples from one or more digital input channels in a task. Use this method for devices with up to 32 lines per port. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 2D NumPy array of 32-bit unsigned integer values to hold the samples requested. The size of the array must be large enough to hold all requested samples from all channels in the task; otherwise, an error is thrown. Each row corresponds to a channel in the task. Each column corresponds to a sample from each channel. The order of the channels in the array corresponds to the order in which you add the channels to the task or to the order of the channels you specify with the "channels_to_read" property. If the size of the array is too large or the array is shaped incorrectly, the previous statement may not hold true as the samples read may not be separated into rows and columns properly. Set the "verify_array_shape" property on this channel reader object to True to validate that the NumPy array object is shaped properly. Setting this property may marginally adversely impact the performance of the method. number_of_samples_per_channel (Optional[int]): Specifies the number of samples to read. If you set this input to nidaqmx.constants. READ_ALL_AVAILABLE, NI-DAQmx determines how many samples to read based on if the task acquires samples continuously or acquires a finite number of samples. If the task acquires samples continuously and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, this method reads all the samples currently available in the buffer. If the task acquires a finite number of samples and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, the method waits for the task to acquire all requested samples, then reads those samples. If you set the "read_all_avail_samp" property to True, the method reads the samples currently available in the buffer and does not wait for the task to acquire all requested samples. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. Returns: int: Indicates the number of samples acquired by each channel. NI-DAQmx returns a single value because this value is the same for all channels. """ # noqa: W505 - doc line too long (111 > 100 characters) (auto-generated noqa) number_of_samples_per_channel = self._task._calculate_num_samps_per_chan( number_of_samples_per_channel ) self._verify_array(data, number_of_samples_per_channel, True, True) _, samps_per_chan_read = self._interpreter.read_digital_u32( self._handle, number_of_samples_per_channel, timeout, FillMode.GROUP_BY_CHANNEL.value, data, ) return samps_per_chan_read
[docs] def read_one_sample_multi_line(self, data, timeout=10): """Reads a single boolean sample from one or more digital input channels in a task. The channels can contain multiple digital lines. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 2D NumPy array of boolean values to hold the samples requested. The size of the array must be large enough to hold all requested samples from all channels in the task; otherwise, an error is thrown. Each row corresponds to a channel in the task. Each column corresponds to a line from each channel. The order of the channels in the array corresponds to the order in which you add the channels to the task or to the order of the channels you specify with the "channels_to_read" property. If the size of the array is too large or the array is shaped incorrectly, the previous statement may not hold true as the samples read may not be separated into rows and columns properly. Set the "verify_array_shape" property on this channel reader object to True to validate that the NumPy array object is shaped properly. Setting this property may marginally adversely impact the performance of the method. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. """ self._verify_array_digital_lines(data, True, True) _, samps_per_chan_read, num_bytes_per_samp = self._interpreter.read_digital_lines( self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data )
[docs] def read_one_sample_one_line(self, data, timeout=10): """Reads a single boolean sample from one or more digital input channels in a task. The channel can contain only one digital line. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 1D NumPy array of boolean values to hold the samples requested. Each element in the array corresponds to a sample from each channel. The size of the array must be large enough to hold all requested samples from the channel in the task; otherwise, an error is thrown. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. """ self._verify_array_digital_lines(data, True, False) _, samps_per_chan_read, num_bytes_per_samp = self._interpreter.read_digital_lines( self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data )
[docs] def read_one_sample_port_byte(self, data, timeout=10): """Reads a single 8-bit unsigned integer sample from one or more digital input channels in a task. Use this method for devices with up to 8 lines per port. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 1D NumPy array of 8-bit unsigned integer values to hold the samples requested. Each element in the array corresponds to a sample from each channel. The size of the array must be large enough to hold all requested samples from the channel in the task; otherwise, an error is thrown. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. """ # noqa: W505 - doc line too long (106 > 100 characters) (auto-generated noqa) self._verify_array(data, 1, True, False) self._interpreter.read_digital_u8( self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data )
[docs] def read_one_sample_port_uint16(self, data, timeout=10): """Reads a single 16-bit unsigned integer sample from one or more digital input channels in a task. Use this method for devices with up to 16 lines per port. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 1D NumPy array of 16-bit unsigned integer values to hold the samples requested. Each element in the array corresponds to a sample from each channel. The size of the array must be large enough to hold all requested samples from the channel in the task; otherwise, an error is thrown. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. """ # noqa: W505 - doc line too long (107 > 100 characters) (auto-generated noqa) self._verify_array(data, 1, True, False) self._interpreter.read_digital_u16( self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data )
[docs] def read_one_sample_port_uint32(self, data, timeout=10): """Reads a single 32-bit unsigned integer sample from one or more digital input channels in a task. Use this method for devices with up to 32 lines per port. This read method accepts a preallocated NumPy array to hold the samples requested, which can be advantageous for performance and interoperability with NumPy and SciPy. Passing in a preallocated array is valuable in continuous acquisition scenarios, where the same array can be used repeatedly in each call to the method. Args: data (numpy.ndarray): Specifies a preallocated 1D NumPy array of 32-bit unsigned integer values to hold the samples requested. Each element in the array corresponds to a sample from each channel. The size of the array must be large enough to hold all requested samples from the channel in the task; otherwise, an error is thrown. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. """ # noqa: W505 - doc line too long (107 > 100 characters) (auto-generated noqa) self._verify_array(data, 1, True, False) self._interpreter.read_digital_u32( self._handle, 1, timeout, FillMode.GROUP_BY_CHANNEL.value, data )
[docs] @requires_feature(WAVEFORM_SUPPORT) def read_waveforms( self, waveforms: list[DigitalWaveform[Any]], number_of_samples_per_channel: int = READ_ALL_AVAILABLE, reallocation_policy: ReallocationPolicy = ReallocationPolicy.TO_GROW, timeout: float = 10.0, ) -> int: """Reads one or more samples from one or more digital input channels into a list of waveforms. Args: waveforms (list[DigitalWaveform[Any]]): Specifies an existing list of DigitalWaveform objects to use for reading samples into. The list must contain one waveform for each channel in the task. number_of_samples_per_channel (Optional[int]): Specifies the number of samples to read. If you set this input to nidaqmx.constants. READ_ALL_AVAILABLE, NI-DAQmx determines how many samples to read based on if the task acquires samples continuously or acquires a finite number of samples. If the task acquires samples continuously and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, this method reads all the samples currently available in the buffer. If the task acquires a finite number of samples and you set this input to nidaqmx.constants.READ_ALL_AVAILABLE, the method waits for the task to acquire all requested samples, then reads those samples. If you set the "read_all_avail_samp" property to True, the method reads the samples currently available in the buffer and does not wait for the task to acquire all requested samples. reallocation_policy (Optional[ReallocationPolicy]): Specifies the reallocation policy to use when the read yields more samples than the current capacity of the waveform. timeout (Optional[float]): Specifies the amount of time in seconds to wait for samples to become available. If the time elapses, the method returns an error and any samples read before the timeout elapsed. The default timeout is 10 seconds. If you set timeout to nidaqmx.constants.WAIT_INFINITELY, the method waits indefinitely. If you set timeout to 0, the method tries once to read the requested samples and returns an error if it is unable to. Returns: int: Indicates the number of samples acquired by each channel. NI-DAQmx returns a single value because this value is the same for all channels. """ # noqa: W505 - doc line too long (102 > 100 characters) (auto-generated noqa) number_of_channels = self._in_stream.num_chans number_of_samples_per_channel = self._task._calculate_num_samps_per_chan( number_of_samples_per_channel ) if len(waveforms) != number_of_channels: raise DaqError( f"The number of waveforms provided ({len(waveforms)}) does not match " f"the number of channels in the task ({number_of_channels}). Please provide " "one waveform for each channel.", DAQmxErrors.MISMATCHED_INPUT_ARRAY_SIZES, task_name=self._task.name, ) for i, waveform in enumerate(waveforms): if waveform.start_index + number_of_samples_per_channel > waveform.capacity: if reallocation_policy == ReallocationPolicy.TO_GROW: waveform.capacity = waveform.start_index + number_of_samples_per_channel else: raise DaqError( f"The waveform at index {i} does not have enough space ({waveform.capacity - waveform.start_index}) to hold " f"the requested number of samples ({number_of_samples_per_channel}). Please provide larger " "waveforms or adjust the number of samples requested.", DAQmxErrors.READ_BUFFER_TOO_SMALL, task_name=self._task.name, ) return self._interpreter.read_digital_waveforms( self._handle, number_of_channels, number_of_samples_per_channel, self._in_stream.di_num_booleans_per_chan, timeout, waveforms, self._in_stream.waveform_attribute_mode, )