6b12df9607e3d974b3b849f058778ed2ddaf1c4b
[onosfw.git] /
1 /*
2  * Copyright 2015 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  */
16
17 package org.onosproject.store.serializers;
18
19 import com.esotericsoftware.kryo.Kryo;
20 import com.esotericsoftware.kryo.Serializer;
21 import com.esotericsoftware.kryo.io.Input;
22 import com.esotericsoftware.kryo.io.Output;
23 import org.onlab.osgi.DefaultServiceDirectory;
24 import org.onosproject.net.DeviceId;
25 import org.onosproject.net.behaviour.ExtensionResolver;
26 import org.onosproject.net.driver.DefaultDriverData;
27 import org.onosproject.net.driver.DefaultDriverHandler;
28 import org.onosproject.net.driver.DriverHandler;
29 import org.onosproject.net.driver.DriverService;
30 import org.onosproject.net.flow.instructions.ExtensionInstruction;
31 import org.onosproject.net.flow.instructions.ExtensionType;
32 import org.onosproject.net.flow.instructions.Instructions;
33
34 /**
35  * Created by jono on 10/29/15.
36  */
37 public class ExtensionInstructionSerializer extends
38         Serializer<Instructions.ExtensionInstructionWrapper> {
39
40     public ExtensionInstructionSerializer() {
41         super(false, true);
42     }
43
44     @Override
45     public void write(Kryo kryo, Output output, Instructions.ExtensionInstructionWrapper object) {
46         kryo.writeClassAndObject(output, object.extensionInstruction().type());
47         kryo.writeClassAndObject(output, object.deviceId());
48
49         kryo.writeClassAndObject(output, object.extensionInstruction().serialize());
50
51     }
52
53     @Override
54     public Instructions.ExtensionInstructionWrapper read(Kryo kryo, Input input,
55                                                          Class<Instructions.ExtensionInstructionWrapper> type) {
56         ExtensionType exType = (ExtensionType) kryo.readClassAndObject(input);
57         DeviceId deviceId = (DeviceId) kryo.readClassAndObject(input);
58
59         DriverService driverService = DefaultServiceDirectory.getService(DriverService.class);
60         DriverHandler handler = new DefaultDriverHandler(
61                 new DefaultDriverData(driverService.getDriver(deviceId), deviceId));
62
63         ExtensionResolver resolver = handler.behaviour(ExtensionResolver.class);
64
65         ExtensionInstruction instruction = resolver.getExtensionInstruction(exType);
66
67         byte[] bytes = (byte[]) kryo.readClassAndObject(input);
68
69         instruction.deserialize(bytes);
70
71         return Instructions.extension(instruction, deviceId);
72     }
73 }