blob: c804583af07a5d388d4ab0e3ceeb8e9be58b9742 [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.pig.test;
import java.io.IOException;
import org.apache.pig.Slice;
import org.apache.pig.Slicer;
import org.apache.pig.backend.datastorage.DataStorage;
import org.apache.pig.data.DataAtom;
import org.apache.pig.data.Tuple;
/**
* Makes slices each containing a single value from 0 to value - 1.
*/
public class RangeSlicer
implements Slicer
{
/**
* Expects location to be a Stringified integer, and makes
* Integer.parseInt(location) slices. Each slice generates a single value,
* its index in the sequence of slices.
*/
public Slice[] slice (DataStorage store, String location)
throws IOException
{
int numslices = Integer.parseInt(location);
Slice[] slices = new Slice[numslices];
for (int i = 0; i < slices.length; i++) {
slices[i] = new SingleValueSlice(i);
}
return slices;
}
public void validate(DataStorage store, String location) throws IOException {
try {
Integer.parseInt(location);
} catch (NumberFormatException nfe) {
throw new IOException(nfe.getMessage());
}
}
/**
* A Slice that returns a single value from next.
*/
public static class SingleValueSlice
implements Slice
{
public int val;
private transient boolean read;
public SingleValueSlice (int value)
{
this.val = value;
}
public void close ()
throws IOException
{}
public long getLength ()
{
return 1;
}
public String[] getLocations ()
{
return new String[0];
}
public long getStart() {
return 0;
}
public long getPos ()
throws IOException
{
return read ? 1 : 0;
}
public float getProgress ()
throws IOException
{
return read ? 1 : 0;
}
public void init (DataStorage store)
throws IOException
{}
public boolean next (Tuple value)
throws IOException
{
if (!read) {
value.appendField(new DataAtom(val));
read = true;
return true;
}
return false;
}
private static final long serialVersionUID = 1L;
}
}