58f9d35291da5d5e9b44869897545e627c9ea896
[controller.git] / atomix-storage / src / main / java / io / atomix / storage / journal / ByteBufWriter.java
1 /*
2  * Copyright (c) 2024 PANTHEON.tech, s.r.o. 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 io.netty.buffer.ByteBuf;
19 import org.eclipse.jdt.annotation.NonNullByDefault;
20
21 /**
22  * A writer of {@link ByteBufJournal} entries.
23  */
24 @NonNullByDefault
25 public interface ByteBufWriter {
26     /**
27      * Returns the next index to be written.
28      *
29      * @return The next index to be written
30      */
31     long nextIndex();
32
33     /**
34      * Appends an entry to the journal.
35      *
36      * @param bytes Data block to append
37      * @return The index of appended data block
38      */
39     // FIXME: throws IOException
40     long append(ByteBuf bytes);
41
42     /**
43      * Commits entries up to the given index.
44      *
45      * @param index The index up to which to commit entries.
46      */
47     void commit(long index);
48
49     /**
50      * Resets the head of the journal to the given index.
51      *
52      * @param index the next index to write
53      * @throws IndexOutOfBoundsException if the journal cannot be reset to specified index
54      */
55     // FIXME: throws IOException
56     void reset(long index);
57
58     /**
59      * Truncates the log to the given index.
60      *
61      * @param index The index to which to truncate the log.
62      * @throws IndexOutOfBoundsException if the journal cannot be reset to specified index
63      */
64     // FIXME: reconcile with reset()
65     // FIXME: throws IOException
66     void truncate(long index);
67
68     /**
69      * Flushes written entries to disk.
70      */
71     // FIXME: throws IOException
72     void flush();
73 }