HONEYCOMB-75 - Lisp implemetation
[honeycomb.git] / lisp / lisp2vpp / src / main / java / io / fd / honeycomb / lisp / translate / read / dump / executor / params / LocatorDumpParams.java
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package io.fd.honeycomb.lisp.translate.read.dump.executor.params;
18
19 import static com.google.common.base.Preconditions.checkNotNull;
20
21 /**
22  * Params for dumping locators
23  */
24 public final class LocatorDumpParams {
25
26     private final int locatorSetIndex;
27     private final byte filter;
28
29     private LocatorDumpParams(LocatorDumpParamsBuilder builder) {
30         this.locatorSetIndex = builder.locatorSetIndex;
31         this.filter = builder.filter;
32     }
33
34     public int getLocatorSetIndex() {
35         return locatorSetIndex;
36     }
37
38     public byte getFilter() {
39         return filter;
40     }
41
42     /**
43      * Enum for filtering which locators to dump
44      */
45     public enum LocatorDumpFilter {
46
47         ALL(0),
48         LOCAL(1),
49         REMOTE(2);
50
51         private final int value;
52
53         private LocatorDumpFilter(int value) {
54             this.value = value;
55         }
56
57         public final int getValue() {
58             return value;
59         }
60     }
61
62     public static final class LocatorDumpParamsBuilder {
63
64         public int locatorSetIndex;
65         public byte filter;
66
67
68         public LocatorDumpParamsBuilder setLocatorSetIndex(final int locatorSetIndex) {
69             this.locatorSetIndex = locatorSetIndex;
70             return this;
71         }
72
73         public LocatorDumpParamsBuilder setFilter(final LocatorDumpFilter filter) {
74             this.filter = Integer.valueOf(checkNotNull(filter, "Cannot set null filter").getValue()).byteValue();
75             return this;
76         }
77
78         public LocatorDumpParams build() {
79             return new LocatorDumpParams(this);
80         }
81     }
82 }