blob: 6b15e51bfb4d2fcdb497d72fa75b37475b1190d1 [file] [log] [blame]
Sho SHIMIZU6ec2eca2016-05-19 11:37:01 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
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 */
16package org.onosproject.store.resource.impl;
17
18import org.onlab.packet.MplsLabel;
19import org.onlab.packet.VlanId;
20import org.onosproject.net.resource.DiscreteResource;
21import org.onosproject.net.resource.DiscreteResourceCodec;
22import org.onosproject.net.resource.MplsCodec;
23import org.onosproject.net.resource.VlanCodec;
24
25import java.util.HashMap;
26import java.util.Map;
27
28/**
29 * A set of {@link DiscreteResourceCodec DiscreteResourceCodecs}.
30 */
31final class Codecs {
32 private static final Codecs INSTANCE = new Codecs();
33
34 private final Map<Class<?>, DiscreteResourceCodec<?>> codecs;
35
36 /**
37 * Returns an instance of this class.
38 *
39 * @return instance
40 */
41 static Codecs getInstance() {
42 return INSTANCE;
43 }
44
45 private Codecs() {
46 this.codecs = new HashMap<>();
47 init();
48 }
49
50 private void init() {
51 codecs.put(VlanId.class, new VlanCodec());
52 codecs.put(MplsLabel.class, new MplsCodec());
53 }
54
55 /**
56 * Returns if there is a codec available for the specified resource.
57 *
58 * @param resource resource to be encoded
59 * @return true if this class can encode the resource, otherwise false.
60 */
61 boolean isEncodable(DiscreteResource resource) {
62 return resource.valueAs(Object.class)
63 .map(Object::getClass)
64 .map(codecs::containsKey)
65 .orElse(Boolean.FALSE);
66 }
67
68 /**
69 * Returns the codec for the specified class.
70 *
71 * @param cls class of an instance to be encoded
72 * @return the codec for the class
73 */
74 DiscreteResourceCodec<?> getCodec(Class<?> cls) {
75 return codecs.get(cls);
76 }
77}