fory_core/serializer/
set.rs

1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements.  See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.  The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License.  You may obtain a copy of the License at
8//
9//   http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied.  See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18use crate::error::Error;
19use crate::resolver::context::ReadContext;
20use crate::resolver::context::WriteContext;
21use crate::resolver::type_resolver::TypeResolver;
22use crate::serializer::collection::{
23    read_collection_data, read_collection_type_info, write_collection_data,
24    write_collection_type_info,
25};
26
27use crate::serializer::{ForyDefault, Serializer};
28use crate::types::TypeId;
29use std::collections::{BTreeSet, HashSet};
30use std::mem;
31
32impl<T: Serializer + ForyDefault + Eq + std::hash::Hash> Serializer for HashSet<T> {
33    fn fory_write_data(&self, context: &mut WriteContext) -> Result<(), Error> {
34        write_collection_data(self, context, false)
35    }
36
37    fn fory_write_type_info(context: &mut WriteContext) -> Result<(), Error> {
38        write_collection_type_info(context, TypeId::SET as u32)
39    }
40
41    fn fory_read_data(context: &mut ReadContext) -> Result<Self, Error> {
42        read_collection_data(context)
43    }
44
45    fn fory_read_type_info(context: &mut ReadContext) -> Result<(), Error> {
46        read_collection_type_info(context, TypeId::SET as u32)
47    }
48
49    fn fory_reserved_space() -> usize {
50        mem::size_of::<i32>()
51    }
52
53    fn fory_get_type_id(_: &TypeResolver) -> Result<u32, Error> {
54        Ok(TypeId::SET as u32)
55    }
56
57    fn fory_type_id_dyn(&self, _: &TypeResolver) -> Result<u32, Error> {
58        Ok(TypeId::SET as u32)
59    }
60
61    fn fory_static_type_id() -> TypeId
62    where
63        Self: Sized,
64    {
65        TypeId::SET
66    }
67
68    fn as_any(&self) -> &dyn std::any::Any {
69        self
70    }
71}
72
73impl<T> ForyDefault for HashSet<T> {
74    fn fory_default() -> Self {
75        HashSet::new()
76    }
77}
78
79impl<T: Serializer + ForyDefault + Ord> Serializer for BTreeSet<T> {
80    fn fory_write_data(&self, context: &mut WriteContext) -> Result<(), Error> {
81        write_collection_data(self, context, false)
82    }
83
84    fn fory_write_type_info(context: &mut WriteContext) -> Result<(), Error> {
85        write_collection_type_info(context, TypeId::SET as u32)
86    }
87
88    fn fory_read_data(context: &mut ReadContext) -> Result<Self, Error> {
89        read_collection_data(context)
90    }
91
92    fn fory_read_type_info(context: &mut ReadContext) -> Result<(), Error> {
93        read_collection_type_info(context, TypeId::SET as u32)
94    }
95
96    fn fory_reserved_space() -> usize {
97        mem::size_of::<i32>()
98    }
99
100    fn fory_get_type_id(_: &TypeResolver) -> Result<u32, Error> {
101        Ok(TypeId::SET as u32)
102    }
103
104    fn fory_type_id_dyn(&self, _: &TypeResolver) -> Result<u32, Error> {
105        Ok(TypeId::SET as u32)
106    }
107
108    fn fory_static_type_id() -> TypeId
109    where
110        Self: Sized,
111    {
112        TypeId::SET
113    }
114
115    fn as_any(&self) -> &dyn std::any::Any {
116        self
117    }
118}
119
120impl<T> ForyDefault for BTreeSet<T> {
121    fn fory_default() -> Self {
122        BTreeSet::new()
123    }
124}