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
|
# libnbd Python bindings
# Copyright Red Hat
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import nbd
import sys
from array import array
import os
nbdkit = os.getenv("NBDKIT", "nbdkit")
h = nbd.NBD()
h.connect_command([nbdkit, "-s", "--exit-with-parent", "-v",
"pattern", "size=1024"])
buf = nbd.Buffer(512)
cookie = h.aio_pread(buf, 0)
while not h.aio_command_completed(cookie):
h.poll(-1)
buf1 = buf.to_bytearray()
# Prove that .to_bytearray() defaults to copying, even if buf is reused
cookie = h.aio_pread(buf, 512)
while not h.aio_command_completed(cookie):
h.poll(-1)
buf2 = buf.to_bytearray()
print("%r" % buf1)
# The nbdkit pattern plugin exposes 64-bit numbers in bigendian order
arr = array('q', range(0, 1024, 8))
if sys.byteorder == 'little':
arr.byteswap()
assert buf1 == memoryview(arr).cast('B')[:512]
assert buf2 == memoryview(arr).cast('B')[512:]
# It is also possible to read directly into any writeable buffer-like object.
# However, aio.Buffer(n) with h.set_pread_initialize(False) may be faster,
# because it skips python's pre-initialization of bytearray(n).
try:
h.aio_pread(bytes(512), 0)
assert False
except BufferError:
pass
buf3 = bytearray(512)
cookie = h.aio_pread(buf3, 0)
# While the read is pending, the buffer cannot be resized
try:
buf3.pop()
assert False
except BufferError:
pass
while not h.aio_command_completed(cookie):
h.poll(-1)
buf3.append(buf3.pop())
assert buf3 == buf1
|