blob: c3493df65daede41ab59dceea6617423390508f8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.sysds.runtime.compress.io;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang.NotImplementedException;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.SequenceFile;
import org.apache.hadoop.io.SequenceFile.Reader;
import org.apache.hadoop.mapred.JobConf;
import org.apache.sysds.conf.ConfigurationManager;
import org.apache.sysds.hops.OptimizerUtils;
import org.apache.sysds.runtime.DMLRuntimeException;
import org.apache.sysds.runtime.compress.CompressedMatrixBlock;
import org.apache.sysds.runtime.compress.CompressedMatrixBlockFactory;
import org.apache.sysds.runtime.compress.DMLCompressionException;
import org.apache.sysds.runtime.compress.lib.CLALibStack;
import org.apache.sysds.runtime.io.IOUtilFunctions;
import org.apache.sysds.runtime.io.MatrixReader;
import org.apache.sysds.runtime.matrix.data.MatrixBlock;
import org.apache.sysds.runtime.matrix.data.MatrixIndexes;
public final class ReaderCompressed extends MatrixReader {
public static ReaderCompressed create() {
return new ReaderCompressed();
}
public static MatrixBlock readCompressedMatrixFromHDFS(String fname) throws IOException {
return create().readMatrixFromHDFS(fname, 10, 10, 10, 100);
}
@Override
public MatrixBlock readMatrixFromHDFS(String fname, long rlen, long clen, int blen, long estnnz)
throws IOException, DMLRuntimeException {
JobConf job = new JobConf(ConfigurationManager.getCachedJobConf());
Path path = new Path(fname);
FileSystem fs = IOUtilFunctions.getFileSystem(path, job);
checkValidInputFile(fs, path);
return readCompressedMatrix(path, job, fs, (int) rlen, (int) clen, blen);
}
@Override
public MatrixBlock readMatrixFromInputStream(InputStream is, long rlen, long clen, int blen, long estnnz)
throws IOException, DMLRuntimeException {
throw new NotImplementedException("Not implemented reading compressedMatrix from input stream");
}
private static MatrixBlock readCompressedMatrix(Path path, JobConf job, FileSystem fs, int rlen, int clen, int blen)
throws IOException {
final Map<MatrixIndexes, MatrixBlock> data = new HashMap<>();
for(Path subPath : IOUtilFunctions.getSequenceFilePaths(fs, path)){
read(subPath, job, data);
}
if(data.containsValue(null))
throw new DMLCompressionException("Invalid read data contains null:");
if(data.size() == 1)
return data.entrySet().iterator().next().getValue();
else
return CLALibStack.combine(data, OptimizerUtils.getParallelTextWriteParallelism());
}
private static void read(Path path, JobConf job, Map<MatrixIndexes, MatrixBlock> data) throws IOException {
final Reader reader = new SequenceFile.Reader(job, SequenceFile.Reader.file(path));
try {
// Materialize all sub blocks.
// Use write and read interface to read and write this object.
MatrixIndexes key = new MatrixIndexes();
CompressedWriteBlock value = new CompressedWriteBlock();
while(reader.next(key, value)) {
final MatrixBlock g = value.get();
if(g instanceof CompressedMatrixBlock)
data.put(key, g);
else if(g.isEmpty())
data.put(key, CompressedMatrixBlockFactory.createConstant(g.getNumRows(), g.getNumColumns(), 0.0));
else
data.put(key, g);
key = new MatrixIndexes();
value = new CompressedWriteBlock();
}
}
finally {
IOUtilFunctions.closeSilently(reader);
}
}
}