BUG-113: split HandlerRegistry into per-class registries
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / PCEPIncludeRouteObjectParser.java
1 /*
2  * Copyright (c) 2013 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.impl.object;
9
10 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
11 import org.opendaylight.protocol.pcep.PCEPDocumentedException;
12 import org.opendaylight.protocol.pcep.spi.AbstractObjectParser;
13 import org.opendaylight.protocol.pcep.spi.SubobjectHandlerRegistry;
14 import org.opendaylight.protocol.pcep.spi.TlvHandlerRegistry;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.IncludeRouteObject;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Object;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ObjectHeader;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.lsp.attributes.IncludeRouteBuilder;
20
21 /**
22  * Parser for {@link IncludeRouteObject}
23  */
24 public class PCEPIncludeRouteObjectParser extends AbstractObjectParser<IncludeRouteBuilder> {
25
26         public static final int CLASS = 10;
27
28         public static final int TYPE = 1;
29
30         public PCEPIncludeRouteObjectParser(final SubobjectHandlerRegistry subobjReg, final TlvHandlerRegistry tlvReg) {
31                 super(subobjReg, tlvReg);
32         }
33
34         @Override
35         public IncludeRouteObject parseObject(final ObjectHeader header, final byte[] bytes) throws PCEPDeserializerException,
36         PCEPDocumentedException {
37                 if (bytes == null || bytes.length == 0) {
38                         throw new IllegalArgumentException("Byte array is mandatory. Can't be null or empty.");
39                 }
40
41                 final IncludeRouteBuilder builder = new IncludeRouteBuilder();
42
43                 builder.setIgnore(header.isIgnore());
44                 builder.setProcessingRule(header.isProcessingRule());
45                 // FIXME: add subobjects
46                 return builder.build();
47         }
48
49         @Override
50         public void addTlv(final IncludeRouteBuilder builder, final Tlv tlv) {
51                 // No tlvs defined
52         }
53
54         @Override
55         public byte[] serializeObject(final Object object) {
56                 if (!(object instanceof IncludeRouteObject)) {
57                         throw new IllegalArgumentException("Wrong instance of PCEPObject. Passed " + object.getClass() + ". Needed IncludeRouteObject.");
58                 }
59
60                 assert !(((IncludeRouteObject) object).getSubobjects().isEmpty()) : "Empty Include Route Object.";
61
62                 // return PCEPEROSubobjectParser.put(((PCEPIncludeRouteObject) object).getSubobjects());
63                 // FIXME add subobjects
64                 return null;
65         }
66
67         @Override
68         public int getObjectType() {
69                 return TYPE;
70         }
71
72         @Override
73         public int getObjectClass() {
74                 return CLASS;
75         }
76 }