blob: b3ff0b5200baea91a24b5032e0d8a1069af67351 [file] [log] [blame]
/**
* 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 org.apache.aries.cdi.container.internal;
import java.util.Observable;
import java.util.Observer;
import java.util.concurrent.atomic.AtomicLong;
import org.apache.aries.cdi.container.internal.util.Syncro;
public class ChangeCount extends Observable implements Observer {
@Override
public int hashCode() {
try (Syncro syncro = _syncro.open()) {
return _changeCount.hashCode();
}
}
public final long get() {
try (Syncro syncro = _syncro.open()) {
return _changeCount.get();
}
}
@Override
public boolean equals(Object obj) {
try (Syncro syncro = _syncro.open()) {
return _changeCount.equals(obj);
}
}
public final long getAndIncrement() {
try (Syncro syncro = _syncro.open()) {
return _changeCount.getAndIncrement();
}
finally {
setChanged();
notifyObservers();
}
}
public final long incrementAndGet() {
try (Syncro syncro = _syncro.open()) {
return _changeCount.incrementAndGet();
}
finally {
setChanged();
notifyObservers();
}
}
@Override
public String toString() {
try (Syncro syncro = _syncro.open()) {
return _changeCount.toString();
}
}
public long longValue() {
try (Syncro syncro = _syncro.open()) {
return _changeCount.longValue();
}
}
@Override
public void update(Observable o, Object arg) {
if (!(o instanceof ChangeCount)) {
return;
}
incrementAndGet();
}
private final AtomicLong _changeCount = new AtomicLong(1);
private final Syncro _syncro = new Syncro(true);
}