Skip to main content

Fast random access to bzip2 files

Project description

indexed_bzip2

PyPI version Downloads License Build Status

This module provides an IndexedBzip2File class, which can be used to seek inside bzip2 files without having to decompress them first. It's based on an improved version of the bzip2 decoder bzcat from toybox, which was refactored and extended to be able to export an import bzip2 block offsets and seek to them. Seeking inside a block is only emulated, so IndexedBzip2File will only speed up seeking when there are more than one blocks, which should almost always be the cause for archives larger than 1 MB.

Installation

You can simply install it from PyPI:

pip install indexed_bzip2

Usage

Example 1

from indexed_bzip2 import IndexedBzip2File

file = IndexedBzip2File( "example.bz2" )

# You can now use it like a normal file
file.seek( 123 )
data = file.read( 100 )

The first call to seek will ensure that the block offset list is complete and therefore might create them first. Because of this the first call to seek might take a while.

Example 2

The creation of the list of bzip2 blocks can take a while because it has to decode the bzip2 file completely. To avoid this setup when opening a bzip2 file, the block offset list can be exported and imported.

from indexed_bzip2 import IndexedBzip2File

file = IndexedBzip2File( "example.bz2" )
blockOffsets = file.block_offsets() # can take a while
file.close()

file2 = IndexedBzip2File( "example.bz2" )
blockOffsets = file2.set_block_offsets( blockOffsets ) # should be fast
file2.seek( 123 )
data = file2.read( 100 )
file2.close()

Tracing the decoder

Performance profiling and tracing is done with Score-P for instrumentation and Vampir for visualization. This is one way, you could install Score-P with most of the functionalities on Debian 10.

# Install PAPI
wget http://icl.utk.edu/projects/papi/downloads/papi-5.7.0.tar.gz
tar -xf papi-5.7.0.tar.gz
cd papi-5.7.0/src
./configure
make -j
sudo make install

# Install Dependencies
sudo apt-get install libopenmpi-dev openmpi gcc-8-plugin-dev llvm-dev libclang-dev libunwind-dev libopen-trace-format-dev otf-trace

# Install Score-P (to /opt/scorep)
wget https://www.vi-hps.org/cms/upload/packages/scorep/scorep-6.0.tar.gz
tar -xf scorep-6.0.tar.gz
cd scorep-6.0
./configure --with-mpi=openmpi --enable-shared
make -j
make install

# Add /opt/scorep to your path variables on shell start
cat <<EOF >> ~/.bashrc
if test -d /opt/scorep; then
    export SCOREP_ROOT=/opt/scorep
    export PATH=$SCOREP_ROOT/bin:$PATH
    export LD_LIBRARY_PATH=$SCOREP_ROOT/lib:$LD_LIBRARY_PATH
fi
EOF

# Check whether it works
scorep --version
scorep-info config-summary

# Actually do the tracing
cd tools
bash trace.sh

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

indexed_bzip2-1.1.1.tar.gz (74.8 kB view hashes)

Uploaded Source

Built Distributions

indexed_bzip2-1.1.1-cp38-cp38-manylinux2010_x86_64.whl (411.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

indexed_bzip2-1.1.1-cp38-cp38-manylinux1_x86_64.whl (305.4 kB view hashes)

Uploaded CPython 3.8

indexed_bzip2-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl (392.6 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

indexed_bzip2-1.1.1-cp37-cp37m-manylinux1_x86_64.whl (311.5 kB view hashes)

Uploaded CPython 3.7m

indexed_bzip2-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl (392.9 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

indexed_bzip2-1.1.1-cp36-cp36m-manylinux1_x86_64.whl (310.1 kB view hashes)

Uploaded CPython 3.6m

indexed_bzip2-1.1.1-cp35-cp35m-manylinux2010_x86_64.whl (390.3 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

indexed_bzip2-1.1.1-cp35-cp35m-manylinux1_x86_64.whl (309.7 kB view hashes)

Uploaded CPython 3.5m

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page