placeos-driver

Version, currently 7.6.0100 versions

github.com/PlaceOS/driver

PlaceOS driver framework.

3 stars
0 dependents
License: NOASSERTION

Nothing has been indexed for 7.6.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  placeos-driver:
    github: PlaceOS/driver
    version: ~> 7.6.0

Then run:

shards install

shard.yml

No shard.yml has been indexed for 7.6.0. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

PlaceOS Driver

CI

The framework for running drivers on PlaceOS.

Requirements

  • libssh2 required for SSH support

Transport selection

Only the transports a driver declares are compiled into the binary, based on the discovery settings in the driver class body:

DeclarationTransports compiled
tcp_port 1234TCP + SSH
udp_port 1234UDP
uri_base "https://..."HTTP + websocket
none of the abovelogic only

Starting a module with a role the driver was not compiled for raises at module start, for example: driver was not compiled with HTTP transport support, declare 'uri_base' in the driver to enable it.

All transports can be forced into a binary with the -Dplaceos_all_transports compiler flag, by setting the PLACEOS_ALL_TRANSPORTS env var at build time, or by calling PlaceOS::Driver.load_all_transports after requiring the library. The test-harness sets the env var on its build service, as DriverSpecs launches every driver against a mock raw TCP server (role: 1) plus a mock HTTP server, regardless of the transports the driver uses in production.