blob: bb7a74879d1c66ef588cf874d0814e8bddad5dc7 [file] [log] [blame]
/*
* Copyright 2009-2013 by The Regents of the University of California
* Licensed 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 from
*
* 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 edu.uci.ics.hyracks.algebricks.runtime.writers;
import java.io.PrintStream;
import edu.uci.ics.hyracks.algebricks.common.exceptions.AlgebricksException;
import edu.uci.ics.hyracks.algebricks.data.IAWriter;
import edu.uci.ics.hyracks.algebricks.data.IAWriterFactory;
import edu.uci.ics.hyracks.algebricks.data.IPrinter;
import edu.uci.ics.hyracks.algebricks.data.IPrinterFactory;
import edu.uci.ics.hyracks.api.comm.IFrameTupleAccessor;
import edu.uci.ics.hyracks.api.dataflow.value.RecordDescriptor;
public class PrinterBasedWriterFactory implements IAWriterFactory {
private static final long serialVersionUID = 1L;
public static final PrinterBasedWriterFactory INSTANCE = new PrinterBasedWriterFactory();
public PrinterBasedWriterFactory() {
}
@Override
public IAWriter createWriter(final int[] fields, final PrintStream printStream,
final IPrinterFactory[] printerFactories, RecordDescriptor inputRecordDescriptor) {
final IPrinter[] printers = new IPrinter[printerFactories.length];
for (int i = 0; i < printerFactories.length; i++) {
printers[i] = printerFactories[i].createPrinter();
}
return new IAWriter() {
@Override
public void init() throws AlgebricksException {
for (int i = 0; i < printers.length; i++) {
printers[i].init();
}
}
@Override
public void printTuple(IFrameTupleAccessor tAccess, int tIdx) throws AlgebricksException {
for (int i = 0; i < fields.length; i++) {
int fldStart = tAccess.getTupleStartOffset(tIdx) + tAccess.getFieldSlotsLength()
+ tAccess.getFieldStartOffset(tIdx, fields[i]);
int fldLen = tAccess.getFieldLength(tIdx, fields[i]);
if (i > 0) {
printStream.print("; ");
}
printers[i].print(tAccess.getBuffer().array(), fldStart, fldLen, printStream);
}
printStream.println();
}
};
}
}