com.nflabs.zeppelin.zengine.ZContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zeppelin-zengine Show documentation
Show all versions of zeppelin-zengine Show documentation
Zengine is java framework for data analysis on Hadoop. see http://nflabs.github.io/zeppelin/#/zengine
package com.nflabs.zeppelin.zengine;
import java.util.HashMap;
import java.util.Map;
/**
* Zeppelin Context. This context is passed to Zeppelin UDF's ZQL template
* @author moon
*
*/
public class ZContext {
public String in;
public String out;
public String arg;
private Map params;
Map paramInfos = new HashMap();
/**
* Initialize Zeppelin Context
* @param tableIn input table name
* @param tableOut output table name
* @param arg arguments
* @param params parameters to UDF
*/
public ZContext(String tableIn, String tableOut, String arg, Map params){
this.in = tableIn;
this.out = tableOut;
this.arg = arg;
this.params = params;
}
public Map getParamInfos(){
return paramInfos;
}
/**
* Get params;
* @return
*/
public Object param(String name){
return param(name, null);
}
/**
* Get params;
* @param name name of parameter
* @param defaultValue defaultValue of the param
* @return
*/
public Object param(String name, Object defaultValue){
if(paramInfos.containsKey(name)==false){
paramInfos.put(name, new ParamInfo(name, defaultValue));
}
Object r = params.get(name);
if(r==null){
return defaultValue;
} else {
return r;
}
}
/**
* Get input table name
* @return
*/
public String in(){
return in;
}
/**
* Get output table name
* @return
*/
public String out(){
return out;
}
/**
* Get arguments
* @return
*/
public String arg(){
return arg;
}
}