19962016 Ericsson AB. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. erl_connect Torbjörn Törnkvist Torbjörn Törnkvist Bjarne Däcker Torbjörn Törnkvist 1998-07-03 A erl_connect.xml
erl_connect Communicate with distributed Erlang.

This module provides support for communication between distributed Erlang nodes and C-nodes, in a manner that is transparent to Erlang processes.

A C-node appears to Erlang as a hidden node. That is, Erlang processes that know the name of the C-node can communicate with it in a normal manner, but the node name does not appear in the listing provided by erlang:nodes/0 in ERTS.

interl_accept(listensock, conp) Accept a connection. int listensock; ErlConnect *conp;

This function is used by a server process to accept a connection from a client process.

is an open socket descriptor on which has previously been called. is a pointer to an struct, described as follows:

On success, is filled in with the address and node name of the connecting client and a file descriptor is returned. On failure, is returned and is set to .

interl_close_connection(fd) Close a connection to an Erlang node. int fd;

Closes an open connection to an Erlang node.

is a file descriptor obtained from or .

Returns 0 on success. If the call fails, a non-zero value is returned, and the reason for the error can be obtained with the appropriate platform-dependent call.

interl_connect(node) interl_xconnect(addr, alive) Establish a connection to an Erlang node. char *node, *alive; struct in_addr *addr;

Sets up a connection to an Erlang node.

requires the IP address of the remote host and the alivename of the remote node to be specified. provides an alternative interface, and determines the information from the node name provided.

is the 32-bit IP address of the remote host. is the alivename of the remote node. is the name of the remote node.

Returns an open file descriptor on success, otherwise a negative value. In the latter case is set to one of:

The remote host is unreachable. No more memory is available. I/O error.

Also, values from (2) and (2) system calls can be propagated into .

Example:

interl_connect_init(number, cookie, creation) interl_connect_xinit(host, alive, node, addr, cookie, creation) Initialize communication. int number; char *cookie; short creation; char *host,*alive,*node; struct in_addr *addr;

Initializes the module. In particular, these functions are used to identify the name of the C-node from which they are called. One of these functions must be called before any of the other functions in the erl_connect module are used.

stores for later use information about:

Hostname of the node, Alivename, Node name, IP address, Cookie, Creation number,

provides an alternative interface that does not require as much information from the caller. Instead, uses to obtain default values.

If you use , your node will have a short name, that is, it will not be fully qualified. If you need to use fully qualified (long) names, use instead.

is the name of the host on which the node is running.

is the alivename of the node.

is the node name. It is to be of the form alivename@hostname.

is the 32-bit IP address of .

is the authorization string required for access to the remote node. If NULL, the user HOME directory is searched for a cookie file . The path to the home directory is retrieved from environment variable on Unix and from the and variables on Windows. For more details, see the auth module in Kernel.

helps identifying a particular instance of a C-node. In particular, it can help prevent us from receiving messages sent to an earlier process with the same registered name.

A C-node acting as a server is assigned a creation number when it calls .

is used by to construct the actual node name. In Example 2 below, "c17@a.DNS.name" is the resulting node name.

Example 1:

when initializing !"); ]]>

Example 2:

when initializing !"); ]]>
interl_publish(port) Publish a node name. int port;

This function is used by a server process to register with the local name server EPMD, thereby allowing other processes to send messages by using the registered name. Before calling this function, the process should have called and on an open socket.

is the local name to register, and is to be the same as the port number that was previously bound to the socket.

To unregister with EPMD, simply close the returned descriptor.

On success, a descriptor connecting the calling process to EPMD is returned. On failure, -1 is returned and is set to:

I/O error.

Also, values from (2) and (2) system calls can be propagated into .

interl_receive(fd, bufp, bufsize) Receive a message. int fd; char *bufp; int bufsize;

Receives a message consisting of a sequence of bytes in the Erlang external format.

is an open descriptor to an Erlang connection. is a buffer large enough to hold the expected message. indicates the size of .

If a tick occurs, that is, the Erlang node on the other end of the connection has polled this node to see if it is still alive, the function returns and no message is placed in the buffer. Also, is set to .

On success, the message is placed in the specified buffer and the function returns the number of bytes actually read. On failure, the function returns a negative value and sets to one of:

Temporary error: Try again. Buffer is too small. I/O error.
interl_receive_msg(fd, bufp, bufsize, emsg) Receive and decode a message. int fd; unsigned char *bufp; int bufsize; ErlMessage *emsg;

Receives the message into the specified buffer and decodes into .

is an open descriptor to an Erlang connection. is a buffer large enough to hold the expected message. indicates the size of . > is a pointer to an structure into which the message will be decoded. is defined as follows:

The definition of has changed since earlier versions of Erl_Interface.

identifies the type of message, one of the following:

An ordinary send operation has occurred and to]]> contains the pid of the recipient. The message is in msg]]>.

A registered send operation has occurred and from]]> contains the pid of the sender. The message is in msg]]>.

or

to]]> and from]]> contain the pids of the sender and recipient of the link or unlink. msg]]> is not used.

A link is broken. to]]> and from]]> contain the pids of the linked processes, and msg]]> contains the reason for the exit.

It is the caller's responsibility to release the memory pointed to by msg]]>, to]]>, and from]]>.

If a tick occurs, that is, the Erlang node on the other end of the connection has polled this node to see if it is still alive, the function returns indicating that the tick has been received and responded to, but no message is placed in the buffer. In this case you are to call again.

On success, the function returns and the struct is initialized as described above, or , in which case no message is returned. On failure, the function returns and sets to one of:

Buffer is too small. No more memory is available. I/O error.
interl_reg_send(fd, to, msg) Send a message to a registered name. int fd; char *to; ETERM *msg;

Sends an Erlang term to a registered process.

is an open descriptor to an Erlang connection. is a string containing the registered name of the intended recipient of the message. is the Erlang term to be sent.

Returns 1 on success, otherwise 0. In the latter case is set to one of:

No more memory is available. I/O error.
ETERM *erl_rpc(fd, mod, fun, args) interl_rpc_from(fd, timeout, emsg) interl_rpc_to(fd, mod, fun, args) Remote Procedure Call. int fd, timeout; char *mod, *fun; ETERM *args; ErlMessage *emsg;

Supports calling Erlang functions on remote nodes. sends an RPC request to a remote node and receives the results of such a call. combines the functionality of these two functions by sending an RPC request and waiting for the results. See also rpc:call/4 in Kernel.

is an open descriptor to an Erlang connection. is the maximum time (in milliseconds) to wait for results. To wait forever, specify . When erl_rpc() calls erl_rpc_from(), the call will never timeout. is the name of the module containing the function to be run on the remote node. is the name of the function to run. is an Erlang list, containing the arguments to be passed to the function. is a message containing the result of the function call.

The actual message returned by the RPC server is a 2-tuple . If you use in your code, this is the message you will need to parse. If you use , the tuple itself is parsed for you, and the message returned to your program is the Erlang term containing only. Replies to RPC requests are always ERL_SEND messages.

It is the caller's responsibility to free the returned structure and the memory pointed to by msg]]> and to]]>.

returns the remote function's return value on success, otherwise .

returns 0 on success, otherwise a negative number.

returns on success (with now containing the reply tuple), otherwise one of , , or .

When failing, all three functions set to one of:

No more memory is available. I/O error. Timeout has expired. Temporary error: Try again.
interl_send(fd, to, msg) Send a message. int fd; ETERM *to, *msg;

Sends an Erlang term to a process.

is an open descriptor to an Erlang connection. is an Erlang term containing the pid of the intended recipient of the message. > is the Erlang term to be sent.

Returns 1 on success, otherwise 0. In the latter case is set to one of:

Invalid argument: is not a valid Erlang pid. No more memory is available. I/O error.
const char *erl_thisalivename() const char *erl_thiscookie() shorterl_thiscreation() const char *erl_thishostname() const char *erl_thisnodename() Retrieve some values.

Retrieves information about the C-node. These values are initially set with or .

interl_unpublish(alive) Forcefully unpublish a node name. char *alive;

This function can be called by a process to unregister a specified node from EPMD on the local host. This is, however, usually not allowed, unless EPMD was started with flag -relaxed_command_check, which it normally is not.

To unregister a node you have published, you should instead close the descriptor that was returned by .

This function is deprecated and will be removed in a future release.

is the name of the node to unregister, that is, the first component of the node name, without .

If the node was successfully unregistered from EPMD, 0 is returned, otherwise -1 is returned and is set to .

interl_xreceive_msg(fd, bufpp, bufsizep, emsg) Receive and decode a message. int fd; unsigned char **bufpp; int *bufsizep; ErlMessage *emsg;

Similar to . The difference is that expects the buffer to have been allocated by , and reallocates it if the received message does not fit into the original buffer. Therefore both buffer and buffer length are given as pointers; their values can change by the call.

On success, the function returns and the struct is initialized as described above, or , in which case no message is returned. On failure, the function returns and sets to one of:

Buffer is too small. No more memory is available. I/O error.
struct hostent*erl_gethostbyaddr(addr, length, type) struct hostent*erl_gethostbyaddr_r(addr, length, type, hostp, buffer, buflen, h_errnop) struct hostent*erl_gethostbyname(name) struct hostent*erl_gethostbyname_r(name, hostp, buffer, buflen, h_errnop) Name lookup functions. const char *name; const char *addr; int length; int type; struct hostent *hostp; char *buffer; int buflen; int *h_errnop;

Convenience functions for some common name lookup functions.

Debug Information

If a connection attempt fails, the following can be checked:

That the correct cookie was used That EPMD is running That the remote Erlang node on the other side is running the same version of Erlang as the library