public abstract class RegExLoader extends LoadFunc
| Constructor and Description | 
|---|
| RegExLoader() | 
| Modifier and Type | Method and Description | 
|---|---|
| org.apache.hadoop.mapreduce.InputFormat | getInputFormat()This will be called during planning on the front end. | 
| Tuple | getNext()Retrieves the next tuple to be processed. | 
| abstract java.util.regex.Pattern | getPattern() | 
| void | prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader,
             PigSplit split)Initializes LoadFunc for reading data. | 
| void | setLocation(java.lang.String location,
           org.apache.hadoop.mapreduce.Job job)Communicate to the loader the location of the object(s) being loaded. | 
getAbsolutePath, getCacheFiles, getLoadCaster, getPathStrings, getShipFiles, join, relativeToAbsolutePath, setUDFContextSignature, warnpublic abstract java.util.regex.Pattern getPattern()
public Tuple getNext() throws java.io.IOException
LoadFuncpublic org.apache.hadoop.mapreduce.InputFormat getInputFormat()
                                                       throws java.io.IOException
LoadFuncgetInputFormat in class LoadFuncjava.io.IOException - if there is an exception during InputFormat 
 constructionpublic void prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader,
                 PigSplit split)
                   throws java.io.IOException
LoadFuncprepareToRead in class LoadFuncreader - RecordReader to be used by this instance of the LoadFuncsplit - The input PigSplit to processjava.io.IOException - if there is an exception during initializationpublic void setLocation(java.lang.String location,
               org.apache.hadoop.mapreduce.Job job)
                 throws java.io.IOException
LoadFuncLoadFunc.relativeToAbsolutePath(String, Path). Implementations
 should use this method to communicate the location (and any other information)
 to its underlying InputFormat through the Job object.
 
 This method will be called in the frontend and backend multiple times. Implementations
 should bear in mind that this method is called multiple times and should
 ensure there are no inconsistent side effects due to the multiple calls.setLocation in class LoadFunclocation - Location as returned by 
 LoadFunc.relativeToAbsolutePath(String, Path)job - the Job object
 store or retrieve earlier stored information from the UDFContextjava.io.IOException - if the location is not valid.Copyright © 2007-2012 The Apache Software Foundation