com.couchbase.client.java.codec.RawBinaryTranscoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The official Couchbase Java SDK
/*
* Copyright (c) 2019 Couchbase, Inc.
*
* Licensed 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 com.couchbase.client.java.codec;
import com.couchbase.client.core.error.DecodingFailureException;
import com.couchbase.client.core.error.InvalidArgumentException;
import com.couchbase.client.core.msg.kv.CodecFlags;
import com.couchbase.client.java.CommonOptions;
public class RawBinaryTranscoder implements Transcoder {
public static RawBinaryTranscoder INSTANCE = new RawBinaryTranscoder();
private RawBinaryTranscoder() { }
@Override
public EncodedValue encode(final Object input) {
if (input instanceof CommonOptions.BuiltCommonOptions || input instanceof CommonOptions) {
throw InvalidArgumentException.fromMessage("No content provided, cannot " +
"encode " + input.getClass().getSimpleName() + " as content!");
}
if (input instanceof byte[]) {
return new EncodedValue((byte[]) input, CodecFlags.BINARY_COMPAT_FLAGS);
} else {
throw InvalidArgumentException.fromMessage("Only byte[] is supported for the RawBinaryTranscoder!");
}
}
@Override
@SuppressWarnings("unchecked")
public T decode(final Class target, final byte[] input, int flags) {
if (target.equals(byte[].class)) {
return (T) input;
} else {
throw new DecodingFailureException("RawBinaryTranscoder can only decode into byte[]!");
}
}
}