org.apache.jackrabbit.vault.cli.CmdCheckoutCli Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vault-cli Show documentation
Show all versions of vault-cli Show documentation
Provides a simple shell-like console that access the file vault.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.jackrabbit.vault.cli;
import java.io.File;
import org.apache.commons.cli2.Argument;
import org.apache.commons.cli2.CommandLine;
import org.apache.commons.cli2.Option;
import org.apache.commons.cli2.builder.ArgumentBuilder;
import org.apache.commons.cli2.builder.CommandBuilder;
import org.apache.commons.cli2.builder.DefaultOptionBuilder;
import org.apache.commons.cli2.builder.GroupBuilder;
import org.apache.commons.cli2.option.Command;
import org.apache.jackrabbit.vault.fs.api.RepositoryAddress;
import org.apache.jackrabbit.vault.util.Text;
import org.apache.jackrabbit.vault.util.console.ExecutionException;
import org.apache.jackrabbit.vault.vlt.VltContext;
import org.apache.jackrabbit.vault.vlt.actions.Checkout;
/**
* Implements the 'checkout' command. there are 2 forms, either:
* co rmi://localhost/crx.default/apps/components
*
* or:
* co --mountpoint=rmi://localhost/crx.default /apps/components
*
*
*/
public class CmdCheckoutCli extends AbstractVaultCommand {
private Option optForce;
private Option optFilter;
private Argument argLocalPath;
private Argument argJcrPath;
private Argument argMountpoint;
protected void doExecute(VaultFsConsoleExecutionContext ctx, CommandLine cl)
throws Exception {
throw new ExecutionException("internal error. command not supported in console");
}
protected void doExecute(VaultFsApp app, CommandLine cl) throws Exception {
String jcrPath = (String) cl.getValue(argJcrPath);
String localPath = (String) cl.getValue(argLocalPath);
String root = (String) cl.getValue(argMountpoint);
RepositoryAddress addr = new RepositoryAddress(root);
// shift arguments
if (localPath == null) {
localPath = jcrPath;
jcrPath = null;
}
if (jcrPath == null) {
jcrPath = addr.getPath();
addr = addr.resolve("/");
}
if (localPath == null) {
if (jcrPath == null) {
localPath = Text.getName(addr.toString());
} else {
localPath = Text.getName(jcrPath);
}
}
if (jcrPath == null || jcrPath.length() == 0 || !jcrPath.startsWith("/")) {
throw new ExecutionException("JCR path needs to be absolute: " + jcrPath);
}
File localFile = app.getPlatformFile(localPath, false);
if (localFile.isFile()) {
throw new ExecutionException("Local file must be a directory: " + localFile.getPath());
}
if (!localFile.exists()) {
localFile.mkdir();
}
VltContext vCtx = app.createVaultContext(localFile);
vCtx.setVerbose(cl.hasOption(OPT_VERBOSE));
vCtx.setQuiet(cl.hasOption(OPT_QUIET));
vCtx.setDefaultFilter((String) cl.getValue(optFilter));
Checkout c = new Checkout(addr, jcrPath, localFile);
c.setForce(cl.hasOption(optForce));
vCtx.execute(c);
}
/**
* {@inheritDoc}
*/
public String getShortDescription() {
return "Checkout a Vault file system";
}
public String getLongDescription() {
return "Checkout the Vault file system (starting at to the " +
"local filesystem at .\n" +
"A argument can be provided to checkout a sub directory " +
"of the remote tree.\n\n" +
"A workspace filters can be specified that will be copied into the " +
"META-INF directory.\n\n" +
"Examples:\n" +
"\n" +
"Using the JCR Remoting:\n" +
" vlt --credentials admin:admin co http://localhost:8080/crx/server/crx.default/jcr:root/\n" +
" \n" +
"with default workspace:\n" +
" vlt --credentials admin:admin co http://localhost:8080/crx/server/-/jcr:root/\n" +
" \n" +
"if URI is incomplete, it will be expanded:\n" +
" vlt --credentials admin:admin co http://localhost:8080/crx\n";
}
protected Command createCommand() {
argMountpoint = new ArgumentBuilder()
.withName("uri")
.withDescription("mountpoint uri")
.withMinimum(1)
.withMaximum(1)
.create();
argJcrPath = new ArgumentBuilder()
.withName("jcrPath")
.withDescription("remote path (optional)")
.withMinimum(0)
.withMaximum(1)
.create();
argLocalPath = new ArgumentBuilder()
.withName("localPath")
.withDescription("local path (optional)")
.withMinimum(0)
.withMaximum(1)
.create();
return new CommandBuilder()
.withName("checkout")
.withName("co")
.withDescription(getShortDescription())
.withChildren(new GroupBuilder()
.withName("Options:")
.withOption(optForce = new DefaultOptionBuilder()
.withLongName("force")
.withDescription("force checkout to overwrite local files if they already exist.")
.create())
.withOption(OPT_VERBOSE)
.withOption(OPT_QUIET)
.withOption(optFilter = new DefaultOptionBuilder()
.withShortName("f")
.withLongName("filter")
.withDescription("specifies auto filters if none defined.")
.withArgument(new ArgumentBuilder()
.withName("file")
.withMaximum(1)
.withMinimum(1)
.create())
.create())
.withOption(argMountpoint)
.withOption(argJcrPath)
.withOption(argLocalPath)
.create()
)
.create();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy