Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add BZip2 support (Ported from SCIFIO)
  • Loading branch information
gab1one authored and ctrueden committed Nov 12, 2021
commit 34e82ddd4f5a5a42a4473189e45ef08cf7fc22a7
64 changes: 64 additions & 0 deletions src/main/java/org/scijava/io/handle/BZip2Handle.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* #%L
* SciJava Common shared library for SciJava software.
* %%
* Copyright (C) 2009 - 2017 Board of Regents of the University of
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
* Institute of Molecular Cell Biology and Genetics.
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/

package org.scijava.io.handle;

import java.io.IOException;

import org.scijava.io.handle.bzip2.CBZip2InputStream;
import org.scijava.io.location.AbstractCompressedHandle;
import org.scijava.io.location.BZip2Location;
import org.scijava.plugin.Plugin;

/**
* {@link DataHandle} for a {@link BZip2Location}.
*
* @author Gabriel Einsdorf
*/
@Plugin(type = DataHandle.class)
public class BZip2Handle extends AbstractCompressedHandle<BZip2Location> {

@Override
protected void initInputStream() throws IOException {

int skipped = 0;
// ensure 2 bytes are skipped
while (skipped < 2) {
skipped += raw().skip(2l - skipped);
}
inputStream = new CBZip2InputStream(raw(), log());
}

@Override
public Class<BZip2Location> getType() {
return BZip2Location.class;
}
}
Loading