blob: 4abb5e6465c66d93d4c6c633e5ae4975f4a43522 [file] [log] [blame]
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -08001/*
2 * Copyright 2014 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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.codec.impl;
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080017
Ray Milkeyb9a8a182015-01-20 14:15:35 -080018import java.util.Map;
19import java.util.Set;
20import java.util.concurrent.ConcurrentHashMap;
21
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080022import org.apache.felix.scr.annotations.Activate;
23import org.apache.felix.scr.annotations.Component;
24import org.apache.felix.scr.annotations.Deactivate;
25import org.apache.felix.scr.annotations.Service;
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080026import org.onlab.packet.Ethernet;
Brian O'Connorabafb502014-12-02 22:26:20 -080027import org.onosproject.codec.CodecService;
28import org.onosproject.codec.JsonCodec;
Thomas Vachuska02aeb032015-01-06 22:36:30 -080029import org.onosproject.core.Application;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.Annotations;
31import org.onosproject.net.ConnectPoint;
32import org.onosproject.net.Device;
Ray Milkey1f95bd32014-12-10 11:11:00 -080033import org.onosproject.net.Host;
34import org.onosproject.net.HostLocation;
Brian O'Connorabafb502014-12-02 22:26:20 -080035import org.onosproject.net.Link;
Ray Milkey19ffea32015-01-28 10:03:06 -080036import org.onosproject.net.Path;
Brian O'Connorabafb502014-12-02 22:26:20 -080037import org.onosproject.net.Port;
Ray Milkey4f5de002014-12-17 19:26:11 -080038import org.onosproject.net.flow.FlowEntry;
39import org.onosproject.net.flow.TrafficSelector;
40import org.onosproject.net.flow.TrafficTreatment;
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080041import org.onosproject.net.flow.criteria.Criterion;
42import org.onosproject.net.flow.instructions.Instruction;
43import org.onosproject.net.intent.ConnectivityIntent;
Ray Milkeyb9a8a182015-01-20 14:15:35 -080044import org.onosproject.net.intent.Constraint;
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080045import org.onosproject.net.intent.HostToHostIntent;
Ray Milkey2b217142014-12-15 09:24:24 -080046import org.onosproject.net.intent.Intent;
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080047import org.onosproject.net.intent.PointToPointIntent;
Ray Milkey82e50312015-01-22 17:01:42 -080048import org.onosproject.net.topology.Topology;
49import org.onosproject.net.topology.TopologyCluster;
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080050import org.slf4j.Logger;
51import org.slf4j.LoggerFactory;
52
Ray Milkeyb9a8a182015-01-20 14:15:35 -080053import com.google.common.collect.ImmutableSet;
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080054
55/**
56 * Implementation of the JSON codec brokering service.
57 */
58@Component(immediate = true)
59@Service
60public class CodecManager implements CodecService {
61
62 private static Logger log = LoggerFactory.getLogger(CodecManager.class);
63
64 private final Map<Class<?>, JsonCodec> codecs = new ConcurrentHashMap<>();
65
66 @Activate
67 public void activate() {
68 codecs.clear();
Thomas Vachuska02aeb032015-01-06 22:36:30 -080069 registerCodec(Application.class, new ApplicationCodec());
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080070 registerCodec(Annotations.class, new AnnotationsCodec());
71 registerCodec(Device.class, new DeviceCodec());
72 registerCodec(Port.class, new PortCodec());
73 registerCodec(ConnectPoint.class, new ConnectPointCodec());
74 registerCodec(Link.class, new LinkCodec());
Ray Milkey1f95bd32014-12-10 11:11:00 -080075 registerCodec(Host.class, new HostCodec());
76 registerCodec(HostLocation.class, new HostLocationCodec());
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080077 registerCodec(HostToHostIntent.class, new HostToHostIntentCodec());
78 registerCodec(PointToPointIntent.class, new PointToPointIntentCodec());
Ray Milkey2b217142014-12-15 09:24:24 -080079 registerCodec(Intent.class, new IntentCodec());
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080080 registerCodec(ConnectivityIntent.class, new ConnectivityIntentCodec());
Ray Milkey4f5de002014-12-17 19:26:11 -080081 registerCodec(FlowEntry.class, new FlowEntryCodec());
82 registerCodec(TrafficTreatment.class, new TrafficTreatmentCodec());
83 registerCodec(TrafficSelector.class, new TrafficSelectorCodec());
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080084 registerCodec(Instruction.class, new InstructionCodec());
85 registerCodec(Criterion.class, new CriterionCodec());
86 registerCodec(Ethernet.class, new EthernetCodec());
Ray Milkeyb9a8a182015-01-20 14:15:35 -080087 registerCodec(Constraint.class, new ConstraintCodec());
Ray Milkey82e50312015-01-22 17:01:42 -080088 registerCodec(Topology.class, new TopologyCodec());
89 registerCodec(TopologyCluster.class, new TopologyClusterCodec());
Ray Milkey19ffea32015-01-28 10:03:06 -080090 registerCodec(Path.class, new PathCodec());
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080091 log.info("Started");
92 }
93
94 @Deactivate
Ray Milkey1f95bd32014-12-10 11:11:00 -080095 public void deactivate() {
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -080096 codecs.clear();
97 log.info("Stopped");
98 }
99
100 @Override
101 public Set<Class<?>> getCodecs() {
102 return ImmutableSet.copyOf(codecs.keySet());
103 }
104
105 @Override
106 @SuppressWarnings("unchecked")
107 public <T> JsonCodec<T> getCodec(Class<T> entityClass) {
108 return codecs.get(entityClass);
109 }
110
111 @Override
112 public <T> void registerCodec(Class<T> entityClass, JsonCodec<T> codec) {
113 codecs.putIfAbsent(entityClass, codec);
114 }
115
116 @Override
117 public void unregisterCodec(Class<?> entityClass) {
118 codecs.remove(entityClass);
119 }
120
121}