Skip to content

Commit e1592e6

Browse files
gab1onectrueden
authored andcommitted
Add GZIP support (Ported from SCIFIO)
1 parent 34e82dd commit e1592e6

File tree

4 files changed

+238
-0
lines changed

4 files changed

+238
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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.handle;
32+
33+
import java.io.IOException;
34+
import java.util.zip.GZIPInputStream;
35+
36+
import org.scijava.io.location.AbstractCompressedHandle;
37+
import org.scijava.io.location.GZipLocation;
38+
import org.scijava.plugin.Plugin;
39+
40+
/**
41+
* StreamHandle implementation for reading from gzip-compressed files or byte
42+
* arrays. Instances of GZipHandle are read-only.
43+
*
44+
* @author Melissa Linkert
45+
* @author Gabriel Einsdorf
46+
*/
47+
@Plugin(type = DataHandle.class)
48+
public class GZipHandle extends AbstractCompressedHandle<GZipLocation> {
49+
50+
@Override
51+
public Class<GZipLocation> getType() {
52+
return GZipLocation.class;
53+
}
54+
55+
@Override
56+
protected void initInputStream() throws IOException {
57+
inputStream = new GZIPInputStream(new DataHandleInputStream<>(raw()));
58+
}
59+
60+
// @Override
61+
// public boolean isConstructable(final String file) throws IOException {
62+
// final byte[] b = new byte[2];
63+
// s.read(b);
64+
// s.close();
65+
// return Bytes.toInt(b, true) == GZIPInputStream.GZIP_MAGIC;
66+
// }
67+
68+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
package org.scijava.io.location;
3+
4+
import org.scijava.io.handle.DataHandle;
5+
import org.scijava.io.handle.GZipHandle;
6+
7+
/**
8+
* {@link Location} backed by a {@link DataHandle} that is <code>gzip</code>
9+
* compressed.
10+
*
11+
* @author Gabriel Einsdorf
12+
* @see GZipHandle
13+
*/
14+
public class GZipLocation extends AbstractHigherOrderLocation {
15+
16+
public GZipLocation(Location location) {
17+
super(location);
18+
}
19+
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
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.handle;
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.junit.Ignore;
40+
import org.junit.Test;
41+
import org.scijava.io.location.FileLocation;
42+
import org.scijava.io.location.GZipLocation;
43+
import org.scijava.io.location.Location;
44+
45+
/**
46+
* Tests {@link GZipHandle}.
47+
*
48+
* @author Gabriel Einsdorf
49+
*/
50+
public class GZipHandleTest extends DataHandleTest {
51+
52+
@Override
53+
public Class<? extends DataHandle<?>> getExpectedHandleType() {
54+
return GZipHandle.class;
55+
}
56+
57+
@Override
58+
public Location createLocation() throws IOException {
59+
// create and populate a temp file
60+
final File tmpFile = File.createTempFile("FileHandleTest",
61+
"test-file.gzip");
62+
tmpFile.deleteOnExit();
63+
64+
try (GZIPOutputStream out = new GZIPOutputStream(new FileOutputStream(
65+
tmpFile)))
66+
{
67+
populateData(out);
68+
}
69+
70+
return new GZipLocation(new FileLocation(tmpFile));
71+
}
72+
73+
@Test
74+
@Override
75+
public void testWriting() throws IOException {
76+
// no Op
77+
}
78+
79+
@Override
80+
@Test
81+
public void testReading() throws IOException {
82+
try (final DataHandle<? extends Location> handle = createHandle()) {
83+
checkBasicReadMethods(handle, false);
84+
checkEndiannessReading(handle);
85+
}
86+
}
87+
}
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.location;
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.FileLocation;
40+
import org.scijava.io.location.Location;
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)