qunar.tc.qmq.delay.store.log.DispatchLogSegment Maven / Gradle / Ivy
/*
* Copyright 2018 Qunar, 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 qunar.tc.qmq.delay.store.log;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import qunar.tc.qmq.delay.base.SegmentBufferExtend;
import qunar.tc.qmq.delay.store.visitor.DispatchLogVisitor;
import qunar.tc.qmq.delay.store.visitor.LogVisitor;
import java.io.File;
import java.io.IOException;
import java.nio.ByteBuffer;
/**
* @author xufeng.deng [email protected]
* @since 2018-07-19 16:41
*/
public class DispatchLogSegment extends AbstractDelaySegment {
private static final Logger LOGGER = LoggerFactory.getLogger(DispatchLogSegment.class);
DispatchLogSegment(File file) throws IOException {
super(file);
}
@Override
public long validate() throws IOException {
long size = this.fileChannel.size();
long invalidateBytes = size % Long.BYTES;
return size - invalidateBytes;
}
public LogVisitor newVisitor(long from) {
return new DispatchLogVisitor(from, fileChannel);
}
SegmentBufferExtend selectSegmentBuffer(long offset) {
long wrotePosition = getWrotePosition();
if (wrotePosition == 0) {
return new SegmentBufferExtend(0, null, 0, getSegmentBaseOffset(), null);
}
if (offset < wrotePosition && offset >= 0) {
int size = (int) (wrotePosition - offset);
final ByteBuffer buffer = ByteBuffer.allocate(size);
try {
int bytes = fileChannel.read(buffer, offset);
if (bytes < size) {
LOGGER.error("select dispatch log incomplete data to log segment,{}-{}-{}, {} -> {}", getSegmentBaseOffset(), wrotePosition, offset, bytes, size);
return null;
}
buffer.flip();
buffer.limit(bytes);
return new SegmentBufferExtend(offset, buffer, bytes, getSegmentBaseOffset(), null);
} catch (Throwable e) {
LOGGER.error("select dispatch log data to log segment failed.", e);
}
}
return null;
}
boolean appendData(long startOffset, ByteBuffer body) {
long currentPos = getWrotePosition();
int size = body.limit();
if (startOffset != currentPos) {
return false;
}
try {
fileChannel.position(currentPos);
fileChannel.write(body);
} catch (Throwable e) {
LOGGER.error("appendMessageLog data to log segment failed.", e);
return false;
}
setWrotePosition(currentPos + size);
return true;
}
void fillPreBlank(long untilWhere) {
setWrotePosition(untilWhere);
}
public int entries() {
try {
return (int) (validate() / Long.BYTES);
} catch (Exception e) {
return 0;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy