Merge "BUG 2221 : Add metering to ShardTransaction actor"
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / stream / PathArgumentTypes.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
9 package org.opendaylight.controller.cluster.datastore.node.utils.stream;
10
11 import com.google.common.collect.ImmutableMap;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
13
14 import java.util.Map;
15
16 public class PathArgumentTypes {
17     public static final byte AUGMENTATION_IDENTIFIER = 1;
18     public static final byte NODE_IDENTIFIER = 2;
19     public static final byte NODE_IDENTIFIER_WITH_VALUE = 3;
20     public static final byte NODE_IDENTIFIER_WITH_PREDICATES = 4;
21
22     private static Map<Class<?>, Byte> CLASS_TO_ENUM_MAP =
23             ImmutableMap.<Class<?>, Byte>builder().
24                 put(YangInstanceIdentifier.AugmentationIdentifier.class, AUGMENTATION_IDENTIFIER).
25                 put(YangInstanceIdentifier.NodeIdentifier.class, NODE_IDENTIFIER).
26                 put(YangInstanceIdentifier.NodeIdentifierWithPredicates.class, NODE_IDENTIFIER_WITH_PREDICATES).
27                 put(YangInstanceIdentifier.NodeWithValue.class, NODE_IDENTIFIER_WITH_VALUE).build();
28
29     public static byte getSerializablePathArgumentType(YangInstanceIdentifier.PathArgument pathArgument){
30
31         Byte type = CLASS_TO_ENUM_MAP.get(pathArgument.getClass());
32         if(type == null) {
33             throw new IllegalArgumentException("Unknown type of PathArgument = " + pathArgument);
34         }
35
36         return type;
37     }
38
39 }