/usr/lib/python2.7/dist-packages/iio.py is in python-libiio 0.6.40-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 | #!/usr/bin/env python
#
# Copyright (C) 2014 Analog Devices, Inc.
# Author: Paul Cercueil <paul.cercueil@analog.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
from ctypes import Structure, c_char_p, c_uint, c_int, c_ushort, \
c_char, c_void_p, c_bool, create_string_buffer, \
POINTER as _POINTER, cdll as _cdll, memmove as _memmove, byref as _byref
from os import strerror as _strerror
from platform import system as _system
def _checkNull(result, func, arguments):
if result:
return result
else:
raise Exception("Null pointer")
def _checkNegative(result, func, arguments):
if result >= 0:
return result
else:
raise Exception("Error: " + _strerror(-result))
class _Context(Structure):
pass
class _Device(Structure):
pass
class _Channel(Structure):
pass
class _Buffer(Structure):
pass
_ContextPtr = _POINTER(_Context)
_DevicePtr = _POINTER(_Device)
_ChannelPtr = _POINTER(_Channel)
_BufferPtr = _POINTER(_Buffer)
_lib = _cdll.LoadLibrary('libiio.dll' if 'Windows' in _system() else 'libiio.so.0')
_new_local = _lib.iio_create_local_context
_new_local.restype = _ContextPtr
_new_local.errcheck = _checkNull
_new_xml = _lib.iio_create_xml_context
_new_xml.restype = _ContextPtr
_new_xml.argtypes = (c_char_p, )
_new_xml.errcheck = _checkNull
_new_network = _lib.iio_create_network_context
_new_network.restype = _ContextPtr
_new_network.argtypes = (c_char_p, )
_new_network.errcheck = _checkNull
_new_usb = _lib.iio_create_usb_context
_new_usb.restype = _ContextPtr
_new_usb.argtypes = (c_ushort, c_ushort, )
_new_usb.errcheck = _checkNull
_new_default = _lib.iio_create_default_context
_new_default.restype = _ContextPtr
_new_default.errcheck = _checkNull
_destroy = _lib.iio_context_destroy
_destroy.argtypes = (_ContextPtr, )
_get_name = _lib.iio_context_get_name
_get_name.restype = c_char_p
_get_name.argtypes = (_ContextPtr, )
_get_name.errcheck = _checkNull
_get_description = _lib.iio_context_get_description
_get_description.restype = c_char_p
_get_description.argtypes = (_ContextPtr, )
_get_xml = _lib.iio_context_get_xml
_get_xml.restype = c_char_p
_get_xml.argtypes = (_ContextPtr, )
_get_library_version = _lib.iio_library_get_version
_get_library_version.argtypes = (_POINTER(c_uint), _POINTER(c_uint), c_char_p, )
_get_version = _lib.iio_context_get_version
_get_version.restype = c_int
_get_version.argtypes = (_ContextPtr, _POINTER(c_uint), _POINTER(c_uint), c_char_p, )
_get_version.errcheck = _checkNegative
_devices_count = _lib.iio_context_get_devices_count
_devices_count.restype = c_uint
_devices_count.argtypes = (_ContextPtr, )
_get_device = _lib.iio_context_get_device
_get_device.restype = _DevicePtr
_get_device.argtypes = (_ContextPtr, c_uint)
_get_device.errcheck = _checkNull
_set_timeout = _lib.iio_context_set_timeout
_set_timeout.restype = c_int
_set_timeout.argtypes = (_ContextPtr, c_uint, )
_set_timeout.errcheck = _checkNegative
_clone = _lib.iio_context_clone
_clone.restype = _ContextPtr
_clone.argtypes = (_ContextPtr, )
_clone.errcheck = _checkNull
_d_get_id = _lib.iio_device_get_id
_d_get_id.restype = c_char_p
_d_get_id.argtypes = (_DevicePtr, )
_d_get_id.errcheck = _checkNull
_d_get_name = _lib.iio_device_get_name
_d_get_name.restype = c_char_p
_d_get_name.argtypes = (_DevicePtr, )
_d_attr_count = _lib.iio_device_get_attrs_count
_d_attr_count.restype = c_uint
_d_attr_count.argtypes = (_DevicePtr, )
_d_get_attr = _lib.iio_device_get_attr
_d_get_attr.restype = c_char_p
_d_get_attr.argtypes = (_DevicePtr, )
_d_get_attr.errcheck = _checkNull
_d_read_attr = _lib.iio_device_attr_read
_d_read_attr.restype = c_int
_d_read_attr.argtypes = (_DevicePtr, c_char_p, c_char_p, c_uint)
_d_read_attr.errcheck = _checkNegative
_d_write_attr = _lib.iio_device_attr_write
_d_write_attr.restype = c_int
_d_write_attr.argtypes = (_DevicePtr, c_char_p, c_char_p)
_d_write_attr.errcheck = _checkNegative
_d_debug_attr_count = _lib.iio_device_get_debug_attrs_count
_d_debug_attr_count.restype = c_uint
_d_debug_attr_count.argtypes = (_DevicePtr, )
_d_get_debug_attr = _lib.iio_device_get_debug_attr
_d_get_debug_attr.restype = c_char_p
_d_get_debug_attr.argtypes = (_DevicePtr, )
_d_get_debug_attr.errcheck = _checkNull
_d_read_debug_attr = _lib.iio_device_debug_attr_read
_d_read_debug_attr.restype = c_int
_d_read_debug_attr.argtypes = (_DevicePtr, c_char_p, c_char_p, c_uint)
_d_read_debug_attr.errcheck = _checkNegative
_d_write_debug_attr = _lib.iio_device_debug_attr_write
_d_write_debug_attr.restype = c_int
_d_write_debug_attr.argtypes = (_DevicePtr, c_char_p, c_char_p)
_d_write_debug_attr.errcheck = _checkNegative
_d_reg_write = _lib.iio_device_reg_write
_d_reg_write.restype = c_int
_d_reg_write.argtypes = (_DevicePtr, c_uint, c_uint)
_d_reg_read = _lib.iio_device_reg_read
_d_reg_read.restype = c_int
_d_reg_read.argtypes = (_DevicePtr, c_uint, _POINTER(c_uint))
_channels_count = _lib.iio_device_get_channels_count
_channels_count.restype = c_uint
_channels_count.argtypes = (_DevicePtr, )
_get_channel = _lib.iio_device_get_channel
_get_channel.restype = _ChannelPtr
_get_channel.argtypes = (_DevicePtr, c_uint)
_get_channel.errcheck = _checkNull
_get_sample_size = _lib.iio_device_get_sample_size
_get_sample_size.restype = c_int
_get_sample_size.argtypes = (_DevicePtr, )
_get_sample_size.errcheck = _checkNegative
_d_is_trigger = _lib.iio_device_is_trigger
_d_is_trigger.restype = c_bool
_d_is_trigger.argtypes = (_DevicePtr, )
_d_get_trigger = _lib.iio_device_get_trigger
_d_get_trigger.restype = c_int
_d_get_trigger.argtypes = (_DevicePtr, _DevicePtr, )
_d_get_trigger.errcheck = _checkNegative
_d_set_trigger = _lib.iio_device_set_trigger
_d_set_trigger.restype = c_int
_d_set_trigger.argtypes = (_DevicePtr, _DevicePtr, )
_d_set_trigger.errcheck = _checkNegative
_d_set_buffers_count = _lib.iio_device_set_kernel_buffers_count
_d_set_buffers_count.restype = c_int
_d_set_buffers_count.argtypes = (_DevicePtr, c_uint)
_d_set_buffers_count.errcheck = _checkNegative
_c_get_id = _lib.iio_channel_get_id
_c_get_id.restype = c_char_p
_c_get_id.argtypes = (_ChannelPtr, )
_c_get_id.errcheck = _checkNull
_c_get_name = _lib.iio_channel_get_name
_c_get_name.restype = c_char_p
_c_get_name.argtypes = (_ChannelPtr, )
_c_is_output = _lib.iio_channel_is_output
_c_is_output.restype = c_bool
_c_is_output.argtypes = (_ChannelPtr, )
_c_is_scan_element = _lib.iio_channel_is_scan_element
_c_is_scan_element.restype = c_bool
_c_is_scan_element.argtypes = (_ChannelPtr, )
_c_attr_count = _lib.iio_channel_get_attrs_count
_c_attr_count.restype = c_uint
_c_attr_count.argtypes = (_ChannelPtr, )
_c_get_attr = _lib.iio_channel_get_attr
_c_get_attr.restype = c_char_p
_c_get_attr.argtypes = (_ChannelPtr, )
_c_get_attr.errcheck = _checkNull
_c_get_filename = _lib.iio_channel_attr_get_filename
_c_get_filename.restype = c_char_p
_c_get_filename.argtypes = (_ChannelPtr, c_char_p, )
_c_get_filename.errcheck = _checkNull
_c_read_attr = _lib.iio_channel_attr_read
_c_read_attr.restype = c_int
_c_read_attr.argtypes = (_ChannelPtr, c_char_p, c_char_p, c_uint)
_c_read_attr.errcheck = _checkNegative
_c_write_attr = _lib.iio_channel_attr_write
_c_write_attr.restype = c_int
_c_write_attr.argtypes = (_ChannelPtr, c_char_p, c_char_p)
_c_write_attr.errcheck = _checkNegative
_c_enable = _lib.iio_channel_enable
_c_enable.argtypes = (_ChannelPtr, )
_c_disable = _lib.iio_channel_disable
_c_disable.argtypes = (_ChannelPtr, )
_c_is_enabled = _lib.iio_channel_is_enabled
_c_is_enabled.restype = c_bool
_c_is_enabled.argtypes = (_ChannelPtr, )
_c_read = _lib.iio_channel_read
_c_read.restype = c_uint
_c_read.argtypes = (_ChannelPtr, _BufferPtr, c_void_p, c_uint, )
_c_read_raw = _lib.iio_channel_read_raw
_c_read_raw.restype = c_uint
_c_read_raw.argtypes = (_ChannelPtr, _BufferPtr, c_void_p, c_uint, )
_c_write = _lib.iio_channel_write
_c_write.restype = c_uint
_c_write.argtypes = (_ChannelPtr, _BufferPtr, c_void_p, c_uint, )
_c_write_raw = _lib.iio_channel_write_raw
_c_write_raw.restype = c_uint
_c_write_raw.argtypes = (_ChannelPtr, _BufferPtr, c_void_p, c_uint, )
_create_buffer = _lib.iio_device_create_buffer
_create_buffer.restype = _BufferPtr
_create_buffer.argtypes = (_DevicePtr, c_uint, c_bool, )
_create_buffer.errcheck = _checkNull
_buffer_destroy = _lib.iio_buffer_destroy
_buffer_destroy.argtypes = (_BufferPtr, )
_buffer_refill = _lib.iio_buffer_refill
_buffer_refill.restype = c_int
_buffer_refill.argtypes = (_BufferPtr, )
_buffer_refill.errcheck = _checkNegative
_buffer_push_partial = _lib.iio_buffer_push_partial
_buffer_push_partial.restype = c_int
_buffer_push_partial.argtypes = (_BufferPtr, c_uint, )
_buffer_push_partial.errcheck = _checkNegative
_buffer_start = _lib.iio_buffer_start
_buffer_start.restype = c_void_p
_buffer_start.argtypes = (_BufferPtr, )
_buffer_end = _lib.iio_buffer_end
_buffer_end.restype = c_void_p
_buffer_end.argtypes = (_BufferPtr, )
def _get_lib_version():
major = c_uint()
minor = c_uint()
buf = create_string_buffer(8)
_get_library_version(_byref(major), _byref(minor), buf)
return (major.value, minor.value, buf.value )
version = _get_lib_version()
class _Attr(object):
def __init__(self, name, filename = None):
self._name = name
self._filename = name if filename is None else filename
def __str__(self):
return self._name
name = property(lambda self: self._name, None, None,
"The name of this attribute.\n\ttype=str")
filename = property(lambda self: self._filename, None, None,
"The filename in sysfs to which this attribute is bound.\n\ttype=str")
value = property(lambda self: self.__read(), lambda self, x: self.__write(x),
None, "Current value of this attribute.\n\ttype=str")
class ChannelAttr(_Attr):
"""Represents an attribute of a channel."""
def __init__(self, channel, name):
super(ChannelAttr, self).__init__(name, _c_get_filename(channel, name))
self._channel = channel
def _Attr__read(self):
buf = create_string_buffer(1024)
_c_read_attr(self._channel, self.name, buf, len(buf))
return buf.value
def _Attr__write(self, value):
_c_write_attr(self._channel, self.name, value)
class DeviceAttr(_Attr):
"""Represents an attribute of an IIO device."""
def __init__(self, device, name):
super(DeviceAttr, self).__init__(name)
self._device = device
def _Attr__read(self):
buf = create_string_buffer(1024)
_d_read_attr(self._device, self.name, buf, len(buf))
return buf.value
def _Attr__write(self, value):
_d_write_attr(self._device, self.name, value)
class DeviceDebugAttr(DeviceAttr):
"""Represents a debug attribute of an IIO device."""
def __init__(self, device, name):
super(DeviceDebugAttr, self).__init__(device, name)
def _Attr__read(self):
buf = create_string_buffer(1024)
_d_read_debug_attr(self._device, self.name, buf, len(buf))
return buf.value
def _Attr__write(self, value):
_d_write_debug_attr(self._device, self.name, value)
class Channel(object):
def __init__(self, dev, _channel):
self.dev = dev
self._channel = _channel
self._attrs = { name : ChannelAttr(_channel, name) for name in \
[_c_get_attr(_channel, x) for x in xrange(0, _c_attr_count(_channel))] }
self._id = _c_get_id(self._channel)
self._name = _c_get_name(self._channel)
self._output = _c_is_output(self._channel)
self._scan_element = _c_is_scan_element(self._channel)
def read(self, buf, raw = False):
"""
Extract the samples corresponding to this channel from the given iio.Buffer object.
parameters:
buf: type=iio.Buffer
A valid instance of the iio.Buffer class
raw: type=bool
If set to True, the samples are not converted from their
native format to their host format
returns: type=bytearray
An array containing the samples for this channel
"""
array = bytearray(buf._length)
mytype = c_char * len(array)
c_array = mytype.from_buffer(array)
if raw:
length = _c_read_raw(self._channel, buf._buffer, c_array, len(array))
else:
length = _c_read(self._channel, buf._buffer, c_array, len(array))
return array[:length]
def write(self, buf, array, raw = False):
"""
Write the specified array of samples corresponding to this channel into the given iio.Buffer object.
parameters:
buf: type=iio.Buffer
A valid instance of the iio.Buffer class
array: type=bytearray
The array containing the samples to copy
raw: type=bool
If set to True, the samples are not converted from their
host format to their native format
returns: type=int
The number of bytes written
"""
mytype = c_char * len(array)
c_array = mytype.from_buffer(array)
if raw:
return _c_write_raw(self._channel, buf._buffer, c_array, len(array))
else:
return _c_write(self._channel, buf._buffer, c_array, len(array))
id = property(lambda self: self._id, None, None,
"An identifier of this channel.\n\tNote that it is possible that two channels have the same ID, if one is an input channel and the other is an output channel.\n\ttype=str")
name = property(lambda self: self._name, None, None,
"The name of this channel.\n\ttype=str")
attrs = property(lambda self: self._attrs, None, None,
"List of attributes for this channel.\n\ttype=dict of iio.ChannelAttr")
output = property(lambda self: self._output, None, None,
"Contains True if the channel is an output channel, False otherwise.\n\ttype=bool")
scan_element = property(lambda self: self._scan_element, None, None,
"Contains True if the channel is a scan element, False otherwise.\n\tIf a channel is a scan element, then it is possible to enable it and use it for I/O operations.\n\ttype=bool")
enabled = property(lambda self: _c_is_enabled(self._channel), \
lambda self, x: _c_enable(self._channel) if x else _c_disable(self._channel),
None, "Configured state of the channel\n\ttype=bool")
class Buffer(object):
"""The class used for all I/O operations."""
def __init__(self, device, samples_count, cyclic = False):
"""
Initializes a new instance of the Buffer class.
parameters:
device: type=iio.Device
The iio.Device object that represents the device where the I/O
operations will be performed
samples_count: type=int
The size of the buffer, in samples
circular: type=bool
If set to True, the buffer is circular
returns: type=iio.Buffer
An new instance of this class
"""
self.dev = device
try:
self._buffer = _create_buffer(device._device, samples_count, cyclic)
except:
self._buffer = None
raise
self._length = samples_count * device.sample_size
self._samples_count = samples_count
def __del__(self):
if self._buffer is not None:
_buffer_destroy(self._buffer)
def __len__(self):
"""The size of this buffer, in bytes."""
return self._length
def refill(self):
"""Fetch a new set of samples from the hardware."""
_buffer_refill(self._buffer)
def push(self, samples_count = None):
"""
Submit the samples contained in this buffer to the hardware.
parameters:
samples_count: type=int
The number of samples to submit, default = full buffer
"""
_buffer_push_partial(self._buffer, samples_count or self._samples_count)
def read(self):
"""
Retrieve the samples contained inside the Buffer object.
returns: type=bytearray
An array containing the samples
"""
start = _buffer_start(self._buffer)
end = _buffer_end(self._buffer)
array = bytearray(end - start)
mytype = c_char * len(array)
c_array = mytype.from_buffer(array)
_memmove(c_array, start, len(array))
return array
def write(self, array):
"""
Copy the given array of samples inside the Buffer object.
parameters:
array: type=bytearray
The array containing the samples to copy
returns: type=int
The number of bytes written into the buffer
"""
start = _buffer_start(self._buffer)
end = _buffer_end(self._buffer)
length = end - start
if length > len(array):
length = len(array)
mytype = c_char * len(array)
c_array = mytype.from_buffer(array)
_memmove(start, c_array, length)
return length
class _DeviceOrTrigger(object):
def __init__(self, ctx, _device):
self.ctx = ctx
self._device = _device
self._attrs = { name : DeviceAttr(_device, name) for name in \
[_d_get_attr(_device, x) for x in xrange(0, _d_attr_count(_device))] }
self._debug_attrs = { name: DeviceDebugAttr(_device, name) for name in \
[_d_get_debug_attr(_device, x) for x in xrange(0, _d_debug_attr_count(_device))] }
# TODO(pcercuei): Use a dictionary for the channels.
chans = [ Channel(self, _get_channel(self._device, x))
for x in xrange(0, _channels_count(self._device)) ]
self._channels = sorted(chans, key=lambda c: c.id)
self._id = _d_get_id(self._device)
self._name = _d_get_name(self._device)
def reg_write(self, reg, value):
"""
Set a value to one register of this device.
parameters:
reg: type=int
The register address
value: type=int
The value that will be used for this register
"""
_d_reg_write(self._device, reg, value)
def reg_read(self, reg):
"""
Read the content of a register of this device.
parameters:
reg: type=int
The register address
returns: type=int
The value of the register
"""
value = c_uint()
_d_reg_read(self._device, reg, _byref(value))
return value.value
def find_channel(self, name_or_id, is_output = False):
"""
Find a IIO channel by its name or ID.
parameters:
name_or_id: type=str
The name or ID of the channel to find
is_output: type=bool
Set to True to search for an output channel
returns: type=iio.Device or type=iio.Trigger
The IIO Device
"""
return (filter(lambda x: (name_or_id == x.name or name_or_id == x.id) \
and x.output == is_output, self.channels) or [None])[0]
def set_kernel_buffers_count(self, count):
"""
Set the number of kernel buffers to use with the specified device.
parameters:
count: type=int
The number of kernel buffers
"""
return _d_set_buffers_count(self._device, count)
@property
def sample_size(self):
"""
Current sample size of this device.
type: int
The sample size varies each time channels get enabled or disabled."""
return _get_sample_size(self._device)
id = property(lambda self: self._id, None, None,
"An identifier of this device, only valid in this IIO context.\n\ttype=str")
name = property(lambda self: self._name, None, None,
"The name of this device.\n\ttype=str")
attrs = property(lambda self: self._attrs, None, None,
"List of attributes for this IIO device.\n\ttype=dict of iio.DeviceAttr")
debug_attrs = property(lambda self: self._debug_attrs, None, None,
"List of debug attributes for this IIO device.\n\ttype=dict of iio.DeviceDebugAttr")
channels = property(lambda self: self._channels, None, None,
"List of channels available with this IIO device.\n\ttype=list of iio.Channel objects")
class Trigger(_DeviceOrTrigger):
"""Contains the representation of an IIO device that can act as a trigger."""
def __init__(self, ctx, _device):
super(Trigger, self).__init__(ctx, _device)
def _get_rate(self):
return int(self._attrs['frequency'].value)
def _set_rate(self, value):
self._attrs['frequency'].value = str(value)
frequency = property(_get_rate, _set_rate, None,
"Configured frequency (in Hz) of this trigger\n\ttype=int")
class Device(_DeviceOrTrigger):
"""Contains the representation of an IIO device."""
def __init__(self, ctx, _device):
super(Device, self).__init__(ctx, _device)
def _set_trigger(self, trigger):
_d_set_trigger(self._device, trigger._device if trigger else None)
def _get_trigger(self):
value = _Device()
_d_get_trigger(self._device, _byref(value))
for dev in self.ctx._devices:
if value == dev._device:
return dev
return None
trigger = property(_get_trigger, _set_trigger, None, \
"Contains the configured trigger for this IIO device.\n\ttype=iio.Trigger")
class Context(object):
"""Contains the representation of an IIO context."""
def __init__(self, _context=None):
"""
Initializes a new instance of the Context class, using the local or the network backend of the IIO library.
returns: type=iio.Context
An new instance of this class
This function will create a network context if the IIOD_REMOTE
environment variable is set to the hostname where the IIOD server runs.
If set to an empty string, the server will be discovered using ZeroConf.
If the environment variable is not set, a local context will be created instead.
"""
if(_context is None):
self._context = _new_default()
else:
self._context = _context
# TODO(pcercuei): Use a dictionary for the devices.
self._devices = [ Trigger(self, dev) if _d_is_trigger(dev) else Device(self, dev) for dev in \
[ _get_device(self._context, x) for x in xrange(0, _devices_count(self._context)) ]]
self._name = _get_name(self._context)
self._description = _get_description(self._context)
self._xml = _get_xml(self._context)
major = c_uint()
minor = c_uint()
buf = create_string_buffer(8)
_get_version(self._context, _byref(major), _byref(minor), buf)
self._version = (major.value, minor.value, buf.value )
def __del__(self):
if(self._context is not None):
_destroy(self._context)
def set_timeout(self, timeout):
"""
Set a timeout for I/O operations.
parameters:
timeout: type=int
The timeout value, in milliseconds
"""
_set_timeout(self._context, timeout)
def clone(self):
"""
Clone this instance.
returns: type=iio.LocalContext
An new instance of this class
"""
return Context(_clone(self._context))
def find_device(self, name_or_id):
"""
Find a IIO device by its name or ID.
parameters:
name_or_id: type=str
The name or ID of the device to find
returns: type=iio.Device or type=iio.Trigger
The IIO Device
"""
return (filter(lambda x: name_or_id == x.name or name_or_id == x.id, self.devices) or [None])[0]
name = property(lambda self: self._name, None, None, \
"Name of this IIO context.\n\ttype=str")
description = property(lambda self: self._description, None, None, \
"Description of this IIO context.\n\ttype=str")
xml = property(lambda self: self._xml, None, None, \
"XML representation of the current context.\n\ttype=str")
version = property(lambda self: self._version, None, None, \
"Version of the backend.\n\ttype=(int, int, str)")
devices = property(lambda self: self._devices, None, None, \
"List of devices contained in this context.\n\ttype=list of iio.Device and iio.Trigger objects")
class LocalContext(Context):
def __init__(self):
"""
Initializes a new instance of the Context class, using the local backend of the IIO library.
returns: type=iio.LocalContext
An new instance of this class
"""
ctx = _new_local()
super(LocalContext, self).__init__(ctx)
class XMLContext(Context):
def __init__(self, xmlfile):
"""
Initializes a new instance of the Context class, using the XML backend of the IIO library.
parameters:
xmlfile: type=str
Filename of the XML file to build the context from
returns: type=iio.XMLContext
An new instance of this class
"""
ctx = _new_xml(xmlfile)
super(XMLContext, self).__init__(ctx)
class NetworkContext(Context):
def __init__(self, hostname = None):
"""
Initializes a new instance of the Context class, using the network backend of the IIO library.
parameters:
hostname: type=str
Hostname, IPv4 or IPv6 address where the IIO Daemon is running
returns: type=iio.NetworkContext
An new instance of this class
"""
ctx = _new_network(hostname)
super(NetworkContext, self).__init__(ctx)
class UsbContext(Context):
def __init__(self, vid, pid):
"""
Initialize a new instance of the Context class, with the USB device corresponding to the given VID/PID.
parameters:
vid: type=int
The Vendor identification number of the USB device
pid: type=int
The Product identification number of the USB device
returns: type=iio.UsbContext
A new instance of this class
"""
ctx = _new_usb(vid, pid)
super(UsbContext, self).__init__(ctx)
|