com.fasterxml.clustermate.client.call.PutContentProviders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-client Show documentation
Show all versions of clustermate-client Show documentation
Building blocks for client libraries that access
ClusterMate-based service.
package com.fasterxml.clustermate.client.call;
import java.io.*;
import java.util.concurrent.atomic.AtomicInteger;
import com.fasterxml.storemate.shared.ByteContainer;
import com.fasterxml.storemate.shared.hash.HashConstants;
/**
* Helper class used for creating one of standard {@link PutContentProvider}
* implementations.
*/
public class PutContentProviders
{
public static PutContentProvider forFile(File f, long length) {
return new FileBacked(f, length);
}
public static PutContentProvider forBytes(byte[] bytes) {
return forBytes(bytes, 0, bytes.length);
}
public static PutContentProvider forBytes(byte[] bytes, int offset, int len) {
return new ByteBacked(ByteContainer.simple(bytes, offset, len));
}
/**
* Intermediate base class used for building actual {@link PutContentProvider} instances.
*/
public abstract static class ProviderBase
implements PutContentProvider
{
protected final AtomicInteger _contentHash = new AtomicInteger(HashConstants.NO_CHECKSUM);
@Override
public int getContentHash() {
return _contentHash.get();
}
@Override
public void setContentHash(int hash) {
// Should get same value always, but just to make sure we never
// change value, or overwrite with "no hash"
_contentHash.compareAndSet(HashConstants.NO_CHECKSUM, hash);
}
}
/*
/**********************************************************************
/* Simple standard implementation for byte[] backed
/**********************************************************************
*/
/**
* Simple {@link PutContentProvider} implementation that is backed by
* a raw byte array.
*/
protected static class ByteBacked
extends ProviderBase
{
protected final ByteContainer _bytes;
public ByteBacked(ByteContainer data) {
_bytes = data;
}
@Override
public long length() {
return (long) _bytes.byteLength();
}
@Override
public ByteContainer contentAsBytes() {
return _bytes;
}
@Override
public File contentAsFile() {
return null;
}
@Override
public InputStream contentAsStream() {
return null;
}
}
/*
/**********************************************************************
/* Simple standard implementations for providers
/**********************************************************************
*/
/**
* Simple {@link PutContentProvider} implementation that is backed by
* a File.
*/
protected static class FileBacked
extends ProviderBase
{
protected final File _file;
protected final long _length;
public FileBacked(File file, long length)
{
_file = file;
_length = length;
}
@Override
public long length() {
return _length;
}
@Override
public ByteContainer contentAsBytes() {
return null;
}
@Override
public File contentAsFile() {
return _file;
}
@Override
public InputStream contentAsStream() {
return null;
}
}
}