
water.Scope Maven / Gradle / Ivy
package water;
import java.util.*;
/** A "scope" for tracking Key lifetimes; an experimental API.
*
* A Scope defines a SINGLE THREADED local lifetime management context,
* stored in Thread Local Storage. Scopes can be explicitly entered or exited.
* User keys created by this thread are tracked, and deleted when the scope is
* exited. Since enter & exit are explicit, failure to exit means the Keys
* leak (there is no reliable thread-on-exit cleanup action). You must call
* Scope.exit()
at some point. Only user keys & Vec keys are tracked.
*
* Scopes support nesting. Scopes support partial cleanup: you can list Keys
* you'd like to keep in the exit() call. These will be "bumped up" to the
* higher nested scope - or escaped and become untracked at the top-level.
*/
public class Scope {
// Thread-based Key lifetime tracking
static private final ThreadLocal _scope = new ThreadLocal() {
@Override protected Scope initialValue() { return new Scope(); }
};
private final Stack> _keys = new Stack<>();
/** Enter a new Scope */
static public void enter() { _scope.get()._keys.push(new HashSet()); }
/** Exit the inner-most Scope, remove all Keys created since the matching
* enter call except for the listed Keys.
* @return Returns the list of kept keys. */
static public Key[] exit(Key... keep) {
List keylist = new ArrayList<>();
if( keep != null )
for( Key k : keep ) if (k != null) keylist.add(k);
Object[] arrkeep = keylist.toArray();
Arrays.sort(arrkeep);
Stack> keys = _scope.get()._keys;
if (keys.size() > 0) {
Futures fs = new Futures();
for (Key key : keys.pop()) {
int found = Arrays.binarySearch(arrkeep, key);
if (arrkeep.length == 0 || found < 0) Keyed.remove(key, fs);
}
fs.blockForPending();
}
return keep;
}
static public void track( Key k ) {
if( k.user_allowed() || !k.isVec() ) return; // Not tracked
Scope scope = _scope.get(); // Pay the price of T.L.S. lookup
if( scope == null ) return; // Not tracking this thread
if( scope._keys.size() == 0 ) return; // Tracked in the past, but no scope now
if (!scope._keys.peek().contains(k))
scope._keys.peek().add(k); // Track key
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy