blob: 6f65392bca8393fa730e8a46897adb5f0feac0d7 [file] [log] [blame]
Sho SHIMIZUe4f76ed2016-05-19 11:40:31 -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 com.esotericsoftware.kryo.Kryo;
19import com.esotericsoftware.kryo.Serializer;
20import com.esotericsoftware.kryo.io.Input;
21import com.esotericsoftware.kryo.io.Output;
22import org.onosproject.net.resource.DiscreteResource;
Sho SHIMIZUe4f76ed2016-05-19 11:40:31 -070023
24import java.util.LinkedHashSet;
25import java.util.Set;
26import java.util.stream.Collectors;
27
28/**
29 * Kryo serializer for {@link EncodableDiscreteResources}.
30 */
31class EncodableDiscreteResourcesSerializer extends Serializer<EncodableDiscreteResources> {
32 @Override
33 public void write(Kryo kryo, Output output, EncodableDiscreteResources object) {
34 kryo.writeObject(output, object.parent());
35 kryo.writeObject(output, new LinkedHashSet<>(object.rawValues().values()));
36 }
37
38 @Override
39 public EncodableDiscreteResources read(Kryo kryo, Input input, Class<EncodableDiscreteResources> cls) {
40 DiscreteResource parent = kryo.readObject(input, DiscreteResource.class);
41 @SuppressWarnings("unchecked")
Sho SHIMIZU2795d632016-05-25 14:10:13 -070042 Set<EncodedDiscreteResources> resources = kryo.readObject(input, LinkedHashSet.class);
Sho SHIMIZUe4f76ed2016-05-19 11:40:31 -070043
44 return EncodableDiscreteResources.of(parent,
45 resources.stream()
Sho SHIMIZU2795d632016-05-25 14:10:13 -070046 .flatMap(x -> x.resources(parent.id()).stream())
Sho SHIMIZUe4f76ed2016-05-19 11:40:31 -070047 .collect(Collectors.toCollection(LinkedHashSet::new)));
48 }
49}