com.ning.http.client.generators.FileBodyGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-retries-plugin Show documentation
Show all versions of payment-retries-plugin Show documentation
Kill Bill Payment Retries plugin
The newest version!
/*
* Copyright (c) 2010-2012 Sonatype, Inc. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the Apache License Version 2.0 is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
*/
package com.ning.http.client.generators;
import com.ning.http.client.BodyGenerator;
import com.ning.http.client.RandomAccessBody;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.WritableByteChannel;
/**
* Creates a request body from the contents of a file.
* Beware, Netty provider has its own way for uploading files and won't use the BodyGenerator API.
* If you want to use Netty and have a custom behavior while uploading a file through BodyGenerator,
* implement BodyGenerator instead of extending FileBodyGenerator.
*/
public class FileBodyGenerator implements BodyGenerator {
private final File file;
private final long regionSeek;
private final long regionLength;
public FileBodyGenerator(File file) {
if (file == null)
throw new NullPointerException("file");
this.file = file;
this.regionLength = file.length();
this.regionSeek = 0;
}
public FileBodyGenerator(File file, long regionSeek, long regionLength) {
if (file == null)
throw new NullPointerException("file");
this.file = file;
this.regionLength = regionLength;
this.regionSeek = regionSeek;
}
@Override
public RandomAccessBody createBody()
throws IOException {
return new FileBody(file, regionSeek, regionLength);
}
public File getFile() {
return file;
}
public long getRegionSeek() {
return regionSeek;
}
public long getRegionLength() {
return regionLength;
}
protected static class FileBody
implements RandomAccessBody {
private final RandomAccessFile file;
private final FileChannel channel;
private final long length;
public FileBody(File file)
throws IOException {
this.file = new RandomAccessFile(file, "r");
channel = this.file.getChannel();
length = file.length();
}
public FileBody(File file, long regionSeek, long regionLength)
throws IOException {
this.file = new RandomAccessFile(file, "r");
channel = this.file.getChannel();
length = regionLength;
if (regionSeek > 0) {
this.file.seek(regionSeek);
}
}
@Override
public long getContentLength() {
return length;
}
@Override
public long read(ByteBuffer buffer)
throws IOException {
return channel.read(buffer);
}
@Override
public long transferTo(long position, WritableByteChannel target)
throws IOException {
return channel.transferTo(position, length, target);
}
@Override
public void close() throws IOException {
file.close();
}
}
}