blob: 314859e9a75c81704cdddf3b8a75a5fd675927ee [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.fluo.core.async;
import java.util.concurrent.CountDownLatch;
import org.apache.fluo.api.exceptions.CommitException;
import org.apache.fluo.api.exceptions.FluoException;
import org.apache.fluo.core.exceptions.AlreadyAcknowledgedException;
public class SyncCommitObserver implements AsyncCommitObserver {
private CountDownLatch cdl = new CountDownLatch(1);
private volatile boolean committed = false;
private volatile boolean aacked = false;
private volatile Exception error = null;
private volatile String commitFailMsg = "";
@Override
public void committed() {
committed = Boolean.TRUE;
cdl.countDown();
}
@Override
public void failed(Throwable t) {
error = (Exception) t;
cdl.countDown();
}
@Override
public void alreadyAcknowledged() {
aacked = true;
cdl.countDown();
}
@Override
public void commitFailed(String msg) {
committed = false;
commitFailMsg = msg;
cdl.countDown();
}
public void waitForCommit() {
try {
cdl.await();
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
if (error != null) {
throw new FluoException(error);
} else if (aacked) {
throw new AlreadyAcknowledgedException();
} else if (!committed) {
throw new CommitException(commitFailMsg);
}
}
}