blob: b67a9ee9b6f6b1fc100a67710fed01a84e8900b7 [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.heron.resource;
import java.util.Map;
import java.util.concurrent.CountDownLatch;
import org.junit.Ignore;
import org.apache.heron.api.bolt.BaseRichBolt;
import org.apache.heron.api.bolt.OutputCollector;
import org.apache.heron.api.state.State;
import org.apache.heron.api.topology.ITwoPhaseStatefulComponent;
import org.apache.heron.api.topology.OutputFieldsDeclarer;
import org.apache.heron.api.topology.TopologyContext;
import org.apache.heron.api.tuple.Fields;
import org.apache.heron.api.tuple.Tuple;
import org.apache.heron.common.basics.SingletonRegistry;
@Ignore
public class TestTwoPhaseStatefulBolt extends BaseRichBolt
implements ITwoPhaseStatefulComponent<String, String> {
private static final long serialVersionUID = -5160420613503624743L;
@Override
public void prepare(
Map<String, Object> map,
TopologyContext topologyContext,
OutputCollector collector) {
}
@Override
public void execute(Tuple tuple) {
CountDownLatch tupleExecutedLatch =
(CountDownLatch) SingletonRegistry.INSTANCE.getSingleton(Constants.EXECUTE_LATCH);
if (tupleExecutedLatch != null) {
tupleExecutedLatch.countDown();
}
}
@Override
public void declareOutputFields(OutputFieldsDeclarer outputFieldsDeclarer) {
outputFieldsDeclarer.declare(new Fields("word"));
}
@Override
public void postSave(String checkpointId) {
CountDownLatch postSaveLatch =
(CountDownLatch) SingletonRegistry.INSTANCE.getSingleton(Constants.POSTSAVE_LATCH);
if (postSaveLatch != null) {
postSaveLatch.countDown();
}
}
@Override
public void preRestore(String checkpointId) {
CountDownLatch preRestoreLatch =
(CountDownLatch) SingletonRegistry.INSTANCE.getSingleton(Constants.PRERESTORE_LATCH);
if (preRestoreLatch != null) {
preRestoreLatch.countDown();
}
}
@Override
public void initState(State<String, String> state) {
}
@Override
public void preSave(String checkpointId) {
CountDownLatch preSaveLatch =
(CountDownLatch) SingletonRegistry.INSTANCE.getSingleton(Constants.PRESAVE_LATCH);
if (preSaveLatch != null) {
preSaveLatch.countDown();
}
}
}