blob: 153abd33075a928bb3100f2402f1a73ccb4be6d7 [file] [log] [blame]
/*
* Copyright 2009-2010 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.dataflow.std.base;
import org.json.JSONException;
import org.json.JSONObject;
import edu.uci.ics.hyracks.api.application.ICCApplicationContext;
import edu.uci.ics.hyracks.api.constraints.IConstraintAcceptor;
import edu.uci.ics.hyracks.api.dataflow.IOperatorDescriptor;
import edu.uci.ics.hyracks.api.dataflow.OperatorDescriptorId;
import edu.uci.ics.hyracks.api.dataflow.value.RecordDescriptor;
import edu.uci.ics.hyracks.api.job.IOperatorDescriptorRegistry;
import edu.uci.ics.hyracks.api.job.JobActivityGraph;
public abstract class AbstractOperatorDescriptor implements IOperatorDescriptor {
private static final long serialVersionUID = 1L;
protected final OperatorDescriptorId odId;
protected String[] partitions;
protected final RecordDescriptor[] recordDescriptors;
protected final int inputArity;
protected final int outputArity;
protected String displayName;
public AbstractOperatorDescriptor(IOperatorDescriptorRegistry spec, int inputArity, int outputArity) {
odId = spec.createOperatorDescriptorId(this);
this.inputArity = inputArity;
this.outputArity = outputArity;
recordDescriptors = new RecordDescriptor[outputArity];
displayName = getClass().getName() + "[" + odId + "]";
}
@Override
public final OperatorDescriptorId getOperatorId() {
return odId;
}
@Override
public int getInputArity() {
return inputArity;
}
@Override
public int getOutputArity() {
return outputArity;
}
@Override
public RecordDescriptor[] getOutputRecordDescriptors() {
return recordDescriptors;
}
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
@Override
public void contributeSchedulingConstraints(IConstraintAcceptor constraintAcceptor, ICCApplicationContext appCtx) {
// do nothing
}
@Override
public JSONObject toJSON() throws JSONException {
JSONObject jop = new JSONObject();
jop.put("id", String.valueOf(getOperatorId()));
jop.put("java-class", getClass().getName());
jop.put("in-arity", getInputArity());
jop.put("out-arity", getOutputArity());
jop.put("display-name", displayName);
return jop;
}
}