/* * 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.commons.compress.archivers.arj; import java.io.File; import java.util.Date; import java.util.regex.Matcher; import org.apache.commons.compress.archivers.ArchiveEntry; import org.apache.commons.compress.archivers.zip.ZipUtil; /** * An entry in an ARJ archive. * * @NotThreadSafe * @since 1.6 */ public class ArjArchiveEntry implements ArchiveEntry { private final LocalFileHeader localFileHeader; public ArjArchiveEntry() { localFileHeader = new LocalFileHeader(); } ArjArchiveEntry(final LocalFileHeader localFileHeader) { this.localFileHeader = localFileHeader; } /** * Get this entry's name. * * @return This entry's name. */ @Override public String getName() { if ((localFileHeader.arjFlags & LocalFileHeader.Flags.PATHSYM) != 0) { return localFileHeader.name.replaceAll("/", Matcher.quoteReplacement(File.separator)); } return localFileHeader.name; } /** * Get this entry's file size. * * @return This entry's file size. */ @Override public long getSize() { return localFileHeader.originalSize; } /** True if the entry refers to a directory. * * @return True if the entry refers to a directory */ @Override public boolean isDirectory() { return localFileHeader.fileType == LocalFileHeader.FileTypes.DIRECTORY; } /** * The last modified date of the entry. * * <p>Note the interpretation of time is different depending on * the HostOS that has created the archive. While an OS that is * {@link #isHostOsUnix considered to be Unix} stores time in a * timezone independent manner, other platforms only use the local * time. I.e. if an archive has been created at midnight UTC on a * machine in timezone UTC this method will return midnight * regardless of timezone if the archive has been created on a * non-Unix system and a time taking the current timezone into * account if the archive has beeen created on Unix.</p> * * @return the last modified date */ @Override public Date getLastModifiedDate() { final long ts = isHostOsUnix() ? localFileHeader.dateTimeModified * 1000l : ZipUtil.dosToJavaTime(0xFFFFFFFFL & localFileHeader.dateTimeModified); return new Date(ts); } /** * File mode of this entry. * * <p>The format depends on the host os that created the entry.</p> * * @return the file mode */ public int getMode() { return localFileHeader.fileAccessMode; } /** * File mode of this entry as Unix stat value. * * <p>Will only be non-zero of the host os was UNIX. * * @return the Unix mode */ public int getUnixMode() { return isHostOsUnix() ? getMode() : 0; } /** * The operating system the archive has been created on. * @see HostOs * @return the host OS code */ public int getHostOs() { return localFileHeader.hostOS; } /** * Is the operating system the archive has been created on one * that is considered a UNIX OS by arj? * @return whether the operating system the archive has been * created on is considered a UNIX OS by arj */ public boolean isHostOsUnix() { return getHostOs() == HostOs.UNIX || getHostOs() == HostOs.NEXT; } int getMethod() { return localFileHeader.method; } /** * The known values for HostOs. */ public static class HostOs { public static final int DOS = 0; public static final int PRIMOS = 1; public static final int UNIX = 2; public static final int AMIGA = 3; public static final int MAC_OS = 4; public static final int OS_2 = 5; public static final int APPLE_GS = 6; public static final int ATARI_ST = 7; public static final int NEXT = 8; public static final int VAX_VMS = 9; public static final int WIN95 = 10; public static final int WIN32 = 11; } }