Skip to content

Commit 9912012

Browse files
gab1onectrueden
authored andcommitted
Add GZip support (adapted from SCIFIO)
1 parent 833b88e commit 9912012

File tree

4 files changed

+234
-0
lines changed

4 files changed

+234
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* #%L
3+
* SCIFIO library for reading and converting scientific file formats.
4+
* %%
5+
* Copyright (C) 2011 - 2016 Board of Regents of the University of
6+
* Wisconsin-Madison
7+
* %%
8+
* Redistribution and use in source and binary forms, with or without
9+
* modification, are permitted provided that the following conditions are met:
10+
*
11+
* 1. Redistributions of source code must retain the above copyright notice,
12+
* this list of conditions and the following disclaimer.
13+
* 2. Redistributions in binary form must reproduce the above copyright notice,
14+
* this list of conditions and the following disclaimer in the documentation
15+
* and/or other materials provided with the distribution.
16+
*
17+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
21+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27+
* POSSIBILITY OF SUCH DAMAGE.
28+
* #L%
29+
*/
30+
31+
package org.scijava.io.location.gzip;
32+
33+
import java.io.IOException;
34+
import java.util.zip.GZIPInputStream;
35+
36+
import org.scijava.io.DataHandle;
37+
import org.scijava.io.DataHandleInputStream;
38+
import org.scijava.io.location.AbstractCompressedHandle;
39+
import org.scijava.plugin.Plugin;
40+
41+
/**
42+
* StreamHandle implementation for reading from gzip-compressed files or byte
43+
* arrays. Instances of GZipHandle are read-only.
44+
*
45+
* @author Melissa Linkert
46+
* @author Gabriel Einsdorf
47+
*/
48+
@Plugin(type = DataHandle.class)
49+
public class GZipHandle extends AbstractCompressedHandle<GZipLocation> {
50+
51+
@Override
52+
public Class<GZipLocation> getType() {
53+
return GZipLocation.class;
54+
}
55+
56+
@Override
57+
protected void initInputStream() throws IOException {
58+
inputStream = new GZIPInputStream(new DataHandleInputStream<>(raw()));
59+
}
60+
61+
// @Override
62+
// public boolean isConstructable(final String file) throws IOException {
63+
// final byte[] b = new byte[2];
64+
// s.read(b);
65+
// s.close();
66+
// return Bytes.toInt(b, true) == GZIPInputStream.GZIP_MAGIC;
67+
// }
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
package org.scijava.io.location.gzip;
3+
4+
import org.scijava.io.DataHandle;
5+
import org.scijava.io.Location;
6+
import org.scijava.io.location.AbstractHigherOrderLocation;
7+
8+
/**
9+
* {@link Location} backed by a {@link DataHandle} that is <code>gzip</code>
10+
* compressed.
11+
*
12+
* @author Gabriel Einsdorf
13+
* @see GZipHandle
14+
*/
15+
public class GZipLocation extends AbstractHigherOrderLocation {
16+
17+
public GZipLocation(Location location) {
18+
super(location);
19+
}
20+
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
/*
2+
* #%L
3+
* SciJava Common shared library for SciJava software.
4+
* %%
5+
* Copyright (C) 2009 - 2017 Board of Regents of the University of
6+
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
7+
* Institute of Molecular Cell Biology and Genetics.
8+
* %%
9+
* Redistribution and use in source and binary forms, with or without
10+
* modification, are permitted provided that the following conditions are met:
11+
*
12+
* 1. Redistributions of source code must retain the above copyright notice,
13+
* this list of conditions and the following disclaimer.
14+
* 2. Redistributions in binary form must reproduce the above copyright notice,
15+
* this list of conditions and the following disclaimer in the documentation
16+
* and/or other materials provided with the distribution.
17+
*
18+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
22+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28+
* POSSIBILITY OF SUCH DAMAGE.
29+
* #L%
30+
*/
31+
32+
package org.scijava.io;
33+
34+
import java.io.File;
35+
import java.io.FileOutputStream;
36+
import java.io.IOException;
37+
import java.util.zip.GZIPOutputStream;
38+
39+
import org.scijava.io.location.file.FileLocation;
40+
import org.scijava.io.location.gzip.GZipHandle;
41+
import org.scijava.io.location.gzip.GZipLocation;
42+
43+
/**
44+
* Tests {@link GZipHandle}.
45+
*
46+
* @author Gabriel Einsdorf
47+
*/
48+
public class GZipHandleTest extends DataHandleTest {
49+
50+
@Override
51+
public Class<? extends DataHandle<?>> getExpectedHandleType() {
52+
return GZipHandle.class;
53+
}
54+
55+
@Override
56+
public Location createLocation() throws IOException {
57+
// create and populate a temp file
58+
final File tmpFile = File.createTempFile("FileHandleTest",
59+
"test-file.gzip");
60+
tmpFile.deleteOnExit();
61+
62+
try (GZIPOutputStream out = new GZIPOutputStream(new FileOutputStream(
63+
tmpFile)))
64+
{
65+
populateData(out);
66+
}
67+
68+
return new GZipLocation(new FileLocation(tmpFile));
69+
}
70+
71+
@Override
72+
protected <L extends Location> void checkWrites(DataHandle<L> handle)
73+
throws IOException
74+
{
75+
// NB Handle is read only
76+
}
77+
@Override
78+
protected void setup() {
79+
checkLength = false;
80+
}
81+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* #%L
3+
* SciJava Common shared library for SciJava software.
4+
* %%
5+
* Copyright (C) 2009 - 2017 Board of Regents of the University of
6+
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
7+
* Institute of Molecular Cell Biology and Genetics.
8+
* %%
9+
* Redistribution and use in source and binary forms, with or without
10+
* modification, are permitted provided that the following conditions are met:
11+
*
12+
* 1. Redistributions of source code must retain the above copyright notice,
13+
* this list of conditions and the following disclaimer.
14+
* 2. Redistributions in binary form must reproduce the above copyright notice,
15+
* this list of conditions and the following disclaimer in the documentation
16+
* and/or other materials provided with the distribution.
17+
*
18+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
22+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28+
* POSSIBILITY OF SUCH DAMAGE.
29+
* #L%
30+
*/
31+
32+
package org.scijava.io;
33+
34+
import static org.junit.Assert.assertEquals;
35+
36+
import java.io.IOException;
37+
38+
import org.junit.Test;
39+
import org.scijava.io.location.file.FileLocation;
40+
import org.scijava.io.location.gzip.GZipLocation;
41+
42+
/**
43+
* Tests {@link GZipLocation}.
44+
*
45+
* @author Gabriel Einsdorf
46+
*/
47+
public class GZipLocationTest {
48+
49+
/**
50+
* Tests {@link GZipLocation#GZipLocation(Location)}.
51+
*
52+
* @throws IOException
53+
*/
54+
@Test
55+
public void testFile() throws IOException {
56+
final String path = "/not/actually/a/real-file";
57+
final FileLocation loc = new FileLocation(path);
58+
GZipLocation zLoc = new GZipLocation(loc);
59+
60+
assertEquals(zLoc.getBaseLocation(), loc);
61+
}
62+
63+
}

0 commit comments

Comments
 (0)