Mesh Socket ~~~~~~~~~~~ Basic Usage ----------- To connect to a mesh network, you will use the :js:class:`~js2p.mesh.mesh_socket` object. You can instantiate this as follows: .. code-block:: javascript > const mesh = require('js2p').mesh; > sock = new mesh.mesh_socket('0.0.0.0', 4444); Using ``'0.0.0.0'`` will (this feature in progress) automatically grab your LAN address. If you want to use an outward-facing internet connection, there is a little more work. First you need to make sure that you have a port forward setup (NAT busting is not in the scope of this project). Then you will specify this outward address as follows: .. code-block:: javascript > const mesh = require('js2p').mesh; > sock = new mesh.mesh_socket('0.0.0.0', 4444, null, ['35.24.77.21', 44565]); Specifying a different protocol object will ensure that you *only* can connect to people who share your object structure. So if someone has ``'mesh2'`` instead of ``'mesh'``, you will fail to connect. Unfortunately, this failure is currently silent. Because this is asynchronous in nature, raising an error is not possible. Because of this, it's good to perform the following check the truthiness of :js:attr:`.mesh_socket.routing_table`. If it is truthy, then you are connected to the network. To send a message, you should use the :js:func:`~js2p.mesh.mesh_socket.send` method. Each argument you supply will correspond to a packet that your peer receives. In addition, there are two keyed arguments you can use. ``flag`` will specify how other nodes relay this. These flags are defined in :js:data:`js2p.base.flags` . ``broadcast`` will indicate that other nodes are supposed to relay it. ``whisper`` will indicate that your peers are *not* supposed to relay it. There are other technically valid options, but they are not recommended. ``type`` will specify what actions other nodes are supposed to take on it. It defaults to ``broadcast``, which indicates no change from the norm. There are other valid options, but they should normally be left alone, unless you've written a handler (see below) to act on this. .. code-block:: javascript > sock.send(['this is', 'a test']); Receiving is a bit simpler. When you call the :js:func:`~js2p.mesh.mesh_socket.recv` method, you receive a :js:class:`~js2p.base.message` object. This has a number of methods outlined which you can find by clicking its name. Most notably, you can get the packets in a message with :js:attr:`~js2p.base.message.packets`, and reply directly with :js:func:`~js2p.base.message.reply`. .. code-block:: javascript > sock.send(['Did you get this?']); > var msg = sock.recv(); > console.log(msg); message { type: packets: [ , ] sender: '8vu4oLsvVBsnnH6N83z6y6RZqrMKRrVHr44xRwXCFaU9qcyYsjJDzVfKwmdGp51K4d' } > msg.packets.forEach((packet) => { ... var str = packet.toString() ... console.log(util.inspect(str)); ... }); '\u0002' 'yes' 'I did' > console.log(msg.packets); [ , , ] > sock.recv(10).forEach((msg) => { ... msg.reply(["Replying to a list"]); ... }); Advanced Usage -------------- In addition to this, you can register a custom handler for incoming messages. This is appended to the end of the included ones. When writing your handler, you must keep in mind that you are only passed a :js:class:`~js2p.base.message` object and a :js:class:`~js2p.mesh.mesh_connection`. Fortunately you can get access to everything you need from these objects. This example is in Python, but the Javascript syntax is identical. .. code-block:: python >>> def relay_tx(msg, handler): ... """Relays bitcoin transactions to various services""" ... packets = msg.packets # Gives a list of the non-metadata packets ... server = msg.server # Returns your mesh_socket object ... if packets[0] == b'tx_relay': # It's important that this flag is bytes ... from pycoin import tx, services ... relay = tx.Tx.from_bin(packets[1]) ... services.blockchain_info.send_tx(relay) ... services.insight.InsightProvider().send_tx(relay) ... return True # This tells the daemon to stop calling handlers ... >>> import py2p >>> sock = py2p.mesh_socket('0.0.0.0', 4444) >>> sock.register_handler(relay_tx) To help debug these services, you can specify a :js:attr:`~js2p.base.base_socket.debug_level` in the constructor. Using a value of 5, you can see when it enters into each handler, as well as every message which goes in or out.