Separate byte-level atomic-storage access
[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  * Copyright (c) 2024 PANTHEON.tech, s.r.o. and others.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 package io.atomix.storage.journal;
18
19 import static java.util.Objects.requireNonNull;
20
21 /**
22  * A {@link JournalWriter} backed by a {@link ByteBufWriter}.
23  */
24 final class SegmentedJournalWriter<E> implements JournalWriter<E> {
25     private final ByteBufMapper<E> mapper;
26     private final ByteBufWriter writer;
27
28     SegmentedJournalWriter(final ByteBufWriter writer, final ByteBufMapper<E> mapper) {
29         this.writer = requireNonNull(writer);
30         this.mapper = requireNonNull(mapper);
31     }
32
33     @Override
34     public long getLastIndex() {
35         return writer.lastIndex();
36     }
37
38     @Override
39     public long getNextIndex() {
40         return writer.nextIndex();
41     }
42
43     @Override
44     public void reset(final long index) {
45         writer.reset(index);
46     }
47
48     @Override
49     public void commit(final long index) {
50         writer.commit(index);
51     }
52
53     @Override
54     public <T extends E> Indexed<T> append(final T entry) {
55         final var buf = mapper.objectToBytes(entry);
56         return new Indexed<>(writer.append(buf), entry, buf.readableBytes());
57     }
58
59     @Override
60     public void truncate(final long index) {
61         writer.truncate(index);
62     }
63
64     @Override
65     public void flush() {
66         writer.flush();
67     }
68 }