Improve entry crc32 computation
[controller.git] / atomix-storage / src / main / java / io / atomix / storage / journal / FileChannelJournalSegmentWriter.java
1 /*
2  * Copyright 2017-present Open Networking Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package io.atomix.storage.journal;
17
18 import com.esotericsoftware.kryo.KryoException;
19 import io.atomix.storage.journal.index.JournalIndex;
20
21 import java.io.IOException;
22 import java.nio.BufferOverflowException;
23 import java.nio.BufferUnderflowException;
24 import java.nio.ByteBuffer;
25 import java.nio.channels.FileChannel;
26 import java.util.zip.CRC32;
27
28 /**
29  * Segment writer.
30  * <p>
31  * The format of an entry in the log is as follows:
32  * <ul>
33  * <li>64-bit index</li>
34  * <li>8-bit boolean indicating whether a term change is contained in the entry</li>
35  * <li>64-bit optional term</li>
36  * <li>32-bit signed entry length, including the entry type ID</li>
37  * <li>8-bit signed entry type ID</li>
38  * <li>n-bit entry bytes</li>
39  * </ul>
40  *
41  * @author <a href="http://github.com/kuujo">Jordan Halterman</a>
42  */
43 class FileChannelJournalSegmentWriter<E> implements JournalWriter<E> {
44   private static final ByteBuffer ZERO_ENTRY_HEADER = ByteBuffer.wrap(new byte[Integer.BYTES + Integer.BYTES]);
45
46   private final FileChannel channel;
47   private final JournalSegment<E> segment;
48   private final int maxEntrySize;
49   private final JournalIndex index;
50   private final JournalSerdes namespace;
51   private final ByteBuffer memory;
52   private final long firstIndex;
53   private Indexed<E> lastEntry;
54
55   FileChannelJournalSegmentWriter(
56       FileChannel channel,
57       JournalSegment<E> segment,
58       int maxEntrySize,
59       JournalIndex index,
60       JournalSerdes namespace) {
61     this.channel = channel;
62     this.segment = segment;
63     this.maxEntrySize = maxEntrySize;
64     this.index = index;
65     this.memory = ByteBuffer.allocate((maxEntrySize + Integer.BYTES + Integer.BYTES) * 2);
66     memory.limit(0);
67     this.namespace = namespace;
68     this.firstIndex = segment.index();
69     reset(0);
70   }
71
72   @Override
73   public void reset(long index) {
74     long nextIndex = firstIndex;
75
76     // Clear the buffer indexes.
77     try {
78       channel.position(JournalSegmentDescriptor.BYTES);
79
80       // Record the current buffer position.
81       long position = channel.position();
82
83       // Clear memory buffer and read fist chunk
84       memory.clear();
85       channel.read(memory, position);
86       memory.flip();
87
88       // Read the entry length.
89       memory.mark();
90       int length = memory.getInt();
91
92       // If the length is non-zero, read the entry.
93       while (0 < length && length <= maxEntrySize && (index == 0 || nextIndex <= index)) {
94
95         // Read the checksum of the entry.
96         final long checksum = memory.getInt() & 0xFFFFFFFFL;
97
98         // Slice off the entry's bytes
99         final ByteBuffer entryBytes = memory.slice();
100         entryBytes.limit(length);
101
102         // Compute the checksum for the entry bytes.
103         final CRC32 crc32 = new CRC32();
104         crc32.update(entryBytes);
105
106         // If the stored checksum does not equal the computed checksum, do not proceed further
107         if (checksum != crc32.getValue()) {
108           break;
109         }
110
111         int limit = memory.limit();
112         memory.limit(memory.position() + length);
113         final E entry = namespace.deserialize(memory);
114         memory.limit(limit);
115         lastEntry = new Indexed<>(nextIndex, entry, length);
116         this.index.index(nextIndex, (int) position);
117         nextIndex++;
118
119         // Update the current position for indexing.
120         position = channel.position() + memory.position();
121
122         // Read more bytes from the segment if necessary.
123         if (memory.remaining() < maxEntrySize) {
124           memory.clear();
125           channel.position(position);
126           channel.read(memory, position);
127           memory.flip();
128         }
129
130         memory.mark();
131         length = memory.getInt();
132       }
133
134       // Reset the buffer to the previous mark.
135       channel.position(channel.position() + memory.reset().position());
136     } catch (BufferUnderflowException e) {
137       try {
138         channel.position(channel.position() + memory.reset().position());
139       } catch (IOException e2) {
140         throw new StorageException(e2);
141       }
142     } catch (IOException e) {
143       throw new StorageException(e);
144     }
145   }
146
147   @Override
148   public long getLastIndex() {
149     return lastEntry != null ? lastEntry.index() : segment.index() - 1;
150   }
151
152   @Override
153   public Indexed<E> getLastEntry() {
154     return lastEntry;
155   }
156
157   @Override
158   public long getNextIndex() {
159     if (lastEntry != null) {
160       return lastEntry.index() + 1;
161     } else {
162       return firstIndex;
163     }
164   }
165
166   @Override
167   public void append(Indexed<E> entry) {
168     final long nextIndex = getNextIndex();
169
170     // If the entry's index is greater than the next index in the segment, skip some entries.
171     if (entry.index() > nextIndex) {
172       throw new IndexOutOfBoundsException("Entry index is not sequential");
173     }
174
175     // If the entry's index is less than the next index, truncate the segment.
176     if (entry.index() < nextIndex) {
177       truncate(entry.index() - 1);
178     }
179     append(entry.entry());
180   }
181
182   @Override
183   @SuppressWarnings("unchecked")
184   public <T extends E> Indexed<T> append(T entry) {
185     // Store the entry index.
186     final long index = getNextIndex();
187
188     try {
189       // Serialize the entry.
190       memory.clear();
191       memory.position(Integer.BYTES + Integer.BYTES);
192       try {
193         namespace.serialize(entry, memory);
194       } catch (KryoException e) {
195         throw new StorageException.TooLarge("Entry size exceeds maximum allowed bytes (" + maxEntrySize + ")");
196       }
197       memory.flip();
198
199       final int length = memory.limit() - (Integer.BYTES + Integer.BYTES);
200
201       // Ensure there's enough space left in the buffer to store the entry.
202       long position = channel.position();
203       if (segment.descriptor().maxSegmentSize() - position < length + Integer.BYTES + Integer.BYTES) {
204         throw new BufferOverflowException();
205       }
206
207       // If the entry length exceeds the maximum entry size then throw an exception.
208       if (length > maxEntrySize) {
209         throw new StorageException.TooLarge("Entry size " + length + " exceeds maximum allowed bytes (" + maxEntrySize + ")");
210       }
211
212       // Compute the checksum for the entry.
213       final CRC32 crc32 = new CRC32();
214       crc32.update(memory.array(), Integer.BYTES + Integer.BYTES, memory.limit() - (Integer.BYTES + Integer.BYTES));
215       final long checksum = crc32.getValue();
216
217       // Create a single byte[] in memory for the entire entry and write it as a batch to the underlying buffer.
218       memory.putInt(0, length);
219       memory.putInt(Integer.BYTES, (int) checksum);
220       channel.write(memory);
221
222       // Update the last entry with the correct index/term/length.
223       Indexed<E> indexedEntry = new Indexed<>(index, entry, length);
224       this.lastEntry = indexedEntry;
225       this.index.index(index, (int) position);
226       return (Indexed<T>) indexedEntry;
227     } catch (IOException e) {
228       throw new StorageException(e);
229     }
230   }
231
232   @Override
233   public void commit(long index) {
234
235   }
236
237   @Override
238   public void truncate(long index) {
239     // If the index is greater than or equal to the last index, skip the truncate.
240     if (index >= getLastIndex()) {
241       return;
242     }
243
244     // Reset the last entry.
245     lastEntry = null;
246
247     // Truncate the index.
248     this.index.truncate(index);
249
250     try {
251       if (index < segment.index()) {
252         // Reset the writer to the first entry.
253         channel.position(JournalSegmentDescriptor.BYTES);
254       } else {
255         // Reset the writer to the given index.
256         reset(index);
257       }
258
259       // Zero the entry header at current channel position.
260       channel.write(ZERO_ENTRY_HEADER.asReadOnlyBuffer(), channel.position());
261     } catch (IOException e) {
262       throw new StorageException(e);
263     }
264   }
265
266   @Override
267   public void flush() {
268     try {
269       if (channel.isOpen()) {
270         channel.force(true);
271       }
272     } catch (IOException e) {
273       throw new StorageException(e);
274     }
275   }
276
277   @Override
278   public void close() {
279     flush();
280   }
281 }