com.netflix.gradle.plugins.deb.DataProducerFileSimple.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-ospackage-plugin Show documentation
Show all versions of gradle-ospackage-plugin Show documentation
Provides a task similar to Tar and Zip for constructing RPM and DEB package files.
The newest version!
package com.netflix.gradle.plugins.deb
import groovy.transform.Canonical
import org.vafer.jdeb.DataConsumer
import org.vafer.jdeb.DataProducer
import org.vafer.jdeb.shaded.commons.compress.archivers.tar.TarArchiveEntry
@Canonical
class DataProducerFileSimple implements DataProducer {
String filename
File file
String user
int uid
String group
int gid
int mode
@Override
void produce(DataConsumer receiver) throws IOException {
file.withInputStream { InputStream is ->
receiver.onEachFile(is, createEntry())
}
}
private TarArchiveEntry createEntry() {
TarArchiveEntry entry = new TarArchiveEntry(filename)
entry.userName = user
entry.userId = uid
entry.groupName = group
entry.groupId = gid
entry.mode = mode
entry.size = file.size()
entry.modTime = file.lastModified()
entry
}
}