blob: 03a91e03b4ff845e78b512a251f456894af81219 [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.accumulo.core.singletons;
import java.lang.ref.Cleaner.Cleanable;
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.accumulo.core.client.AccumuloClient;
import org.apache.accumulo.core.util.cleaner.CleanerUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @see SingletonManager#getClientReservation()
*/
public class SingletonReservation implements AutoCloseable {
private static final Logger log = LoggerFactory.getLogger(SingletonReservation.class);
// AtomicBoolean so cleaner doesn't need to synchronize to reliably read
private final AtomicBoolean closed = new AtomicBoolean(false);
private final Cleanable cleanable;
public SingletonReservation() {
cleanable = CleanerUtil.unclosed(this, AccumuloClient.class, closed, log, null);
}
@Override
public void close() {
if (closed.compareAndSet(false, true)) {
// deregister cleanable, but it won't run because it checks
// the value of closed first, which is now true
cleanable.clean();
SingletonManager.releaseRerservation();
}
}
private static class NoopSingletonReservation extends SingletonReservation {
NoopSingletonReservation() {
super();
super.closed.set(true);
// deregister the cleaner
super.cleanable.clean();
}
}
private static final SingletonReservation NOOP = new NoopSingletonReservation();
/**
* @return A reservation where the close method is a no-op.
*/
public static SingletonReservation noop() {
return NOOP;
}
}