Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-codec-binfmt / src / main / java / org / opendaylight / yangtools / yang / data / codec / binfmt / 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.yangtools.yang.data.codec.binfmt;
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 }