2012-04-11 76 views
1

有人可以幫助我使用這個簡單的分佈式erlang示例。我如何運行這個erlang程序來查看它是如何工作的? 我已經看到erl -sname pc1,erl -sname pc2和erl -sname服務器 以及我從pc1和pc2服務器ping它們之間的連接3殼。 現在我還需要做什麼,我可以測試這個程序?如何運行這個erlang示例

-module(pubsub2). 
-export([startDispatcher/0, startClient/0, 
    subscribe/2, publish/3]). 

startClient() -> 
    Pid = spawn(fun clientLoop/0), 
    register(client, Pid). 

clientLoop() -> 
    receive {Topic, Message} -> 
     io:fwrite("Received message ~w for topic ~w~n", 
       [Message, Topic]), 
     clientLoop() 
    end. 

subscribe(Host, Topic) -> 
    {dispatcher, Host} ! {subscribe, node(), Topic}. 

publish(Host, Topic, Message) -> 
    {dispatcher, Host} ! {publish, Topic, Message}. 

startDispatcher() -> 
    Pid = spawn(fun dispatcherLoop/0), 
    register(dispatcher, Pid). 

dispatcherLoop() -> 
    io:fwrite("Dispatcher started\n"), 
    dispatcherLoop([]). 
dispatcherLoop(Interests) -> 
    receive 
    {subscribe, Client, Topic} -> 
     dispatcherLoop(addInterest(Interests, Client, Topic)); 
    {publish, Topic, Message} -> 
     Destinations = computeDestinations(Topic, Interests), 
     send(Topic, Message, Destinations), 
     dispatcherLoop(Interests) 
    end. 

computeDestinations(_, []) -> []; 
computeDestinations(Topic, [{SelectedTopic, Clients}|T]) -> 
    if SelectedTopic == Topic -> Clients; 
     SelectedTopic =/= Topic -> computeDestinations(Topic, T) 
    end. 

send(_, _, []) -> ok; 
send(Topic, Message, [Client|T]) -> 
    {client, Client} ! {Topic, Message}, 
    send(Topic, Message, T). 

addInterest(Interests, Client, Topic) -> 
    addInterest(Interests, Client, Topic, []). 
addInterest([], Client, Topic, Result) -> 
    Result ++ [{Topic, [Client]}]; 
addInterest([{SelectedTopic, Clients}|T], Client, Topic, Result) -> 
    if SelectedTopic == Topic -> 
     NewClients = Clients ++ [Client], 
     Result ++ [{Topic, NewClients}] ++ T; 
     SelectedTopic =/= Topic -> 
     addInterest(T, Client, Topic, Result ++ [{SelectedTopic, Clients}]) 
    end. 

回答

1

我建議你:http://www.erlang.org/doc/getting_started/conc_prog.html

總之,給你所有節點共享相同的cookie,啓動3枚不同的炮彈

erl -sname n1 
([email protected])1> pubsub2:startClient(). 

erl -sname n2 
([email protected])1> pubsub2:startDispatcher(). 

erl -sname n3 
([email protected])1> pubsub2:startClient(). 
在N1做

([email protected])1> pubsub2:startClient(). 
([email protected])2> pubsub2:subscribe('[email protected]', football). 

in n3 do:

([email protected])1> pubsub2:startClient(). 
([email protected])1> pubsub2:publish('[email protected]', football, news1). 

在N1你應該得到:

Received message news1 for topic football 

當然,如你願意,你可以擴展它。