forked from rabbitmq/rabbitmq-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrabbit_misc.erl
More file actions
1658 lines (1466 loc) · 57.5 KB
/
Copy pathrabbit_misc.erl
File metadata and controls
1658 lines (1466 loc) · 57.5 KB
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
%%
%% Copyright (c) 2007-2026 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
%%
-module(rabbit_misc).
-ignore_xref([{maps, get, 2}]).
-include("rabbit.hrl").
-include("rabbit_misc.hrl").
-include_lib("kernel/include/file.hrl").
-include_lib("kernel/include/logger.hrl").
-ifdef(TEST).
-export([decompose_pid/1, compose_pid/4]).
-endif.
-export([method_record_type/1, polite_pause/0, polite_pause/1]).
-export([die/1, frame_error/2, amqp_error/4, quit/1,
protocol_error/3, protocol_error/4, protocol_error/1,
precondition_failed/1, precondition_failed/2]).
-export([type_class/1, assert_args_equivalence/4, assert_field_equivalence/4]).
-export([table_lookup/2, set_table_value/4, amqp_table/1, to_amqp_table/1]).
-export([r/3, r/2, r_arg/4, rs/1,
queue_resource/2, exchange_resource/2]).
-export([throw_on_error/2, with_exit_handler/2, is_abnormal_exit/1,
filter_exit_map/2]).
-export([ensure_ok/2]).
-export([tcp_name/3, format_inet_error/1]).
-export([upmap/2, map_in_order/2, utf8_safe/1]).
-export([dirty_dump_log/1]).
-export([format/2, format_many/1, format_stderr/2]).
-export([unfold/2, ceil/1, queue_fold/3]).
-export([sort_field_table/1]).
-export([parse_bool/1, parse_int/1]).
-export([pid_to_string/1, string_to_pid/1,
pid_change_node/2, node_to_fake_pid/1]).
-export([hexify/1]).
-export([version_compare/2, version_compare/3]).
-export([strict_version_minor_equivalent/2]).
-export([dict_cons/3, orddict_cons/3, maps_cons/3, gb_trees_cons/3]).
-export([gb_trees_fold/3, gb_trees_foreach/2]).
-export([all_module_attributes/1,
rabbitmq_related_apps/0,
rabbitmq_related_module_attributes/1,
module_attributes_from_apps/2,
build_acyclic_graph/3]).
-export([const/1]).
-export([ntoa/1, ntoab/1]).
-export([is_process_alive/1,
process_info/2]).
-export([pget/2, pget/3, pupdate/3, pget_or_die/2, pmerge/3, pset/3, plmerge/2]).
-export([deep_pget/2, deep_pget/3]).
-export([format_message_queue/2]).
-export([append_rpc_all_nodes/4, append_rpc_all_nodes/5]).
-export([os_cmd/1, pwsh_cmd/1, win32_cmd/2]).
-export([is_os_process_alive/1]).
-export([version/0, otp_release/0, platform_and_version/0, otp_system_version/0,
crypto_lib_version/0, rabbitmq_and_erlang_versions/0, which_applications/0]).
-export([sequence_error/1]).
-export([check_expiry/1]).
-export([base64url/1]).
-export([interval_operation/5]).
-export([ensure_timer/4, stop_timer/2, send_after/3, cancel_timer/1]).
-export([get_parent/0]).
-export([store_proc_name/1, store_proc_name/2, get_proc_name/0]).
-export([moving_average/4]).
-export([b64decode_or_throw/1]).
-export([get_env/3]).
-export([get_channel_operation_timeout/0]).
-export([random/1]).
-export([rpc_call/4, rpc_call/5]).
-export([get_gc_info/1]).
-export([group_proplists_by/2]).
-export([raw_read_file/1]).
-export([strip_bom/1]).
-export([find_child/2]).
-export([shutdown_supervisor/1]).
-export([is_regular_file/1]).
-export([safe_ets_update_counter/3, safe_ets_update_counter/4, safe_ets_update_counter/5,
safe_ets_update_element/3, safe_ets_update_element/4, safe_ets_update_element/5]).
-export([is_even/1, is_odd/1]).
-export([maps_any/2,
maps_put_truthy/3,
maps_put_falsy/3
]).
-export([remote_sup_child/2]).
-export([for_each_while_ok/2, fold_while_ok/3]).
%% Horrible macro to use in guards
-define(IS_BENIGN_EXIT(R),
R =:= noproc; R =:= noconnection; R =:= nodedown; R =:= normal;
R =:= shutdown).
%%----------------------------------------------------------------------------
-export_type([resource_name/0, thunk/1, channel_or_connection_exit/0]).
-type ok_or_error() :: rabbit_types:ok_or_error(any()).
-type thunk(T) :: fun(() -> T).
-type resource_name() :: binary().
-type channel_or_connection_exit()
:: rabbit_types:channel_exit() | rabbit_types:connection_exit().
-type digraph_label() :: term().
-type graph_vertex_fun() ::
fun (({atom(), [term()]}) -> [{digraph:vertex(), digraph_label()}]).
-type graph_edge_fun() ::
fun (({atom(), [term()]}) -> [{digraph:vertex(), digraph:vertex()}]).
-type tref() :: {'erlang', reference()} | {timer, timer:tref()}.
-spec method_record_type(rabbit_framing:amqp_method_record()) ->
rabbit_framing:amqp_method_name().
-spec polite_pause() -> 'done'.
-spec polite_pause(non_neg_integer()) -> 'done'.
-spec die(rabbit_framing:amqp_exception()) -> channel_or_connection_exit().
-spec quit(integer()) -> no_return().
-spec frame_error(rabbit_framing:amqp_method_name(), binary()) ->
rabbit_types:connection_exit().
-spec amqp_error
(rabbit_framing:amqp_exception(), string(), [any()],
rabbit_framing:amqp_method_name()) ->
rabbit_types:amqp_error().
-spec protocol_error(rabbit_framing:amqp_exception(), string(), [any()]) ->
channel_or_connection_exit().
-spec protocol_error
(rabbit_framing:amqp_exception(), string(), [any()],
rabbit_framing:amqp_method_name()) ->
channel_or_connection_exit().
-spec protocol_error(rabbit_types:amqp_error()) ->
channel_or_connection_exit().
-spec type_class(rabbit_framing:amqp_field_type()) -> atom().
-spec assert_args_equivalence
(rabbit_framing:amqp_table(), rabbit_framing:amqp_table(),
rabbit_types:r(any()), [binary()]) ->
'ok' | rabbit_types:connection_exit().
-spec assert_field_equivalence
(any(), any(), rabbit_types:r(any()), atom() | binary()) ->
'ok' | rabbit_types:connection_exit().
-spec equivalence_fail
(any(), any(), rabbit_types:r(any()), atom() | binary()) ->
rabbit_types:connection_exit().
-spec table_lookup(rabbit_framing:amqp_table(), binary()) ->
'undefined' | {rabbit_framing:amqp_field_type(), rabbit_framing:amqp_value()}.
-spec set_table_value
(rabbit_framing:amqp_table(), binary(), rabbit_framing:amqp_field_type(),
rabbit_framing:amqp_value()) ->
rabbit_framing:amqp_table().
-spec r(rabbit_types:vhost(), K) ->
rabbit_types:r3(rabbit_types:vhost(), K, '_')
when is_subtype(K, atom()).
-spec r(rabbit_types:vhost() | rabbit_types:r(atom()), K, resource_name()) ->
rabbit_types:r3(rabbit_types:vhost(), K, resource_name())
when is_subtype(K, atom()).
-spec r_arg
(rabbit_types:vhost() | rabbit_types:r(atom()), K,
rabbit_framing:amqp_table(), binary()) ->
undefined |
rabbit_types:error(
{invalid_type, rabbit_framing:amqp_field_type()}) |
rabbit_types:r(K) when is_subtype(K, atom()).
-spec rs(rabbit_types:r(atom())) -> string().
-spec throw_on_error
(atom(), thunk(rabbit_types:error(any()) | {ok, A} | A)) -> A.
-spec with_exit_handler(thunk(A), thunk(A)) -> A.
-spec is_abnormal_exit(any()) -> boolean().
-spec filter_exit_map(fun ((A) -> B), [A]) -> [B].
-spec ensure_ok(ok_or_error(), atom()) -> 'ok'.
-spec tcp_name(atom(), inet:ip_address(), rabbit_net:ip_port()) ->
atom().
-spec format_inet_error(atom()) -> string().
-spec upmap(fun ((A) -> B), [A]) -> [B].
-spec map_in_order(fun ((A) -> B), [A]) -> [B].
-spec dirty_dump_log(file:filename()) -> ok_or_error().
-spec format(string(), [any()]) -> string().
-spec format_many([{string(), [any()]}]) -> string().
-spec format_stderr(string(), [any()]) -> 'ok'.
-spec unfold (fun ((A) -> ({'true', B, A} | 'false')), A) -> {[B], A}.
-spec ceil(number()) -> integer().
-spec queue_fold(fun ((any(), B) -> B), B, queue:queue()) -> B.
-spec sort_field_table(rabbit_framing:amqp_table()) ->
rabbit_framing:amqp_table().
-spec pid_to_string(pid()) -> string().
-spec string_to_pid(string()) -> pid().
-spec pid_change_node(pid(), node()) -> pid().
-spec node_to_fake_pid(atom()) -> pid().
-spec version_compare(string(), string()) -> 'lt' | 'eq' | 'gt'.
-spec version_compare
(rabbit_semver:version_string(), rabbit_semver:version_string(),
('lt' | 'lte' | 'eq' | 'gte' | 'gt')) -> boolean().
-spec dict_cons(any(), any(), dict:dict()) -> dict:dict().
-spec orddict_cons(any(), any(), orddict:orddict()) -> orddict:orddict().
-spec gb_trees_cons(any(), any(), gb_trees:tree()) -> gb_trees:tree().
-spec gb_trees_fold(fun ((any(), any(), A) -> A), A, gb_trees:tree()) -> A.
-spec gb_trees_foreach(fun ((any(), any()) -> any()), gb_trees:tree()) ->
'ok'.
-spec all_module_attributes(atom()) -> [{atom(), atom(), [term()]}].
-spec build_acyclic_graph
(graph_vertex_fun(), graph_edge_fun(), [{atom(), [term()]}]) ->
rabbit_types:ok_or_error2(
digraph:graph(),
{'vertex', 'duplicate', digraph:vertex()} |
{'edge',
({bad_vertex, digraph:vertex()} |
{bad_edge, [digraph:vertex()]}),
digraph:vertex(), digraph:vertex()}).
-spec const(A) -> thunk(A).
-spec ntoa(inet:ip_address()) -> string().
-spec ntoab(inet:ip_address()) -> string().
-spec is_process_alive(pid()) -> boolean().
-spec pmerge(term(), term(), [term()]) -> [term()].
-spec plmerge([term()], [term()]) -> [term()].
-spec pset(term(), term(), [term()]) -> [term()].
-spec format_message_queue(any(), priority_queue:q()) -> term().
-spec os_cmd(string()) -> string().
-spec is_os_process_alive(non_neg_integer() | string()) -> boolean().
-spec version() -> string().
-spec otp_release() -> string().
-spec otp_system_version() -> string().
-spec crypto_lib_version() -> binary().
-spec platform_and_version() -> string().
-spec rabbitmq_and_erlang_versions() -> {string(), string()}.
-spec which_applications() -> [{atom(), string(), string()}].
-spec sequence_error([({'error', any()} | any())]) ->
{'error', any()} | any().
-spec check_expiry(integer()) -> rabbit_types:ok_or_error(any()).
-spec base64url(binary()) -> string().
-spec interval_operation
({atom(), atom(), any()}, float(), non_neg_integer(), non_neg_integer(),
non_neg_integer()) ->
{any(), non_neg_integer()}.
-spec ensure_timer(A, non_neg_integer(), non_neg_integer(), any()) -> A.
-spec stop_timer(A, non_neg_integer()) -> A.
-spec send_after(non_neg_integer(), pid(), any()) -> tref().
-spec cancel_timer(tref()) -> 'ok'.
-spec get_parent() -> pid().
-spec store_proc_name(atom(), rabbit_types:proc_name()) -> ok.
-spec store_proc_name(rabbit_types:proc_type_and_name()) -> ok.
-spec get_proc_name() -> rabbit_types:proc_name().
-spec moving_average(float(), float(), float(), float() | 'undefined') ->
float().
-spec get_env(atom(), atom(), term()) -> term().
-spec get_channel_operation_timeout() -> non_neg_integer().
-spec random(non_neg_integer()) -> non_neg_integer().
-spec get_gc_info(pid()) -> [any()].
-spec group_proplists_by(fun((proplists:proplist()) -> any()),
list(proplists:proplist())) -> list(list(proplists:proplist())).
-spec precondition_failed(string()) -> no_return().
-spec precondition_failed(string(), [any()]) -> no_return().
%%----------------------------------------------------------------------------
method_record_type(Record) ->
element(1, Record).
polite_pause() ->
polite_pause(3000).
polite_pause(N) ->
receive
after N -> done
end.
die(Error) ->
protocol_error(Error, "~w", [Error]).
frame_error(MethodName, BinaryFields) ->
protocol_error(frame_error, "cannot decode ~w", [BinaryFields], MethodName).
amqp_error(Name, ExplanationFormat, Params, Method) ->
Explanation = format(ExplanationFormat, Params),
#amqp_error{name = Name, explanation = Explanation, method = Method}.
protocol_error(Name, ExplanationFormat, Params) ->
protocol_error(Name, ExplanationFormat, Params, none).
protocol_error(Name, ExplanationFormat, Params, Method) ->
protocol_error(amqp_error(Name, ExplanationFormat, Params, Method)).
protocol_error(#amqp_error{} = Error) ->
exit(Error).
precondition_failed(Format) -> precondition_failed(Format, []).
precondition_failed(Format, Params) ->
protocol_error(precondition_failed, Format, Params).
type_class(byte) -> int;
type_class(short) -> int;
type_class(signedint) -> int;
type_class(long) -> int;
type_class(decimal) -> int;
type_class(unsignedbyte) -> int;
type_class(unsignedshort) -> int;
type_class(unsignedint) -> int;
type_class(float) -> float;
type_class(double) -> float;
type_class(Other) -> Other.
assert_args_equivalence(Orig, New, Name, Keys) ->
[assert_args_equivalence1(Orig, New, Name, Key) || Key <- Keys],
ok.
assert_args_equivalence1(Orig, New, Name, Key) ->
{Orig1, New1} = {table_lookup(Orig, Key), table_lookup(New, Key)},
case {Orig1, New1} of
{Same, Same} ->
ok;
{{OrigType, OrigVal}, {NewType, NewVal}} ->
case type_class(OrigType) == type_class(NewType) andalso
OrigVal == NewVal of
true -> ok;
false -> assert_field_equivalence(OrigVal, NewVal, Name, Key)
end;
{OrigTypeVal, NewTypeVal} ->
assert_field_equivalence(OrigTypeVal, NewTypeVal, Name, Key)
end.
%% Classic queues do not necessarily have an x-queue-type field associated with them
%% so we special-case that scenario here
%%
%% Fixes rabbitmq/rabbitmq-common#341
%%
assert_field_equivalence(Current, Current, _Name, _Key) ->
ok;
assert_field_equivalence(undefined, {longstr, <<"classic">>}, _Name, <<"x-queue-type">>) ->
ok;
assert_field_equivalence({longstr, <<"classic">>}, undefined, _Name, <<"x-queue-type">>) ->
ok;
assert_field_equivalence(Orig, New, Name, Key) ->
equivalence_fail(Orig, New, Name, Key).
equivalence_fail(Orig, New, Name, Key) ->
protocol_error(precondition_failed, "inequivalent arg '~ts' "
"for ~ts: received ~ts but current is ~ts",
[Key, rs(Name), val(New), val(Orig)]).
val(undefined) ->
"none";
val({Type, Value}) ->
ValFmt = case is_binary(Value) of
true -> "~ts";
false -> "~tp"
end,
format("the value '" ++ ValFmt ++ "' of type '~ts'", [Value, Type]);
val(Value) ->
format(case is_binary(Value) of
true -> "'~ts'";
false -> "'~tp'"
end, [Value]).
%%
%% Attribute Tables
%%
table_lookup(Table, Key) ->
case lists:keysearch(Key, 1, Table) of
{value, {_, Type, Value}} -> {Type, Value};
false -> undefined
end.
set_table_value(Table, Key, Type, Value) ->
sort_field_table(
lists:keystore(Key, 1, Table, {Key, Type, Value})).
to_amqp_table(M) when is_map(M) ->
lists:reverse(maps:fold(fun(K, V, Acc) -> [to_amqp_table_row(K, V)|Acc] end,
[], M));
to_amqp_table(L) when is_list(L) ->
L.
to_amqp_table_row(K, V) ->
{T, V2} = type_val(V),
{K, T, V2}.
to_amqp_array(L) ->
[type_val(I) || I <- L].
type_val(M) when is_map(M) -> {table, to_amqp_table(M)};
type_val(L) when is_list(L) -> {array, to_amqp_array(L)};
type_val(X) when is_binary(X) -> {longstr, X};
type_val(X) when is_integer(X) -> {long, X};
type_val(X) when is_number(X) -> {double, X};
type_val(true) -> {bool, true};
type_val(false) -> {bool, false};
type_val(null) -> throw({error, null_not_allowed});
type_val(X) -> throw({error, {unhandled_type, X}}).
amqp_table(unknown) -> unknown;
amqp_table(undefined) -> amqp_table([]);
amqp_table([]) -> #{};
amqp_table(#{}) -> #{};
amqp_table(Table) -> maps:from_list([{Name, amqp_value(Type, Value)} ||
{Name, Type, Value} <- Table]).
amqp_value(array, Vs) -> [amqp_value(T, V) || {T, V} <- Vs];
amqp_value(table, V) -> amqp_table(V);
amqp_value(decimal, {Before, After}) ->
erlang:list_to_float(
lists:flatten(io_lib:format("~tp.~tp", [Before, After])));
amqp_value(_Type, V) when is_binary(V) -> utf8_safe(V);
amqp_value(_Type, V) -> V.
%%
%% Resources
%%
r(#resource{virtual_host = VHostPath}, Kind, Name) ->
#resource{virtual_host = VHostPath, kind = Kind, name = Name};
r(VHostPath, Kind, Name) ->
#resource{virtual_host = VHostPath, kind = Kind, name = Name}.
r(VHostPath, Kind) ->
#resource{virtual_host = VHostPath, kind = Kind, name = '_'}.
r_arg(#resource{virtual_host = VHostPath}, Kind, Table, Key) ->
r_arg(VHostPath, Kind, Table, Key);
r_arg(VHostPath, Kind, Table, Key) ->
case table_lookup(Table, Key) of
{longstr, NameBin} -> r(VHostPath, Kind, NameBin);
undefined -> undefined;
{Type, _} -> {error, {invalid_type, Type}}
end.
rs(#resource{virtual_host = VHostPath, kind = topic, name = Name}) ->
format("'~ts' in vhost '~ts'", [Name, VHostPath]);
rs(#resource{virtual_host = VHostPath, kind = Kind, name = Name}) ->
format("~ts '~ts' in vhost '~ts'", [Kind, Name, VHostPath]).
-spec queue_resource(rabbit_types:vhost(), resource_name()) ->
rabbit_types:r(queue).
queue_resource(VHostPath, Name) ->
r(VHostPath, queue, Name).
-spec exchange_resource(rabbit_types:vhost(), resource_name()) ->
rabbit_types:r(exchange).
exchange_resource(VHostPath, Name) ->
r(VHostPath, exchange, Name).
%% @doc Halts the emulator returning the given status code to the os.
%% On Windows this function will block indefinitely so as to give the io
%% subsystem time to flush stdout completely.
quit(Status) ->
case os:type() of
{unix, _} -> halt(Status);
{win32, _} -> init:stop(Status),
receive
after infinity -> ok
end
end.
throw_on_error(E, Thunk) ->
case Thunk() of
{error, Reason} -> throw({E, Reason});
{ok, Res} -> Res;
Res -> Res
end.
with_exit_handler(Handler, Thunk) ->
try
Thunk()
catch
exit:{R, _} when ?IS_BENIGN_EXIT(R) -> Handler();
exit:{{R, _}, _} when ?IS_BENIGN_EXIT(R) -> Handler()
end.
is_abnormal_exit(R) when ?IS_BENIGN_EXIT(R) -> false;
is_abnormal_exit({R, _}) when ?IS_BENIGN_EXIT(R) -> false;
is_abnormal_exit(_) -> true.
filter_exit_map(F, L) ->
Ref = make_ref(),
lists:filter(fun (R) -> R =/= Ref end,
[with_exit_handler(
fun () -> Ref end,
fun () -> F(I) end) || I <- L]).
ensure_ok(ok, _) -> ok;
ensure_ok({error, Reason}, ErrorTag) -> throw({error, {ErrorTag, Reason}}).
tcp_name(Prefix, IPAddress, Port)
when is_atom(Prefix) andalso is_number(Port) ->
list_to_atom(
format("~w_~ts:~w", [Prefix, inet_parse:ntoa(IPAddress), Port])).
format_inet_error(E) -> format("~w (~ts)", [E, format_inet_error0(E)]).
format_inet_error0(address) -> "cannot connect to host/port";
format_inet_error0(timeout) -> "timed out";
format_inet_error0(Error) -> inet:format_error(Error).
%% base64:decode throws lots of weird errors. Catch and convert to one
%% that will cause a bad_request.
b64decode_or_throw(B64) ->
try
base64:decode(B64)
catch error:_ ->
throw({error, {not_base64, B64}})
end.
utf8_safe(V) ->
case unicode:characters_to_binary(V, unicode, unicode) of
B when is_binary(B) ->
B;
{error, _, _} ->
Enc = split_lines(base64:encode(V)),
<<"Not UTF-8, base64 is: ", Enc/binary>>;
{incomplete, _, _} ->
Enc = split_lines(base64:encode(V)),
<<"Not UTF-8, base64 is: ", Enc/binary>>
end.
%% MIME enforces a limit on line length of base 64-encoded data to 76 characters.
split_lines(<<Text:76/binary, Rest/binary>>) ->
<<Text/binary, $\n, (split_lines(Rest))/binary>>;
split_lines(Text) ->
Text.
%% This is a modified version of Luke Gorrie's pmap -
%% https://lukego.livejournal.com/6753.html - that doesn't care about
%% the order in which results are received.
%%
%% WARNING: This is is deliberately lightweight rather than robust -- if F
%% throws, upmap will hang forever, so make sure F doesn't throw!
upmap(F, L) ->
Parent = self(),
Ref = make_ref(),
[receive {Ref, Result} -> Result end
|| _ <- [spawn(fun () -> Parent ! {Ref, F(X)} end) || X <- L]].
map_in_order(F, L) ->
lists:reverse(
lists:foldl(fun (E, Acc) -> [F(E) | Acc] end, [], L)).
dirty_dump_log(FileName) ->
{ok, LH} = disk_log:open([{name, dirty_dump_log},
{mode, read_only},
{file, FileName}]),
dirty_dump_log1(LH, disk_log:chunk(LH, start)),
disk_log:close(LH).
dirty_dump_log1(_LH, eof) ->
io:format("Done.~n");
dirty_dump_log1(LH, {K, Terms}) ->
io:format("Chunk: ~tp~n", [Terms]),
dirty_dump_log1(LH, disk_log:chunk(LH, K));
dirty_dump_log1(LH, {K, Terms, BadBytes}) ->
io:format("Bad Chunk, ~tp: ~tp~n", [BadBytes, Terms]),
dirty_dump_log1(LH, disk_log:chunk(LH, K)).
format(Fmt, Args) -> lists:flatten(io_lib:format(Fmt, Args)).
format_many(List) ->
lists:flatten([io_lib:format(F ++ "~n", A) || {F, A} <- List]).
format_stderr(Fmt, Args) ->
io:format(standard_error, Fmt, Args),
ok.
unfold(Fun, Init) ->
unfold(Fun, [], Init).
unfold(Fun, Acc, Init) ->
case Fun(Init) of
{true, E, I} -> unfold(Fun, [E|Acc], I);
false -> {Acc, Init}
end.
ceil(N) ->
T = trunc(N),
case N == T of
true -> T;
false -> 1 + T
end.
parse_bool(<<"true">>) -> true;
parse_bool(<<"false">>) -> false;
parse_bool(true) -> true;
parse_bool(false) -> false;
parse_bool(undefined) -> undefined;
parse_bool(V) -> throw({error, {not_boolean, V}}).
parse_int(I) when is_integer(I) -> I;
parse_int(F) when is_number(F) -> trunc(F);
parse_int(S) -> try
list_to_integer(binary_to_list(S))
catch error:badarg ->
throw({error, {not_integer, S}})
end.
queue_fold(Fun, Init, Q) ->
case queue:out(Q) of
{empty, _Q} -> Init;
{{value, V}, Q1} -> queue_fold(Fun, Fun(V, Init), Q1)
end.
%% Sorts a list of AMQP 0-9-1 table fields as per the AMQP 0-9-1 spec
sort_field_table([]) ->
[];
sort_field_table(M) when is_map(M) andalso map_size(M) =:= 0 ->
[];
sort_field_table(Arguments) when is_map(Arguments) ->
sort_field_table(maps:to_list(Arguments));
sort_field_table(Arguments) ->
lists:keysort(1, Arguments).
%% This provides a string representation of a pid that is the same
%% regardless of what node we are running on. The representation also
%% permits easy identification of the pid's node.
pid_to_string(Pid) when is_pid(Pid) ->
{Node, Cre, Id, Ser} = decompose_pid(Pid),
format("<~ts.~B.~B.~B>", [Node, Cre, Id, Ser]).
-spec hexify(binary() | atom() | list()) -> binary().
hexify(Bin) when is_binary(Bin) ->
iolist_to_binary([io_lib:format("~2.16.0B", [V]) || <<V:8>> <= Bin]);
hexify(Bin) when is_list(Bin) ->
hexify(erlang:list_to_binary(Bin));
hexify(Bin) when is_atom(Bin) ->
hexify(erlang:atom_to_binary(Bin)).
%% inverse of above
string_to_pid(Str) ->
Err = {error, {invalid_pid_syntax, Str}},
%% The \ before the trailing $ is only there to keep emacs
%% font-lock from getting confused.
case re:run(Str, "^<(.*)\\.(\\d+)\\.(\\d+)\\.(\\d+)>\$",
[{capture,all_but_first,list}]) of
{match, [NodeStr, CreStr, IdStr, SerStr]} ->
[Cre, Id, Ser] = lists:map(fun list_to_integer/1,
[CreStr, IdStr, SerStr]),
compose_pid(list_to_atom(NodeStr), Cre, Id, Ser);
nomatch ->
throw(Err)
end.
pid_change_node(Pid, NewNode) ->
{_OldNode, Cre, Id, Ser} = decompose_pid(Pid),
compose_pid(NewNode, Cre, Id, Ser).
%% node(node_to_fake_pid(Node)) =:= Node.
node_to_fake_pid(Node) ->
compose_pid(Node, 0, 0, 0).
decompose_pid(Pid) when is_pid(Pid) ->
%% see http://erlang.org/doc/apps/erts/erl_ext_dist.html (8.10 and
%% 8.7)
Node = node(Pid),
BinPid0 = term_to_binary(Pid),
case BinPid0 of
%% NEW_PID_EXT
<<131, 88, BinPid/bits>> ->
NodeByteSize = byte_size(BinPid0) - 14,
<<_NodePrefix:NodeByteSize/binary, Id:32, Ser:32, Cre:32>> = BinPid,
{Node, Cre, Id, Ser};
%% PID_EXT
<<131, 103, BinPid/bits>> ->
NodeByteSize = byte_size(BinPid0) - 11,
<<_NodePrefix:NodeByteSize/binary, Id:32, Ser:32, Cre:8>> = BinPid,
{Node, Cre, Id, Ser}
end.
compose_pid(Node, Cre, Id, Ser) ->
<<131,NodeEnc/binary>> = term_to_binary(Node),
binary_to_term(<<131,88,NodeEnc/binary,Id:32,Ser:32,Cre:32>>).
version_compare(A, B, eq) -> rabbit_semver:eql(A, B);
version_compare(A, B, lt) -> rabbit_semver:lt(A, B);
version_compare(A, B, lte) -> rabbit_semver:lte(A, B);
version_compare(A, B, gt) -> rabbit_semver:gt(A, B);
version_compare(A, B, gte) -> rabbit_semver:gte(A, B).
version_compare(A, B) ->
case version_compare(A, B, lt) of
true -> lt;
false -> case version_compare(A, B, gt) of
true -> gt;
false -> eq
end
end.
%% The function below considers that e.g. 3.7.x and 3.8.x are incompatible (as
%% if there were no feature flags). This is useful to check plugin
%% compatibility (`broker_versions_requirement` field in plugins).
strict_version_minor_equivalent(A, B) ->
{{MajA, MinA, _PatchA, _}, _} = rabbit_semver:normalize(rabbit_semver:parse(A)),
{{MajB, MinB, _PatchB, _}, _} = rabbit_semver:normalize(rabbit_semver:parse(B)),
MajA =:= MajB andalso MinA =:= MinB.
dict_cons(Key, Value, Dict) ->
dict:update(Key, fun (List) -> [Value | List] end, [Value], Dict).
orddict_cons(Key, Value, Dict) ->
orddict:update(Key, fun (List) -> [Value | List] end, [Value], Dict).
maps_cons(Key, Value, Map) ->
maps:update_with(Key, fun (List) -> [Value | List] end, [Value], Map).
gb_trees_cons(Key, Value, Tree) ->
case gb_trees:lookup(Key, Tree) of
{value, Values} -> gb_trees:update(Key, [Value | Values], Tree);
none -> gb_trees:insert(Key, [Value], Tree)
end.
gb_trees_fold(Fun, Acc, Tree) when is_function(Fun, 3) ->
gb_trees_fold1(Fun, Acc, gb_trees:next(gb_trees:iterator(Tree))).
gb_trees_fold1(_Fun, Acc, none) ->
Acc;
gb_trees_fold1(Fun, Acc, {Key, Val, It}) ->
gb_trees_fold1(Fun, Fun(Key, Val, Acc), gb_trees:next(It)).
gb_trees_foreach(Fun, Tree) ->
gb_trees_fold(fun (Key, Val, Acc) -> Fun(Key, Val), Acc end, ok, Tree).
module_attributes(Module) ->
try
Module:module_info(attributes)
catch
_:undef ->
io:format("WARNING: module ~tp not found, so not scanned for boot steps.~n",
[Module]),
[]
end.
all_module_attributes(Name) ->
Apps = [App || {App, _, _} <- application:loaded_applications()],
module_attributes_from_apps(Name, Apps).
rabbitmq_related_module_attributes(Name) ->
Apps = rabbitmq_related_apps(),
module_attributes_from_apps(Name, Apps).
rabbitmq_related_apps() ->
[App
|| {App, _, _} <- application:loaded_applications(),
%% Only select RabbitMQ-related applications.
App =:= rabbit_common orelse
App =:= rabbitmq_prelaunch orelse
App =:= rabbit orelse
lists:member(
rabbit,
element(2, application:get_key(App, applications)))].
module_attributes_from_apps(Name, Apps) ->
Targets =
lists:usort(
lists:append(
[[{App, Module} || Module <- Modules] ||
App <- Apps,
{ok, Modules} <- [application:get_key(App, modules)]])),
Unloaded = [M || {_, M} <- Targets, not erlang:module_loaded(M)],
_ = case Unloaded of
[] -> ok;
_ -> code:ensure_modules_loaded(Unloaded)
end,
lists:foldl(
fun ({App, Module}, Acc) ->
case lists:append([Atts || {N, Atts} <- module_attributes(Module),
N =:= Name]) of
[] -> Acc;
Atts -> [{App, Module, Atts} | Acc]
end
end, [], Targets).
build_acyclic_graph(VertexFun, EdgeFun, Graph) ->
G = digraph:new([acyclic]),
try
_ = [case digraph:vertex(G, Vertex) of
false -> digraph:add_vertex(G, Vertex, Label);
_ -> ok = throw({graph_error, {vertex, duplicate, Vertex}})
end || GraphElem <- Graph,
{Vertex, Label} <- VertexFun(GraphElem)],
[case digraph:add_edge(G, From, To) of
{error, E} -> throw({graph_error, {edge, E, From, To}});
_ -> ok
end || GraphElem <- Graph,
{From, To} <- EdgeFun(GraphElem)],
{ok, G}
catch {graph_error, Reason} ->
true = digraph:delete(G),
{error, Reason}
end.
const(X) -> fun () -> X end.
%% Format IPv4-mapped IPv6 addresses as IPv4, since they're what we see
%% when IPv6 is enabled but not used (i.e. 99% of the time).
ntoa({0,0,0,0,0,16#ffff,AB,CD}) ->
inet_parse:ntoa({AB bsr 8, AB rem 256, CD bsr 8, CD rem 256});
ntoa(IP) ->
inet_parse:ntoa(IP).
ntoab(IP) ->
Str = ntoa(IP),
case string:str(Str, ":") of
0 -> Str;
_ -> "[" ++ Str ++ "]"
end.
%% We try to avoid reconnecting to down nodes here; this is used in a
%% loop in rabbit_amqqueue:on_node_down/1 and any delays we incur
%% would be bad news.
%%
%% See also rabbit_process:is_process_alive/1 which also requires the
%% process be in the same running cluster as us (i.e. not partitioned
%% or some random node).
is_process_alive(Pid) when node(Pid) =:= node() ->
erlang:is_process_alive(Pid);
is_process_alive(Pid) ->
Node = node(Pid),
lists:member(Node, [node() | nodes(connected)]) andalso
rpc:call(Node, erlang, is_process_alive, [Pid]) =:= true.
%% Get process info of a prossibly remote process.
%% We try to avoid reconnecting to down nodes.
-spec process_info(pid(), ItemSpec) -> Result| undefined | {badrpc, term()}
when
ItemSpec :: atom() | list() | tuple(),
Result :: {atom() | tuple(), term()} | [{atom() | tuple(), term()}].
process_info(Pid, Items) when node(Pid) =:= node() ->
erlang:process_info(Pid, Items);
process_info(Pid, Items) ->
Node = node(Pid),
case lists:member(Node, [node() | nodes(connected)]) of
true ->
rpc:call(Node, erlang, process_info, [Pid, Items]);
_ ->
{badrpc, nodedown}
end.
-spec pget(term(), list() | map()) -> term().
pget(K, M) when is_map(M) ->
maps:get(K, M, undefined);
pget(K, P) ->
case lists:keyfind(K, 1, P) of
{K, V} ->
V;
_ ->
undefined
end.
-spec pget(term(), list() | map(), term()) -> term().
pget(K, M, D) when is_map(M) ->
maps:get(K, M, D);
pget(K, P, D) ->
case lists:keyfind(K, 1, P) of
{K, V} ->
V;
_ ->
D
end.
-spec pget_or_die(term(), list() | map()) -> term() | no_return().
pget_or_die(K, M) when is_map(M) ->
case maps:find(K, M) of
error -> exit({error, key_missing, K});
{ok, V} -> V
end;
pget_or_die(K, P) ->
case proplists:get_value(K, P) of
undefined -> exit({error, key_missing, K});
V -> V
end.
pupdate(K, UpdateFun, P) ->
case lists:keyfind(K, 1, P) of
{K, V} ->
pset(K, UpdateFun(V), P);
_ ->
undefined
end.
%% pget nested values
-spec deep_pget(list(), list() | map()) -> term().
deep_pget(K, P) ->
deep_pget(K, P, undefined).
-spec deep_pget(list(), list() | map(), term()) -> term().
deep_pget([], P, _) ->
P;
deep_pget([K|Ks], P, D) ->
case rabbit_misc:pget(K, P, D) of
D -> D;
Pn -> deep_pget(Ks, Pn, D)
end.
%% property merge
pmerge(Key, Val, List) ->
case proplists:is_defined(Key, List) of
true -> List;
_ -> [{Key, Val} | List]
end.
%% proplists merge
plmerge(P1, P2) ->
%% Value from P2 supersedes value from P1
lists:sort(maps:to_list(maps:merge(maps:from_list(P1),
maps:from_list(P2)))).
%% groups a list of proplists by a key function
group_proplists_by(KeyFun, ListOfPropLists) ->
Res = lists:foldl(fun(P, Agg) ->
Key = KeyFun(P),
Val = case maps:find(Key, Agg) of
{ok, O} -> [P|O];
error -> [P]
end,
maps:put(Key, Val, Agg)
end, #{}, ListOfPropLists),
[ X || {_, X} <- maps:to_list(Res)].
pset(Key, Value, List) -> [{Key, Value} | proplists:delete(Key, List)].
format_message_queue(_Opt, MQ) ->
Len = priority_queue:len(MQ),
{Len,
case Len > 100 of
false -> priority_queue:to_list(MQ);
true -> {summary,
maps:to_list(
lists:foldl(
fun ({P, V}, Counts) ->
maps:update_with(
{P, format_message_queue_entry(V)},
fun(Old) -> Old + 1 end, 1, Counts)
end, maps:new(), priority_queue:to_list(MQ)))}
end}.
format_message_queue_entry(V) when is_atom(V) ->
V;
format_message_queue_entry(V) when is_tuple(V) ->
list_to_tuple([format_message_queue_entry(E) || E <- tuple_to_list(V)]);
format_message_queue_entry(_V) ->
'_'.
%% Same as rpc:multicall/4 but concatenates all results.
%% M, F, A is expected to return a list. If it does not,
%% its return value will be wrapped in a list.
-spec append_rpc_all_nodes([node()], atom(), atom(), [any()]) -> [any()].
append_rpc_all_nodes(Nodes, M, F, A) ->
do_append_rpc_all_nodes(Nodes, M, F, A, ?RPC_INFINITE_TIMEOUT).
-spec append_rpc_all_nodes([node()], atom(), atom(), [any()], timeout()) -> [any()].
append_rpc_all_nodes(Nodes, M, F, A, Timeout) ->
do_append_rpc_all_nodes(Nodes, M, F, A, Timeout).
do_append_rpc_all_nodes(Nodes, M, F, A, ?RPC_INFINITE_TIMEOUT) ->
{ResL, _} = rpc:multicall(Nodes, M, F, A, ?RPC_INFINITE_TIMEOUT),
process_rpc_multicall_result(ResL);
do_append_rpc_all_nodes(Nodes, M, F, A, Timeout) ->
{ResL, _} = try
rpc:multicall(Nodes, M, F, A, Timeout)
catch
error:internal_error -> {[], Nodes}
end,
process_rpc_multicall_result(ResL).
process_rpc_multicall_result(ResL) ->
lists:append([case Res of
{badrpc, _} -> [];
Xs when is_list(Xs) -> Xs;
%% wrap it in a list
Other -> [Other]
end || Res <- ResL]).
os_cmd(Command) ->
case os:type() of
{win32, _} ->
%% Clink workaround; see
%% https://code.google.com/p/clink/issues/detail?id=141
os:cmd(" " ++ Command);
_ ->
%% Don't just return "/bin/sh: <cmd>: not found" if not found
Exec = hd(string:tokens(Command, " ")),
case os:find_executable(Exec) of
false -> throw({command_not_found, Exec});
_ -> os:cmd(Command)
end
end.
pwsh_cmd(Command) ->
case os:type() of