Improve segmented journal actor metrics
[controller.git] / atomix-storage / src / main / java / io / atomix / storage / journal / SegmentedJournalWriter.java
1 /*
2  * Copyright 2017-2022 Open Networking Foundation and others.  All rights reserved.
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 static com.google.common.base.Verify.verifyNotNull;
19
20 /**
21  * Raft log writer.
22  */
23 final class SegmentedJournalWriter<E> implements JournalWriter<E> {
24   private final SegmentedJournal<E> journal;
25   private JournalSegment<E> currentSegment;
26   private JournalSegmentWriter<E> currentWriter;
27
28   SegmentedJournalWriter(SegmentedJournal<E> journal) {
29     this.journal = journal;
30     this.currentSegment = journal.getLastSegment();
31     this.currentWriter = currentSegment.acquireWriter();
32   }
33
34   @Override
35   public long getLastIndex() {
36     return currentWriter.getLastIndex();
37   }
38
39   @Override
40   public Indexed<E> getLastEntry() {
41     return currentWriter.getLastEntry();
42   }
43
44   @Override
45   public long getNextIndex() {
46     return currentWriter.getNextIndex();
47   }
48
49   @Override
50   public void reset(long index) {
51     if (index > currentSegment.firstIndex()) {
52       currentSegment.releaseWriter();
53       currentSegment = journal.resetSegments(index);
54       currentWriter = currentSegment.acquireWriter();
55     } else {
56       truncate(index - 1);
57     }
58     journal.resetHead(index);
59   }
60
61   @Override
62   public void commit(long index) {
63     if (index > journal.getCommitIndex()) {
64       journal.setCommitIndex(index);
65       if (journal.isFlushOnCommit()) {
66         flush();
67       }
68     }
69   }
70
71   @Override
72   public <T extends E> Indexed<T> append(T entry) {
73     var indexed = currentWriter.append(entry);
74     if (indexed != null) {
75       return indexed;
76     }
77
78     //  Slow path: we do not have enough capacity
79     currentWriter.flush();
80     currentSegment.releaseWriter();
81     currentSegment = journal.getNextSegment();
82     currentWriter = currentSegment.acquireWriter();
83     return verifyNotNull(currentWriter.append(entry));
84   }
85
86   @Override
87   public void truncate(long index) {
88     if (index < journal.getCommitIndex()) {
89       throw new IndexOutOfBoundsException("Cannot truncate committed index: " + index);
90     }
91
92     // Delete all segments with first indexes greater than the given index.
93     while (index < currentSegment.firstIndex() && currentSegment != journal.getFirstSegment()) {
94       currentSegment.releaseWriter();
95       journal.removeSegment(currentSegment);
96       currentSegment = journal.getLastSegment();
97       currentWriter = currentSegment.acquireWriter();
98     }
99
100     // Truncate the current index.
101     currentWriter.truncate(index);
102
103     // Reset segment readers.
104     journal.resetTail(index + 1);
105   }
106
107   @Override
108   public void flush() {
109     currentWriter.flush();
110   }
111 }