The Geeny Hub SDK provides an abstraction over APIs and communication interfaces necessary to connect physical or virtual devices to the Geeny cloud. The Hub SDK can be used in one of two ways: as a Rust library crate, or as a a standalone binary that can be used by applications written in other languages by providing an interprocess communication interface.
For developers with an existing Hub Device, such as a Smart Home Gateway, the standalone Geeny Hub Service may be used to provide a single local interface to communicate with Geeny Cloud Services to enable device provisioning, sending messages to the cloud, and receiving messages from the cloud. The Geeny Hub Service may be installed as a package, or included as part of a firmware generation process such as Buildroot or Yocto. When used as a service, no knowledge of Rust developement is necessary.
For developers building a new Hub Device, the Geeny Hub SDK may be used as a library (or crate), and can be tightly integrated into a Rust-based application. This allows developers to interact with the Geeny Cloud through an idiomatic Rust library interface, rather than having to implement REST, MQTT, and other communication protocols.
```rust,norun extern crate hubsdk;
use hub_sdk::{HubSDK, HubSDKConfig};
fn main() { let sdk_cfg = HubSDKConfig::default();
// Begin running the SDK. The hub_sdk handle may be used to interact with
// the sdk. This handle may be cloned and given to multiple consumers
let hub_sdk = HubSDK::new(sdk_cfg);
let msgs = hub_sdk.receive_messages("ABC123")
.expect("No known device with that serial number");
println!("Messages: {:?}", msgs);
} ```
Full library documentation may be found on docs.rs, or may be generated
from this repository using cargo doc --open
.
```bash
cp ./geenyhubservice.mvdb.json.example ./geenyhubservice.mvdb.json
cargo run --release --bin hub-service ```
For more information regarding the REST IPC interface, please see this Swagger API specification for more information.
Currently, the Geeny Hub SDK requires a nightly build of Rust.
In your Cargo.toml
, add the following lines:
toml
[dependencies]
hub_sdk = "0.3"
In your main project file (likely lib.rs
or main.rs
), add the following line:
rust,ignore
extern crate hub_sdk;
```bash
cp ./geenyhubservice.mvdb.json.example ./geenyhubservice.mvdb.json
cargo run --release --bin hub-service ```
Unit tests may be run with cargo test
.
Copyright (C) 2017 Telefónica Germany Next GmbH, Charlottenstrasse 4, 10969 Berlin.
This project is licensed under the terms of the Mozilla Public License Version 2.0.
Contact: devsupport@geeny.io
This crate makes use of the following third party components with the following licenses:
| License | Count | Dependencies |
| :------ | :---- | :----------- |
| Apache-2.0 | 2 | openssl, thread-id |
| Apache-2.0/MIT | 76 | antidote, backtrace, backtrace-sys, base64, bitflags, bitflags, cfg-if, coco, cookie, core-foundation, core-foundation-sys, customderive, dtoa, either, envlogger, error-chain, foreign-types, futures, gcc, httparse, hyper-native-tls, idna, isatty, itoa, lazystatic, libc, log, mqtt-protocol, native-tls, num-traits, numcpus, ordermap, pear, pearcodegen, percent-encoding, pkg-config, quick-error, quote, rand, rayon, rayon-core, regex, regex, regex-syntax, regex-syntax, reqwest, rocket, rocketcodegen, rocketcontrib, rustc-demangle, scopeguard, security-framework, security-framework-sys, serde, serdederive, serdederiveinternals, serdejson, serdeurlencoded, state, syn, synom, tempdir, threadlocal, threadlocal, threadpool, time, toml, traitobject, unicode-bidi, unicode-normalization, unicode-xid, unreachable, url, uuid, vcpkg, yansi |
| BSD-3-Clause | 3 | adler32, magenta, magenta-sys |
| MIT | 21 | advapi32-sys, conv, crypt32-sys, dbghelp-sys, hyper, kernel32-sys, language-tags, libflate, matches, mime, mvdb, openssl-sys, redoxsyscall, schannel, secur32-sys, typeable, unicase, versioncheck, void, winapi, winapi-build |
| MIT OR Apache-2.0 | 1 | safemem |
| MIT/Unlicense | 9 | aho-corasick, aho-corasick, byteorder, byteorder, memchr, memchr, rumqtt, utf8-ranges, utf8-ranges |
| MPL-2.0 | 2 | geeny-api, smallvec |
| Other*
| 2 | ring, untrusted |
*
Please see ring's license for more
information regarding ring
and untrusted
's licensing.