com.sun.javafx.binding.LazyObjectBinding Maven / Gradle / Ivy
/*
* Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.javafx.binding;
import javafx.beans.InvalidationListener;
import javafx.beans.binding.ObjectBinding;
import javafx.beans.value.ChangeListener;
import javafx.util.Subscription;
/**
* Extends {@link ObjectBinding} with the ability to lazily register and eagerly unregister listeners on its
* dependencies.
*
* @param the type of the wrapped {@code Object}
*/
abstract class LazyObjectBinding extends ObjectBinding {
private Subscription subscription;
private boolean wasObserved;
@Override
public void addListener(ChangeListener super T> listener) {
super.addListener(listener);
updateSubscriptionAfterAdd();
}
@Override
public void removeListener(ChangeListener super T> listener) {
super.removeListener(listener);
updateSubscriptionAfterRemove();
}
@Override
public void addListener(InvalidationListener listener) {
super.addListener(listener);
updateSubscriptionAfterAdd();
}
@Override
public void removeListener(InvalidationListener listener) {
super.removeListener(listener);
updateSubscriptionAfterRemove();
}
@Override
protected boolean allowValidation() {
return isObserved();
}
/**
* Called after a listener was added to start observing inputs if they're not observed already.
*/
private void updateSubscriptionAfterAdd() {
if (!wasObserved) { // was first observer registered?
subscription = observeSources(); // start observing source
wasObserved = true;
}
}
/**
* Called after a listener was removed to stop observing inputs if this was the last listener
* observing this binding.
*/
private void updateSubscriptionAfterRemove() {
if (wasObserved && !isObserved()) { // was last observer unregistered?
subscription.unsubscribe();
subscription = null;
invalidate(); // make binding invalid as source is no longer tracked
wasObserved = false;
}
}
/**
* Called when this binding was previously not observed and a new observer was added. Implementors must return a
* {@link Subscription} which will be cancelled when this binding no longer has any observers.
*
* @return a {@link Subscription} which will be cancelled when this binding no longer has any observers, never null
*/
protected abstract Subscription observeSources();
}