/* Part of SWI-Prolog Author: Jeffrey Rosenwald E-mail: jeffrose@acm.org WWW: http://www.swi-prolog.org Copyright (c) 2009-2013, Jeffrey Rosenwald All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ :- module(tipc_broadcast, [ tipc_host_to_address/2, % ?Host, ?Address tipc_initialize/0 ]). :- use_module(library(tipc/tipc),[tipc_initialize/0]). /** A TIPC Broadcast Bridge SWI-Prolog's broadcast library provides a means that may be used to facilitate publish and subscribe communication regimes between anonymous members of a community of interest. The members of the community are however, necessarily limited to a single instance of Prolog. The TIPC broadcast library removes that restriction. With this library loaded, any member of a TIPC network that also has this library loaded may hear and respond to your broadcasts. Using TIPC Broadcast, it becomes a nearly trivial matter to build an instance of supercomputer that researchers within the High Performance Computer community refer to as "Beowulf Class Cluster Computers." This module has no public predicates. When this module is initialized, it does three things: * It starts a listener daemon thread that listens for broadcasts from others, received as TIPC datagrams, and * It registers three listeners: tipc_node/1, tipc_cluster/1, and tipc_zone/1, and * It registers three listeners: tipc_node/2, tipc_cluster/2, and tipc_zone/2. A broadcast/1 or broadcast_request/1 that is not directed to one of the six listeners above, behaves as usual and is confined to the instance of Prolog that originated it. But when so directed, the broadcast will be sent to all participating systems, including itself, by way of TIPC's multicast addressing facility. A TIPC broadcast or broadcast request takes the typical form: =|broadcast(tipc_node(+Term, +Timeout))|=. The principal functors =tipc_node=, =tipc_cluster=, and =tipc_zone=, specify the scope of the broadcast. The functor =tipc_node=, specifies that the broadcast is to be confined to members of a present TIPC node. Likewise, =tipc_cluster= and =tipc_zone=, specify that the traffic should be confined to members of a present TIPC cluster and zone, respectively. To prevent the potential for feedback loops, the scope qualifier is stripped from the message before transmission. The timeout is optional. It specifies the amount to time to wait for replies to arrive in response to a broadcast_request. The default period is 0.250 seconds. The timeout is ignored for broadcasts. An example of three separate processes cooperating on the same Node: == Process A: ?- listen(number(X), between(1, 5, X)). true. ?- Process B: ?- listen(number(X), between(7, 9, X)). true. ?- Process C: ?- findall(X, broadcast_request(tipc_node(number(X))), Xs). Xs = [1, 2, 3, 4, 5, 7, 8, 9]. ?- == It is also possible to carry on a private dialog with a single responder. To do this, you supply a compound of the form, Term:PortId, to a TIPC scoped broadcast/1 or broadcast_request/1, where PortId is the port-id of the intended listener. If you supply an unbound variable, PortId, to broadcast_request, it will be unified with the address of the listener that responds to Term. You may send a directed broadcast to a specific member by simply providing this address in a similarly structured compound to a TIPC scoped broadcast/1. The message is sent via unicast to that member only by way of the member's broadcast listener. It is received by the listener just as any other broadcast would be. The listener does not know the difference. Although this capability is needed under some circumstances, it has a tendency to compromise the resilience of the broadcast model. You should not rely on it too heavily, or fault tolerance will suffer. For example, in order to discover who responded with a particular value: == Process A: ?- listen(number(X), between(1, 3, X)). true. ?- Process B: ?- listen(number(X), between(7, 9, X)). true. ?- Process C: ?- broadcast_request(tipc_node(number(X):From)). X = 7, From = port_id('<1.1.1:3971170279>') ; X = 8, From = port_id('<1.1.1:3971170279>') ; X = 9, From = port_id('<1.1.1:3971170279>') ; X = 1, From = port_id('<1.1.1:3971170280>') ; X = 2, From = port_id('<1.1.1:3971170280>') ; X = 3, From = port_id('<1.1.1:3971170280>') ; false. ?- == ## Caveats {#tipc-caveats} While the implementation is mostly transparent, there are some important and subtle differences that must be taken into consideration: * TIPC broadcast now requires an initialization step in order to launch the broadcast listener daemon. See tipc_initialize/0. * Prolog's broadcast_request/1 is nondet. It sends the request, then evaluates the replies synchronously, backtracking as needed until a satisfactory reply is received. The remaining potential replies are not evaluated. This is not so when TIPC is involved. * A TIPC broadcast/1 is completely asynchronous. * A TIPC broadcast_request/1 is partially synchronous. A broadcast_request/1 is sent, then the sender balks for a period of time (default: 250 ms) while the replies are collected. Any reply that is received after this period is silently discarded. An optional second argument is provided so that a sender may specify more (or less) time for replies. * Replies are _|no longer|_ collected using findall/3. Replies are presented to the user as a choice point on arrival, until the broadcast request timer finally expires. This change allows traffic to propagate through the system faster and provides the requestor with the opportunity to terminate a broadcast request early if desired, by simply cutting choice points. * Please beware that broadcast request transactions will now remain active and resources consumed until broadcast_request finally fails on backtracking, an uncaught exception occurs, or until choice points are cut. Failure to properly manage this will likely result in chronic exhaustion of TIPC sockets. * If a listener is connected to a generator that always succeeds (e.g. a random number generator), then the broadcast request will never terminate and trouble is bound to ensue. * broadcast_request/1 with TIPC scope is _not_ reentrant (at least, not now anyway). If a listener performs a broadcast_request/1 with TIPC scope recursively, then disaster looms certain. This caveat does not apply to a TIPC scoped broadcast/1, which can safely be performed from a listener context. * TIPC's capacity is not infinite. While TIPC can tolerate substantial bursts of activity, it is designed for short bursts of small messages. It can tolerate several thousand replies in response to a broadcast_request/1 without trouble, but it will begin to encounter congestion beyond that. And in congested conditions, things will start to become unreliable as TIPC begins prioritizing and/or discarding traffic. * A TIPC broadcast_request/1 term that is grounded is considered to be a broadcast only. No replies are collected unless the there is at least one unbound variable to unify. * A TIPC broadcast/1 always succeeds, even if there are no listeners. * A TIPC broadcast_request/1 that receives no replies will fail. * Replies may be coming from many different places in the network (or none at all). No ordering of replies is implied. * Prolog terms are sent to others after first converting them to atoms using term_to_atom/2. Passing real numbers this way may result in a substantial truncation of precision. See prolog flag option, 'float_format', of current_prolog_flag/2. @author Jeffrey Rosenwald (JeffRose@acm.org) @license LGPL @see tipc.pl @compat Linux only */ :- autoload(tipc, [ tipc_get_name/2, tipc_send/4, tipc_socket/2, tipc_close_socket/1, tipc_setopt/2, tipc_bind/3, tipc_receive/4 ]). :- autoload(library(broadcast), [broadcast_request/1,broadcast/1,listen/3,unlisten/1]). :- use_module(library(debug),[assertion/1]). :- autoload(library(time), [call_with_time_limit/2,alarm/3,remove_alarm/1]). :- require([ thread_self/1 , forall/2 , term_to_atom/2 , thread_send_message/2 , catch/3 , setup_call_cleanup/3 , thread_create/3 ]). :- meta_predicate safely(0), eventually_implies(0,0), ~>(0,0). tipc_broadcast_service(node, name_seq(20005, 0, 0)). tipc_broadcast_service(cluster, name_seq(20005, 1, 1)). tipc_broadcast_service(zone, name_seq(20005, 2, 2)). % % Here's a TIPC bridge to Prolog's broadcast library % % A sender may confine a broadcast to a subset of a TIPC network by % specifying a scoping qualifier in his/her broadcast. The qualifier % has the effect of selecting the appropriate multi-cast address for % the transmission. Thus, the sender of the message has control over % the scope of his/her traffic on a per-message basis. % % All in-scope listeners receive the broadcast and simply rebroadcast % the message locally. All broadcast replies, if any, are sent directly % to the sender via the port-id that was received with the broadcast. % No additional multiplexing is required. % safely(Predicate) :- catch(Predicate, Err, (Err == '$aborted' -> (!, fail); print_message(error, Err), fail)). %! ~>(:P, :Q) is semidet. %! eventually_implies(:P, :Q) is semidet. % asserts temporal Liveness (something good happens, eventually) and % Safety (nothing bad ever happens) properties. Analogous to the % "leads-to" operator of Owicki and Lamport, 1982. Provides a sort of % lazy implication described informally as: % % * Liveness: For all possible outcomes, P -> Q, eventually. % * Safety: For all possible outcomes, (\+P ; Q), is invariant. % % Described practically: % % P ~> Q, declares that if P is true, then Q must be true, now or at % some point in the future. % eventually_implies(P, Q) :- setup_call_cleanup(P, ( Solution = yes ; Solution = no ), assertion(Q)), Solution = yes. :- op(950, xfy, ~>). ~>(P, Q) :- eventually_implies(P, Q). ld_dispatch(S, '$tipc_request'(wru(Name)), From) :- !, tipc_get_name(S, Name), term_to_atom(wru(Name), Atom), tipc_send(S, Atom, From, []). ld_dispatch(S, '$tipc_request'(Term), From) :- !, forall(broadcast_request(Term), ( term_to_atom(Term, Atom), tipc_send(S, Atom, From, []))). ld_dispatch(_S, Term, _From) :- safely(broadcast(Term)). tipc_listener_daemon(Parent) :- tipc_socket(S, rdm) ~> tipc_close_socket(S), % tipc_setopt(S, importance(medium)), tipc_setopt(S, dest_droppable(true)), % discard if not deliverable forall(tipc_broadcast_service(Scope, Address), tipc_bind(S, Address, scope(Scope))), listen(tipc_broadcast, Head, broadcast_listener(Head)) ~> unlisten(tipc_broadcast), thread_send_message(Parent, tipc_listener_daemon_ready), repeat, safely(dispatch_traffic(S)). dispatch_traffic(S) :- tipc_receive(S, Data, From, [as(atom)]), term_to_atom(Term, Data), ld_dispatch(S, Term, From), !, dispatch_traffic(S). start_tipc_listener_daemon :- catch(thread_property(tipc_listener_daemon, status(running)),_, fail), !. start_tipc_listener_daemon :- thread_self(Self), thread_create(tipc_listener_daemon(Self), _, [alias(tipc_listener_daemon), detached(true)]), call_with_time_limit(6.0, thread_get_message(tipc_listener_daemon_ready)). :- multifile tipc:host_to_address/2. % broadcast_listener(tipc_host_to_address(Host, Addr)) :- tipc:host_to_address(Host, Addr). broadcast_listener(tipc_broadcast_service(Class, Addr)) :- tipc_broadcast_service(Class, Addr). broadcast_listener(tipc_node(X)) :- tipc_broadcast(X, node, 0.250). broadcast_listener(tipc_cluster(X)) :- tipc_broadcast(X, cluster, 0.250). broadcast_listener(tipc_zone(X)) :- tipc_broadcast(X, zone, 0.250). broadcast_listener(tipc_node(X, Timeout)) :- tipc_broadcast(X, node, Timeout). broadcast_listener(tipc_cluster(X, Timeout)) :- tipc_broadcast(X, cluster, Timeout). broadcast_listener(tipc_zone(X, Timeout)) :- tipc_broadcast(X, zone, Timeout). % % tipc_basic_broadcast(S, Term, Address) :- tipc_socket(S, rdm) ~> tipc_close_socket(S), % tipc_setopt(S, importance(medium)), term_to_atom(Term, Atom), safely(tipc_send(S, Atom, Address, [])). % directed broadcast to a single listener tipc_broadcast(Term:To, _Scope, _Timeout) :- ground(Term), ground(To), !, tipc_basic_broadcast(_S, Term, To), !. % broadcast to all listeners tipc_broadcast(Term, Scope, _Timeout) :- ground(Term), !, tipc_broadcast_service(Scope, Address), tipc_basic_broadcast(_S, Term, Address), !. % directed broadcast_request to a single listener tipc_broadcast(Term:Address, _Scope, Timeout) :- ground(Address), !, tipc_basic_broadcast(S, '$tipc_request'(Term), Address), tipc_br_collect_replies(S, Timeout, Term:Address). % broadcast_request to all listeners returning responder port-id tipc_broadcast(Term:From, Scope, Timeout) :- !, tipc_broadcast_service(Scope, Address), tipc_basic_broadcast(S, '$tipc_request'(Term), Address), tipc_br_collect_replies(S, Timeout, Term:From). % broadcast_request to all listeners ignoring responder port-id tipc_broadcast(Term, Scope, Timeout) :- tipc_broadcast(Term:_, Scope, Timeout). tipc_br_send_timeout(Port) :- tipc_socket(S, rdm) ~> tipc_close_socket(S), tipc_setopt(S, importance(critical)), tipc_send(S, '$tipc_br_timeout', Port, []), !. tipc_br_collect_replies(S, Timeout, Term:From) :- tipc_get_name(S, Port), alarm(Timeout, tipc_br_send_timeout(Port), Id) ~> remove_alarm(Id), tipc_setopt(S, dispatch(false)), repeat, tipc_receive(S, Atom, From1, [as(atom)]), ( (Atom \== '$tipc_br_timeout') -> (From1 = From, safely(term_to_atom(Term, Atom))) ; (!, fail)). %! tipc_host_to_address(?Service, ?Address) is nondet. % % locates a TIPC service by name. Service is an atom or grounded term % representing the common name of the service. Address is a TIPC % address structure. A server may advertise its services by name by % including the fact, tipc:host_to_address(+Service, +Address), % somewhere in its source. This predicate can also be used to perform % reverse searches. That is it will also resolve an Address to a % Service name. The search is zone-wide. Locating a service however, % does not imply that the service is actually reachable from any % particular node within the zone. % tipc_host_to_address(Host, Address) :- broadcast_request(tipc_zone(tipc_host_to_address(Host, Address))). %! tipc_initialize is semidet. % See tipc:tipc_initialize/0 % :- multifile tipc:tipc_stack_initialize/0. % tipc_stack_initialize() is det. causes any required runtime % initialization to occur. This called as a side-effect of % tipc_initialize/0, which is now required to be included in an % applications intialization directive. % tipc:tipc_stack_initialize :- start_tipc_listener_daemon.