blob: bf362747acf4a5aa74fe78a6bd33d3c077bb3cd9 [file] [log] [blame]
Frank Wangd7e3b4b2017-09-24 13:37:54 +09001/*
2 * Copyright 2017-present Open Networking Foundation
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
17package org.onosproject.drivers.p4runtime.mirror;
18
Frank Wangd7e3b4b2017-09-24 13:37:54 +090019import org.onlab.util.KryoNamespace;
Frank Wangd7e3b4b2017-09-24 13:37:54 +090020import org.onosproject.net.pi.runtime.PiMeterCellConfig;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070021import org.onosproject.net.pi.runtime.PiMeterHandle;
Frank Wangd7e3b4b2017-09-24 13:37:54 +090022import org.onosproject.store.serializers.KryoNamespaces;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070023import org.osgi.service.component.annotations.Component;
Frank Wangd7e3b4b2017-09-24 13:37:54 +090024
25/**
26 * Distributed implementation of a P4Runtime meter mirror.
27 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070028@Component(immediate = true, service = P4RuntimeMeterMirror.class)
Frank Wangd7e3b4b2017-09-24 13:37:54 +090029public final class DistributedP4RuntimeMeterMirror
30 extends AbstractDistributedP4RuntimeMirror
31 <PiMeterHandle, PiMeterCellConfig>
32 implements P4RuntimeMeterMirror {
33
34 private static final String DIST_MAP_NAME = "onos-p4runtime-meter-mirror";
35
36 @Override
37 String mapName() {
38 return DIST_MAP_NAME;
39 }
40
41 @Override
42 KryoNamespace storeSerializer() {
43 return KryoNamespace.newBuilder()
44 .register(KryoNamespaces.API)
45 .register(TimedEntry.class)
46 .build();
47 }
48}