是否有允许OTP进程找到其主管的pid的功能?
答案 0 :(得分:12)
数据隐藏在条目proc_lib
下的流程词典中(使用'$ancestors'
生成的任何流程):
1> proc_lib:spawn(fun() -> timer:sleep(infinity) end).
<0.33.0>
2> i(0,33,0).
[{current_function,{timer,sleep,1}},
{initial_call,{proc_lib,init_p,3}},
{status,waiting},
{message_queue_len,0},
{messages,[]},
{links,[]},
{dictionary,[{'$ancestors',[<0.31.0>]},
{'$initial_call',{erl_eval,'-expr/5-fun-1-',0}}]},
{trap_exit,false},
{error_handler,error_handler},
{priority,normal},
{group_leader,<0.24.0>},
{total_heap_size,233},
{heap_size,233},
{stack_size,6},
{reductions,62},
{garbage_collection,[{min_bin_vheap_size,46368},
{min_heap_size,233},
{fullsweep_after,65535},
{minor_gcs,0}]},
{suspending,[]}]
我们感兴趣的一行是{dictionary,[{'$ancestors',[<0.31.0>]},
。
请注意,这是你应该很少有任何理由自己使用的东西。据我所知,它主要用于处理监督树中的干净终止,而不是对你拥有的任何代码进行内省。小心处理。
在不弄乱OTP明智的内脏的情况下做一些更干净的方法就是让让主管在启动时通过自己的pid作为进程的参数。对于那些阅读代码的人来说,这应该不那么容易混淆。
答案 1 :(得分:1)
如果你想做错了,这是我们的解决方案:
%% @spec get_ancestors(proc()) -> [proc()]
%% @doc Find the supervisor for a process by introspection of proc_lib
%% $ancestors (WARNING: relies on an implementation detail of OTP).
get_ancestors(Pid) when is_pid(Pid) ->
case erlang:process_info(Pid, dictionary) of
{dictionary, D} ->
ancestors_from_dict(D);
_ ->
[]
end;
get_ancestors(undefined) ->
[];
get_ancestors(Name) when is_atom(Name) ->
get_ancestors(whereis(Name)).
ancestors_from_dict([]) ->
[];
ancestors_from_dict([{'$ancestors', Ancestors} | _Rest]) ->
Ancestors;
ancestors_from_dict([_Head | Rest]) ->
ancestors_from_dict(Rest).