0

次のようにするにはどうすればよいでしょうか。

system.c

#include<stdio.h>

int main()

{
        system("/home/noob/send.erl");

        return(0);
}

erlang クライアントを使用した RabbitMQ チュートリアルからrabbitmq-tutorials/erlang/

send.erl

#!/usr/bin/env escript
%%! -pz ./deps/amqp_client ./deps/rabbit_common ./deps/amqp_client/ebin ./deps/rabbit_common/ebin

-include_lib("deps/amqp_client/include/amqp_client.hrl").

main(_) ->
    {ok, Connection} = 
    amqp_connection:start(#amqp_params_network{host = "localhost"}),
    {ok, Channel} = amqp_connection:open_channel(Connection),

    amqp_channel:call(Channel, #'queue.declare'{queue = <<"hello">>}),
    amqp_channel:cast(Channel, 
             #'basic.publish'{
               exchange = <<"">>,
               routing_key = <<"hello">>}, 
              #amqp_msg{payload = <<"Hello World!">>}),
    io:format("[x] Sent 'Hello World!'~n"),
    ok = amqp_channel:close(Channel),
    ok = amqp_connection:close(Connection),
    ok.

次に実行します。

gcc system.c -o system

noob$./system

出力:

send.erl:20: can't find include lib "rabbit_common/include/rabbit.hrl"
send.erl:21: can't find include lib "rabbit_common/include/rabbit_framing.hrl"
escript: There were compilation errors.

だから私はこれをしますamqp_client.hrl

-include_lib("../../rabbit_common/include/rabbit.hrl").
-include_lib("../../rabbit_common/include/rabbit_framing.hrl").

そして、実行しますnoob$./system

そしてブーム:

escript: exception error: undefined function amqp_connection:start/1
  in function  erl_eval:do_apply/6 (erl_eval.erl, line 572)
  in call from erl_eval:expr/5 (erl_eval.erl, line 367)
  in call from escript:eval_exprs/5 (escript.erl, line 836)
  in call from erl_eval:local_func/5 (erl_eval.erl, line 470)
  in call from escript:interpret/4 (escript.erl, line 754)
  in call from escript:start/1 (escript.erl, line 277)
  in call from init:start_it/1

そのため、コンパイル時に escript に PATHS に関する問題があり、C の system() 呼び出し内で呼び出されたようです。

どうすればこれを達成できるでしょうか?

ティア

4

1 に答える 1

0

この質問のおかげで

スクリプトを実行するために必要な erlang クライアント コードを escript が見つけられるように、追加の PATH ディレクトリを動的に追加することができました。

true = code:add_pathz(filename:dirname(escript:script_name()) ++ "/deps/amqp_client/ebin"),
true = code:add_pathz(filename:dirname(escript:script_name()) ++ "/deps/rabbit_common/ebin"),

シェル内から -pz 相対パス オプションを指定して escript を呼び出すことが機能し、C の system() 内からは機能しない理由はまだよくわかりません。

于 2012-12-11T19:25:08.253 に答える