forked from sky-big/RabbitMQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorddict.erl
266 lines (206 loc) · 8.88 KB
/
orddict.erl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 1996-2011. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
%%
%% %CopyrightEnd%
%%
-module(orddict_test).
%% Standard interface.
-export([new/0,is_key/ 2 ,to_list/1 ,from_list/1,size/1]).
-export([fetch/2,find/2,fetch_keys/ 1 ,erase/2 ]).
-export([store/3,append/ 3 ,append_list/3 ,update/3,update/ 4 ,update_counter/3 ]).
-export([fold/3,map/2,filter/ 2 ,merge/3 ]).
-export_type([orddict/0]).
%%---------------------------------------------------------------------------
-type orddict() :: [{Key :: term(), Value :: term()}].
%%---------------------------------------------------------------------------
-spec new() -> orddict().
%% 创建新的orddict数据结构,其实就是一个空列表
new() -> [].
-spec is_key( Key , Orddict ) -> boolean() when
Key :: term(),
Orddict :: orddict().
%% 判断Key是否是orddict中的Key
is_key(Key, [{K, _} | _]) when Key < K -> false;
is_key(Key, [{K ,_} | Dict]) when Key > K -> is_key( Key , Dict );
is_key(_Key, [{ _K , _Val } | _]) -> true; %Key == K
is_key(_, []) -> false.
-spec to_list( Orddict ) -> List when
Orddict :: orddict(),
List :: [{ Key :: term(), Value :: term()}].
%% 将orddict数据结构转化为列表,其实本身就是列表
to_list(Dict) -> Dict.
-spec from_list( List ) -> Orddict when
List :: [{ Key :: term(), Value :: term()}],
Orddict :: orddict().
%% 通过key-value列表对创建一个orddict数据结构
from_list(Pairs) ->
lists:foldl(fun ({ K ,V }, D) -> store( K , V , D) end, [], Pairs ).
-spec size( Orddict ) -> non_neg_integer() when
Orddict :: orddict().
%% 得到orddict数据结构中key-value键值对的数量
size(D) -> length( D ).
-spec fetch( Key , Orddict ) -> Value when
Key :: term(),
Value :: term(),
Orddict :: orddict().
%% 从orddict中查找Key对应的value(如果查找不到则会直接崩溃)
fetch(Key, [{K, _} | D]) when Key > K -> fetch( Key , D );
fetch(Key, [{K, Value} | _ ]) when Key == K -> Value.
-spec find( Key , Orddict ) -> {'ok', Value } | 'error' when
Key :: term(),
Orddict :: orddict(),
Value :: term().
%% 从orddict中查找Key对应的value(如果查找不到则会返回error)
find(Key, [{K, _} | _]) when Key < K -> error;
find(Key, [{K, _} | D]) when Key > K -> find( Key , D );
find(_Key, [{ _K , Value } | _]) -> {ok, Value }; %Key == K
find(_, []) -> error.
-spec fetch_keys( Orddict ) -> Keys when
Orddict :: orddict(),
Keys :: [term()].
%% 得到orddict结构中所有的Key的列表
fetch_keys([{Key, _} | Dict]) ->
[ Key | fetch_keys(Dict )];
fetch_keys([]) -> [].
-spec erase( Key , Orddict1 ) -> Orddict2 when
Key :: term(),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 删除orddict结构中Key对应的key-value键值对
erase(Key, [{K, _} = E | Dict]) when Key < K -> [E | Dict];
erase(Key, [{K, _} = E | Dict]) when Key > K ->
[ E | erase(Key , Dict)];
erase(_Key, [{ _K , _Val } | Dict]) -> Dict; %Key == K
erase(_, []) -> [].
-spec store( Key , Value , Orddict1) -> Orddict2 when
Key :: term(),
Value :: term(),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 给orddict结构中插入Key-New键值对
store(Key, New, [{K, _} = E | Dict]) when Key < K ->
[{ Key , New }, E | Dict];
store(Key, New, [{K, _} = E | Dict]) when Key > K ->
[ E | store(Key , New, Dict)];
store(Key, New, [{_K, _Old} | Dict ]) -> %Key == K
[{ Key , New } | Dict];
store(Key, New, []) -> [{Key , New}].
-spec append( Key , Value , Orddict1) -> Orddict2 when
Key :: term(),
Value :: term(),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 将orddict结构中Key对应的value值后面连接上New这个新value值
append(Key, New, [{K, _} = E | Dict]) when Key < K ->
[{ Key , [New ]}, E | Dict];
append(Key, New, [{K, _} = E | Dict]) when Key > K ->
[ E | append(Key , New, Dict)];
append(Key, New, [{_K, Old} | Dict]) -> %Key == K
[{ Key , Old ++ [New]} | Dict ];
append(Key, New, []) -> [{Key , [New]}].
-spec append_list( Key , ValList , Orddict1) -> Orddict2 when
Key :: term(),
ValList :: [ Value :: term()],
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 将orddict结构中Key对应的value值后面连接上NewList这个新value列表
append_list(Key, NewList, [{ K , _ } = E | Dict]) when Key < K ->
[{ Key , NewList }, E | Dict];
append_list(Key, NewList, [{ K , _ } = E | Dict]) when Key > K ->
[ E | append_list(Key , NewList, Dict )];
append_list(Key, NewList, [{ _K , Old } | Dict]) -> %Key == K
[{ Key , Old ++ NewList} | Dict ];
append_list(Key, NewList, []) ->
[{ Key , NewList }].
-spec update( Key , Fun , Orddict1) -> Orddict2 when
Key :: term(),
Fun :: fun(( Value1 :: term()) -> Value2 :: term()),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 更新orddict结构中Key对应的值(通过Fun函数对老的value值进行操作得到新的值)
update(Key, Fun, [{K, _} = E | Dict]) when Key > K ->
[ E | update(Key , Fun, Dict)];
update(Key, Fun, [{K, Val} | Dict]) when Key == K ->
[{ Key , Fun (Val)} | Dict ].
-spec update( Key , Fun , Initial, Orddict1 ) -> Orddict2 when
Key :: term(),
Initial :: term(),
Fun :: fun(( Value1 :: term()) -> Value2 :: term()),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 更新orddict结构中Key对应的值(通过Fun函数对老的value值进行操作得到新的值,如果没有Key这样的键值对,则将Init值作为value插入orddict结构中)
update(Key, _, Init, [{ K , _ } = E | Dict]) when Key < K ->
[{ Key , Init }, E | Dict];
update(Key, Fun, Init, [{ K , _ } = E | Dict]) when Key > K ->
[ E | update(Key , Fun, Init, Dict)];
update(Key, Fun, _Init, [{ _K , Val } | Dict]) -> %Key == K
[{ Key , Fun (Val)} | Dict ];
update(Key, _, Init, []) -> [{Key , Init}].
-spec update_counter( Key , Increment , Orddict1) -> Orddict2 when
Key :: term(),
Increment :: number(),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 对Key这个键值对的value值加Incr,如果不存在Key,则将Incr作为value
update_counter(Key, Incr, [{ K , _ } = E | Dict]) when Key < K ->
[{ Key , Incr }, E | Dict];
update_counter(Key, Incr, [{ K , _ } = E | Dict]) when Key > K ->
[ E | update_counter(Key , Incr, Dict)];
update_counter(Key, Incr, [{ _K , Val } | Dict]) -> %Key == K
[{ Key , Val + Incr} | Dict ];
update_counter(Key, Incr, []) -> [{Key , Incr}].
-spec fold( Fun , Acc0 , Orddict) -> Acc1 when
Fun :: fun(( Key :: term(), Value :: term(), AccIn :: term()) -> AccOut :: term()),
Acc0 :: term(),
Acc1 :: term(),
Orddict :: orddict().
%% 对orddict结构中的元素进行foldl操作
fold(F, Acc, [{Key, Val} | D]) ->
fold( F , F (Key, Val, Acc), D);
fold(F, Acc, []) when is_function(F , 3) -> Acc.
-spec map( Fun , Orddict1 ) -> Orddict2 when
Fun :: fun(( Key :: term(), Value1 :: term()) -> Value2 :: term()),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 对orddict结构中的元素进行map操作
map(F, [{Key, Val} | D]) ->
[{ Key , F (Key, Val)} | map( F , D )];
map(F, []) when is_function( F , 2 ) -> [].
-spec filter( Pred , Orddict1 ) -> Orddict2 when
Pred :: fun ((Key :: term(), Value :: term()) -> boolean()),
Orddict1 :: orddict(),
Orddict2 :: orddict().
%% 对orddict结构中的元素进行过滤
filter(F, [{Key, Val} = E | D]) ->
case F (Key, Val) of
true -> [E | filter(F, D)];
false -> filter(F , D)
end ;
filter(F, []) when is_function( F , 2 ) -> [].
-spec merge( Fun , Orddict1 , Orddict2) -> Orddict3 when
Fun :: fun(( Key :: term(), Value1 :: term(), Value2 :: term()) -> Value :: term()),
Orddict1 :: orddict(),
Orddict2 :: orddict(),
Orddict3 :: orddict().
%% 将两个orddict结构进行合并
merge(F, [{K1, _} = E1 | D1], [{K2, _} = E2 | D2]) when K1 < K2 ->
[ E1 | merge(F , D1, [E2 | D2])];
merge(F, [{K1, _} = E1 | D1], [{K2,_} = E2 | D2]) when K1 > K2 ->
[ E2 | merge(F , [E1 | D1], D2)];
merge(F, [{K1, V1} | D1], [{_K2, V2} | D2]) -> %K1 == K2
[{ K1 , F (K1, V1, V2)} | merge( F , D1 , D2)];
merge(F, [], D2) when is_function( F , 3 ) -> D2;
merge(F, D1, []) when is_function(F , 3) -> D1.