com.twitter.heron.streamlet.impl.ContextImpl Maven / Gradle / Ivy
// Copyright 2017 Twitter. All rights reserved.
//
// 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 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 com.twitter.heron.streamlet.impl;
import java.io.Serializable;
import java.util.Map;
import java.util.function.Supplier;
import com.twitter.heron.api.metric.IMetric;
import com.twitter.heron.api.state.State;
import com.twitter.heron.api.topology.TopologyContext;
import com.twitter.heron.streamlet.Context;
/**
* Context is the information available at runtime for operators like transform.
* It contains basic things like config, runtime information like task,
* the stream that it is operating on, ProcessState, etc.
*/
public class ContextImpl implements Context {
private TopologyContext topologyContext;
private Map topologyConfig;
private State state;
public ContextImpl(TopologyContext topologyContext, Map topologyConfig,
State state) {
this.topologyContext = topologyContext;
this.topologyConfig = topologyConfig;
this.state = state;
}
@Override
public int getTaskId() {
return topologyContext.getThisTaskId();
}
@Override
public Map getConfig() {
return topologyConfig;
}
@Override
public String getStreamName() {
return topologyContext.getThisStreams().iterator().next();
}
@Override
public int getStreamPartition() {
return topologyContext.getThisTaskIndex();
}
@Override
public void registerMetric(String metricName, int collectionInterval,
Supplier metricFn) {
topologyContext.registerMetric(metricName, new StreamletMetric(metricFn),
collectionInterval);
}
@Override
public State getState() {
return state;
}
private class StreamletMetric implements IMetric {
private Supplier metricFn;
StreamletMetric(Supplier metricFn) {
this.metricFn = metricFn;
}
@Override
public T getValueAndReset() {
return metricFn.get();
}
}
}