org.codehaus.plexus.archiver.tar.TarResource Maven / Gradle / Ivy
package org.codehaus.plexus.archiver.tar;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import javax.annotation.Nonnull;
import org.apache.commons.compress.archivers.tar.TarArchiveEntry;
import org.codehaus.plexus.components.io.attributes.PlexusIoResourceAttributes;
import org.codehaus.plexus.components.io.attributes.SimpleResourceAttributes;
import org.codehaus.plexus.components.io.functions.ResourceAttributeSupplier;
import org.codehaus.plexus.components.io.resources.AbstractPlexusIoResource;
import org.codehaus.plexus.components.io.resources.PlexusIoResource;
public class TarResource
extends AbstractPlexusIoResource
implements ResourceAttributeSupplier
{
private final TarFile tarFile;
private final TarArchiveEntry entry;
private PlexusIoResourceAttributes attributes;
public TarResource( TarFile tarFile, TarArchiveEntry entry )
{
super( entry.getName(), getLastModifiedTime( entry ),
entry.isDirectory() ? PlexusIoResource.UNKNOWN_RESOURCE_SIZE : entry.getSize(), !entry.isDirectory(),
entry.isDirectory(), true );
this.tarFile = tarFile;
this.entry = entry;
}
private static long getLastModifiedTime( TarArchiveEntry entry )
{
long l = entry.getModTime().getTime();
return l == -1 ? PlexusIoResource.UNKNOWN_MODIFICATION_DATE : l;
}
@Override
public synchronized PlexusIoResourceAttributes getAttributes()
{
if ( attributes == null )
{
attributes = new SimpleResourceAttributes( entry.getUserId(), entry.getUserName(), entry.getGroupId(),
entry.getGroupName(), entry.getMode() );
}
return attributes;
}
public synchronized void setAttributes( PlexusIoResourceAttributes attributes )
{
this.attributes = attributes;
}
@Override
public URL getURL()
throws IOException
{
return null;
}
@Nonnull
@Override
public InputStream getContents()
throws IOException
{
return tarFile.getInputStream( entry );
}
}