This package has been deprecated

Author message:

This is now part of the https://www.npmjs.com/package/libp2p-interfaces module

interface-connection

0.3.3 • Public • Published

interface-connection

This is a test suite and interface you can use to implement a connection. A connection is understood as something that offers mechanism for writing and reading data, back pressure, half and full duplex streams. This module and test suite were heavily inspired by abstract-blob-store and interface-stream-muxer.

The primary goal of this module is to enable developers to pick, swap or upgrade their connection without losing the same API expectations and mechanisms such as back pressure and the ability to half close a connection.

Publishing a test suite as a module lets multiple modules all ensure compatibility since they use the same test suite.

The API is presented with both Node.js and Go primitives, however, there is no actual limitations for it to be extended to any other language, pushing forward the cross compatibility and interop through diferent stacks.

Lead Maintainer

Jacob Heun

Modules that implement the interface

Badge

Include this badge in your readme if you make a module that is compatible with the interface-connection API. You can validate this by running the tests.

How to use the battery of tests

Node.js

var tape = require('tape')
var tests = require('interface-connection/tests')
var YourConnectionHandler = require('../src')

var common = {
  setup: function (t, cb) {
    cb(null, YourConnectionHandler)
  },
  teardown: function (t, cb) {
    cb()
  }
}

tests(tape, common)

Go

WIP

API

A valid (read: that follows this abstraction) connection, must implement the following API.

Table of contents:

  • type: Connection
    • conn.getObservedAddrs(callback)
    • conn.getPeerInfo(callback)
    • conn.setPeerInfo(peerInfo)
    • ...

Get the Observed Addresses of the peer in the other end

  • JavaScript - conn.getObservedAddrs(callback)

This method retrieves the observed addresses we get from the underlying transport, if any.

callback should follow the follow function (err, multiaddrs) {}, where multiaddrs is an array of multiaddr.

Get the PeerInfo

  • JavaScript - conn.getPeerInfo(callback)

This method retrieves the a Peer Info object that contains information about the peer that this conn connects to.

callback should follow the function (err, peerInfo) {} signature, where peerInfo is a object of type Peer Info

Set the PeerInfo

  • JavaScript - conn.setPeerInfo(peerInfo) j This method stores a reference to the peerInfo Object that contains information about the peer that this conn connects to.

peerInfo is a object of type Peer Info


notes:

  • should follow the remaining Duplex stream operations
  • should have backpressure into account
  • should enable half duplex streams (close from one side, but still open for the other)
  • should support full duplex
  • tests should be performed by passing two streams

Readme

Keywords

Package Sidebar

Install

npm i interface-connection

Weekly Downloads

147

Version

0.3.3

License

MIT

Unpacked Size

31.6 kB

Total Files

10

Last publish

Collaborators

  • daviddias