com.aragost.javahg.BaseRepository Maven / Gradle / Ivy
/*
* #%L
* JavaHg
* %%
* Copyright (C) 2011 aragost Trifork ag
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* #L%
*/
package com.aragost.javahg;
import java.io.File;
import java.util.Map;
import com.aragost.javahg.RepositoryConfiguration.CachePolicy;
import com.aragost.javahg.internals.Server;
import com.google.common.base.Function;
import com.google.common.collect.MapMaker;
/**
* This is a standard Repository with no bundle overlaid
*/
public class BaseRepository extends Repository {
private RepositoryConfiguration configuration;
private final File directory;
private Server server;
private Map nodeChangeSetCache;
BaseRepository(RepositoryConfiguration conf, File directory, boolean performInit, String cloneUrl) {
Function nodeToChangeSet = new Function() {
public Changeset apply(String node) {
return new Changeset(BaseRepository.this, node);
}
};
this.nodeChangeSetCache = cacheMapMaker(conf.getCachePolicy()).makeComputingMap(nodeToChangeSet);
this.configuration = conf;
this.directory = directory;
String hgBin = this.configuration.getHgBin();
File hgBinFile = new File(hgBin);
if (hgBinFile.isAbsolute() && !hgBinFile.exists()) {
throw new IllegalArgumentException("" + hgBin + " does not exist");
}
this.server = new Server(hgBin);
this.server.setErrorAction(this.configuration.getCodingErrorAction());
this.server.incrementRefCount();
if (performInit) {
this.server.initMecurialRepository(directory);
} else if (cloneUrl != null) {
this.server.execHgCommand(null, "clone", cloneUrl, directory.getAbsolutePath());
}
this.server.start(directory);
}
@Override
public Changeset changeSet(String node) {
if (node.equals(Changeset.NULL_ID)) {
return null;
} else {
return this.nodeChangeSetCache.get(node);
}
}
@Override
public Server getServer() {
return this.server;
}
@Override
public File getDirectory() {
return this.directory;
}
RepositoryConfiguration getConfiguration() {
return configuration;
}
@Override
public BaseRepository getBaseRepository() {
return this;
}
private MapMaker cacheMapMaker(CachePolicy cachePolicy) {
MapMaker mapMaker = new MapMaker();
switch (cachePolicy) {
case STRONG:
break;
case SOFT:
mapMaker.softValues();
break;
case WEAK:
mapMaker.weakValues();
break;
case NONE:
// Consider not to have any map at all
mapMaker.maximumSize(0);
break;
}
return mapMaker;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy