org.apache.jackrabbit.vault.cli.CmdLsJcrFs 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.
The newest version!
/*
* 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 org.apache.commons.cli2.CommandLine;
import org.apache.commons.cli2.Option;
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.VaultFile;
import org.apache.jackrabbit.vault.util.console.ConsoleFile;
import org.apache.jackrabbit.vault.util.console.util.Table;
/**
* Implements the 'ls' command.
*
*/
public class CmdLsJcrFs extends AbstractCmdLs {
private static final int F_FLAG_SIZE = 0x01;
private static final int F_FLAG_TIME = 0x02;
private static final int F_FLAG_MIME = 0x04;
private static final int F_FLAG_LONG = 0x07;
private Option optLong;
private Option optTime;
private Option optSize;
private Option optMime;
protected int getFormatFlags(VaultFsConsoleExecutionContext ctx, CommandLine cl) {
int fmtFlag = 0;
fmtFlag |= cl.hasOption(optTime) ? F_FLAG_TIME : 0;
fmtFlag |= cl.hasOption(optSize) ? F_FLAG_SIZE : 0;
fmtFlag |= cl.hasOption(optMime) ? F_FLAG_MIME : 0;
fmtFlag |= cl.hasOption(optLong) ? F_FLAG_LONG : 0;
return fmtFlag;
}
protected Command createCommand() {
return new CommandBuilder()
.withName("ls")
.withDescription(getShortDescription())
.withChildren(new GroupBuilder()
.withName("Options:")
.withOption(optTime = new DefaultOptionBuilder()
.withShortName("t")
.withDescription("display the last modification date")
.create())
.withOption(optSize = new DefaultOptionBuilder()
.withShortName("s")
.withDescription("display the file size")
.create())
.withOption(optMime = new DefaultOptionBuilder()
.withShortName("m")
.withDescription("display the mime type")
.create())
.withOption(optLong = new DefaultOptionBuilder()
.withShortName("l")
.withDescription("combines all format flags")
.create())
.withOption(argPath)
.create())
.create();
}
protected void formatFile(ConsoleFile file, Table.Row row, int flags) {
VaultFile f = (VaultFile) file.unwrap();
if ((flags & F_FLAG_TIME) > 0) {
row.addCol(formatDate(f.lastModified()), true);
}
if ((flags & F_FLAG_SIZE) > 0) {
row.addCol(formatSize(f.length()), true);
}
if ((flags & F_FLAG_MIME) > 0) {
row.addCol(f.getContentType() == null ? "" : f.getContentType());
}
row.addCol(f.getName() + (f.isDirectory() ? "/" : ""));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy