b1567c2a86bc79d76bfdedd6792bddfabee9607d
[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.ByteBufWriteUtil;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.proc.time.object.ProcTime;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.proc.time.object.ProcTimeBuilder;
24 import org.opendaylight.yangtools.yang.common.netty.ByteBufUtils;
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     private static final int CLASS = 26;
32     private static final int TYPE = 1;
33     private static final int RESERVED = 2;
34     private static final int FLAGS = 16;
35     private static final int COUNT_FIELDS = 5;
36     private static final int BODY_SIZE = RESERVED + FLAGS + COUNT_FIELDS * Integer.BYTES;
37     private static final int E_FLAG_POSITION = 15;
38
39     public PCEPProcTimeObjectParser() {
40         super(CLASS, TYPE);
41     }
42
43     @Override
44     public void serializeObject(final Object object, final ByteBuf buffer) {
45         checkArgument(object instanceof ProcTime,
46             "Wrong instance of PCEPObject. Passed %s. Needed ProcTimeObject.", object.getClass());
47         final ProcTime procTime = (ProcTime) object;
48         final ByteBuf body = Unpooled.buffer(BODY_SIZE);
49         body.writeZero(RESERVED);
50         final BitArray flagBits = new BitArray(FLAGS);
51         flagBits.set(E_FLAG_POSITION, procTime.isEstimated());
52         flagBits.toByteBuf(body);
53         ByteBufWriteUtil.writeUnsignedInt(procTime.getCurrentProcTime(), body);
54         ByteBufWriteUtil.writeUnsignedInt(procTime.getMinProcTime(), body);
55         ByteBufWriteUtil.writeUnsignedInt(procTime.getMaxProcTime(), body);
56         ByteBufWriteUtil.writeUnsignedInt(procTime.getAverageProcTime(), body);
57         ByteBufWriteUtil.writeUnsignedInt(procTime.getVarianceProcTime(), body);
58         ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), body, buffer);
59     }
60
61     @Override
62     public Object parseObject(final ObjectHeader header, final ByteBuf buffer) throws PCEPDeserializerException {
63         checkArgument(buffer != null && buffer.isReadable(),
64             "Array of bytes is mandatory. Can't be null or empty.");
65         buffer.skipBytes(RESERVED);
66         final BitArray flagBits = BitArray.valueOf(buffer, FLAGS);
67
68         return new ProcTimeBuilder()
69                 .setEstimated(flagBits.get(E_FLAG_POSITION))
70                 .setCurrentProcTime(ByteBufUtils.readUint32(buffer))
71                 .setMinProcTime(ByteBufUtils.readUint32(buffer))
72                 .setMaxProcTime(ByteBufUtils.readUint32(buffer))
73                 .setAverageProcTime(ByteBufUtils.readUint32(buffer))
74                 .setVarianceProcTime(ByteBufUtils.readUint32(buffer))
75                 .build();
76     }
77 }