de.schlichtherle.truezip.extension.pace.PaceManagerController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truezip-extension-pace Show documentation
Show all versions of truezip-extension-pace Show documentation
This module constrains the number of mounted archive files in order to
save some heap space.
It provides a JMX interface for monitoring and management.
Add the JAR artifact of this module to the run time class path to
make its services available for service location in the client API
modules.
/*
* Copyright (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package de.schlichtherle.truezip.extension.pace;
import de.schlichtherle.truezip.fs.*;
import de.schlichtherle.truezip.util.BitField;
import javax.annotation.concurrent.Immutable;
/**
* The pace manager controller.
*
* @author Christian Schlichtherle
*/
@Immutable
final class PaceManagerController extends FsDecoratingManager {
private final PaceManagerModel model;
PaceManagerController(final PaceManagerModel model, final FsManager manager) {
super(manager);
model.init(manager);
this.model = model;
}
@Override
public FsController> getController(FsMountPoint mp, FsCompositeDriver d) {
return new PaceController(this, delegate.getController(mp, d));
}
/**
* If the number of mounted archive files exceeds {@link #getMaximumFileSystemsMounted()},
* then this method sync()s the least recently used (LRU) archive files
* which exceed this value.
*
* @param controller the controller for the file system to retain mounted
* for subsequent access.
* @throws FsSyncException
*/
void retain(FsController extends FsModel> controller) throws FsSyncException {
model.retain(controller);
}
/**
* Registers the archive file system of the given controller as the most
* recently used (MRU).
*
* @param controller the controller for the most recently used file system.
*/
void accessed(FsController extends FsModel> controller) {
model.accessed(controller);
}
@Override
public void sync(BitField options) throws FsSyncException {
model.sync(options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy