blob: 5b2ff21fe4420c3b33e27a99350b5b098f64e7fa [file] [log] [blame]
Carmelo Casconee44592f2018-09-12 02:24:47 -07001/*
2 * Copyright 2018-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
Carmelo Casconee44592f2018-09-12 02:24:47 -070019import org.onlab.util.KryoNamespace;
Carmelo Casconecb4327a2018-09-11 15:17:23 -070020import org.onosproject.net.pi.runtime.PiActionProfileMember;
21import org.onosproject.net.pi.runtime.PiActionProfileMemberHandle;
Carmelo Casconee44592f2018-09-12 02:24:47 -070022import org.onosproject.store.serializers.KryoNamespaces;
Ray Milkeydb57f1c2018-10-09 10:39:29 -070023import org.osgi.service.component.annotations.Component;
Carmelo Casconee44592f2018-09-12 02:24:47 -070024
25/**
26 * Distributed implementation of a P4Runtime action profile member mirror.
27 */
Carmelo Casconea46f5542018-12-12 23:41:01 -080028@Component(immediate = true, service = P4RuntimeActionProfileMemberMirror.class)
Carmelo Casconee44592f2018-09-12 02:24:47 -070029public class DistributedP4RuntimeActionProfileMemberMirror
30 extends AbstractDistributedP4RuntimeMirror
Carmelo Casconecb4327a2018-09-11 15:17:23 -070031 <PiActionProfileMemberHandle, PiActionProfileMember>
Carmelo Casconee44592f2018-09-12 02:24:47 -070032 implements P4RuntimeActionProfileMemberMirror {
33
34 private static final String DIST_MAP_NAME = "onos-p4runtime-act-prof-member-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}