Modernize sal-akka-segmented-journal
[controller.git] / opendaylight / md-sal / sal-akka-segmented-journal / src / main / java / org / opendaylight / controller / akka / segjournal / DataJournalEntry.java
1 /*
2  * Copyright (c) 2019 Pantheon Technologies, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.akka.segjournal;
9
10 import static java.util.Objects.requireNonNull;
11
12 import akka.persistence.PersistentRepr;
13 import io.atomix.storage.journal.JournalSegment;
14
15 /**
16  * A single entry in the data journal. We do not store {@code persistenceId} for each entry, as that is a
17  * journal-invariant, nor do we store {@code sequenceNr}, as that information is maintained by {@link JournalSegment}'s
18  * index.
19  */
20 abstract sealed class DataJournalEntry {
21     /**
22      * A single data journal entry on its way to the backing file.
23      */
24     static final class ToPersistence extends DataJournalEntry {
25         private final PersistentRepr repr;
26
27         ToPersistence(final PersistentRepr repr) {
28             this.repr = requireNonNull(repr);
29         }
30
31         PersistentRepr repr() {
32             return repr;
33         }
34     }
35
36     /**
37      * A single data journal entry on its way from the backing file.
38      */
39     static final class FromPersistence extends DataJournalEntry {
40         private final String manifest;
41         private final String writerUuid;
42         private final Object payload;
43
44         FromPersistence(final String manifest, final String writerUuid, final Object payload) {
45             this.manifest = manifest;
46             this.writerUuid = requireNonNull(writerUuid);
47             this.payload = requireNonNull(payload);
48         }
49
50         PersistentRepr toRepr(final String persistenceId, final long sequenceNr) {
51             return PersistentRepr.apply(payload, sequenceNr, persistenceId, manifest, false, null, writerUuid);
52         }
53     }
54 }