Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright DataStax, 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.datastax.driver.core;
import com.datastax.driver.core.exceptions.CrcMismatchException;
import com.google.common.annotations.VisibleForTesting;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import java.io.IOException;
import java.util.List;
class SegmentCodec {
private static final int COMPRESSED_HEADER_LENGTH = 5;
private static final int UNCOMPRESSED_HEADER_LENGTH = 3;
static final int CRC24_LENGTH = 3;
static final int CRC32_LENGTH = 4;
private final ByteBufAllocator allocator;
private final boolean compress;
private final FrameCompressor compressor;
SegmentCodec(ByteBufAllocator allocator, ProtocolOptions.Compression compression) {
this.allocator = allocator;
this.compress = compression != ProtocolOptions.Compression.NONE;
this.compressor = compression.compressor();
}
/** The length of the segment header, excluding the 3-byte trailing CRC. */
int headerLength() {
return compress ? COMPRESSED_HEADER_LENGTH : UNCOMPRESSED_HEADER_LENGTH;
}
void encode(Segment segment, List