Remove superfluous constants
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / object / PCEPProcTimeObjectParser.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. 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.protocol.pcep.parser.object;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11
12 import io.netty.buffer.ByteBuf;
13 import io.netty.buffer.Unpooled;
14 import org.opendaylight.protocol.pcep.spi.CommonObjectParser;
15 import org.opendaylight.protocol.pcep.spi.ObjectSerializer;
16 import org.opendaylight.protocol.pcep.spi.ObjectUtil;
17 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
18 import org.opendaylight.protocol.util.BitArray;
19 import org.opendaylight.protocol.util.ByteBufUtils;
20 import org.opendaylight.protocol.util.ByteBufWriteUtil;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.proc.time.object.ProcTime;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.proc.time.object.ProcTimeBuilder;
25
26 /**
27  * Parser for {@link ProcTime}.
28  * @see <a href="https://tools.ietf.org/html/rfc5886#section-4.4">PROC-TIME Object</a>
29  */
30 public class PCEPProcTimeObjectParser extends CommonObjectParser implements ObjectSerializer {
31
32     private static final int CLASS = 26;
33     private static final int TYPE = 1;
34     private static final int RESERVED = 2;
35     private static final int FLAGS = 16;
36     private static final int COUNT_FIELDS = 5;
37     private static final int BODY_SIZE = RESERVED + FLAGS + COUNT_FIELDS * Integer.BYTES;
38     private static final int E_FLAG_POSITION = 15;
39
40     public PCEPProcTimeObjectParser() {
41         super(CLASS, TYPE);
42     }
43
44     @Override
45     public void serializeObject(final Object object, final ByteBuf buffer) {
46         checkArgument(object instanceof ProcTime,
47             "Wrong instance of PCEPObject. Passed %s. Needed ProcTimeObject.", object.getClass());
48         final ProcTime procTime = (ProcTime) object;
49         final ByteBuf body = Unpooled.buffer(BODY_SIZE);
50         body.writeZero(RESERVED);
51         final BitArray flagBits = new BitArray(FLAGS);
52         flagBits.set(E_FLAG_POSITION, procTime.isEstimated());
53         flagBits.toByteBuf(body);
54         ByteBufWriteUtil.writeUnsignedInt(procTime.getCurrentProcTime(), body);
55         ByteBufWriteUtil.writeUnsignedInt(procTime.getMinProcTime(), body);
56         ByteBufWriteUtil.writeUnsignedInt(procTime.getMaxProcTime(), body);
57         ByteBufWriteUtil.writeUnsignedInt(procTime.getAverageProcTime(), body);
58         ByteBufWriteUtil.writeUnsignedInt(procTime.getVarianceProcTime(), body);
59         ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), body, buffer);
60     }
61
62     @Override
63     public Object parseObject(final ObjectHeader header, final ByteBuf buffer) throws PCEPDeserializerException {
64         checkArgument(buffer != null && buffer.isReadable(),
65             "Array of bytes is mandatory. Can't be null or empty.");
66         buffer.skipBytes(RESERVED);
67         final BitArray flagBits = BitArray.valueOf(buffer, FLAGS);
68
69         return new ProcTimeBuilder()
70                 .setEstimated(flagBits.get(E_FLAG_POSITION))
71                 .setCurrentProcTime(ByteBufUtils.readUint32(buffer))
72                 .setMinProcTime(ByteBufUtils.readUint32(buffer))
73                 .setMaxProcTime(ByteBufUtils.readUint32(buffer))
74                 .setAverageProcTime(ByteBufUtils.readUint32(buffer))
75                 .setVarianceProcTime(ByteBufUtils.readUint32(buffer))
76                 .build();
77     }
78 }