Add LithiumSR1 input/output support
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / SodiumSR1DataInput.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, 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.cluster.datastore.node.utils.stream;
9
10 import java.io.DataInput;
11 import java.io.IOException;
12 import java.math.BigInteger;
13
14 final class SodiumSR1DataInput extends AbstractMagnesiumDataInput {
15     SodiumSR1DataInput(final DataInput input) {
16         super(input);
17     }
18
19     @Override
20     public NormalizedNodeStreamVersion getVersion() {
21         return NormalizedNodeStreamVersion.SODIUM_SR1;
22     }
23
24     @Override
25     BigInteger readBigInteger() throws IOException {
26         // FIXME: use string -> BigInteger cache
27         return new BigInteger(input.readUTF());
28     }
29 }