aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Euphrosine <proppy@google.com>2016-03-18 23:58:17 -0700
committerJohan Euphrosine <proppy@google.com>2016-03-31 18:31:38 +0000
commit5fe0ac0af3f49e6ab96e18bdcc9e0a0749bbd99f (patch)
tree7fd6d20949174aa1796a88146e8d765ea93fdfe8
parent3127cb3df04e69b66a88b05cae359b7645652cc9 (diff)
downloadlibweave-5fe0ac0af3f49e6ab96e18bdcc9e0a0749bbd99f.tar.gz
examples: refactor README file
- use weave console instead of oauth playground for sending commands - bootstrap provider documentation - fix markdown, prose and formating for the daemon readme Change-Id: Ie5c16b8ce68f856e4059158142ee984c2a131cdf Reviewed-on: https://weave-review.googlesource.com/2977 Reviewed-by: Dan Yu <dsyu@google.com> Reviewed-by: Alex Vakulenko <avakulenko@google.com>
-rw-r--r--examples/daemon/README.md137
-rw-r--r--examples/provider/README.md34
2 files changed, 87 insertions, 84 deletions
diff --git a/examples/daemon/README.md b/examples/daemon/README.md
index 0268685..b6a7664 100644
--- a/examples/daemon/README.md
+++ b/examples/daemon/README.md
@@ -1,124 +1,93 @@
-# Overview
+# libweave daemon examples
-The wrapper implements OS dependent services for libweave
+This directory contains examples implementation of `libweave` device daemons.
-# Building
+## Build
-### Build daemon examples
-
-The example binaries land in the out/Debug/ directory build all of them at once:
+- build all examples
```
make all-examples
```
-...or one at a time.
+- build only the light daemon
```
make out/Debug/weave_daemon_light
```
-# Prepare Host OS
+## Pre-requisites
+
+- enable user-service-publishing in avahi daemon
+
+set `disable-user-service-publishing=no` in `/etc/avahi/avahi-daemon.conf`
-### Enable user-service-publishing in avahi daemon
-Set disable-user-service-publishing=no in /etc/avahi/avahi-daemon.conf
+- restart avahi daemon
-#### restart avahi
```
sudo service avahi-daemon restart
```
-# Control device with the cloud
+## Provisioning
-### Generate registration ticket
-- Go to [OAuth 2.0 Playground](https://developers.google.com/oauthplayground/)
-- "Step 1": Paste https://www.googleapis.com/auth/clouddevices and click to "Authorize APIs"
-- "Step 2": Click "Exchange authorization code for tokens"
-- "Step 3": Fill the form:
- * HTTP Method: POST
- * Request URI: https://www.googleapis.com/weave/v1/registrationTickets
- * Enter request body: ```{"userEmail": "me"}```
- * Click "Send the request", a ticket id will be returned in
+### Generate registration tickets
+- go to the [OAuth 2.0 Playground](https://developers.google.com/oauthplayground/)
+ - `Step 1`: enter the Weave API scope `https://www.googleapis.com/auth/weave.app` and click to `Authorize APIs`
+ - `Step 2`: click `Exchange authorization code for tokens`
+ - `Step 3`:
+ - set `HTTP Method`: `POST`
+ - set `Request URI`: `https://www.googleapis.com/weave/v1/registrationTickets`
+ - click `Enter request body`: `{"userEmail": "me"}`
+ - click `Send the request`
+ - The `Response` contains a new `registrationTicket` resource.
```
- {
- "userEmail": "user@google.com",
- "kind": "weave#registrationTicket",
- "expirationTimeMs": "1443204934855",
- "deviceId": "0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d",
- "creationTimeMs": "1443204694855",
- "id": "93019287-6b26-04a0-22ee-d55ad23a4226"
- }
+{
+ "userEmail": "user@google.com",
+ "kind": "weave#registrationTicket",
+ "expirationTimeMs": "1443204934855",
+ "deviceId": "0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d",
+ "creationTimeMs": "1443204694855",
+ "id": "93019287-6b26-04a0-22ee-d55ad23a4226"
+}
```
-- Note: the ticket "id" is not used within 240 sec, it will be expired.
+- Note: the ticket expires after a few minutes
-### Register device to cloud
-
-- Copy the ticket "id" generated above: ```93019287-6b26-04a0-22ee-d55ad23a4226```
-- Go to terminal, register and start the daemon with
-
-```
- sudo out/Debug/weave_daemon_sample --registration_ticket=93019287-6b26-04a0-22ee-d55ad23a4226
-```
+### Provision the device
-- See something like:
+- start the daemon with the `registrationTicket` id.
```
- Publishing service
- Saving settings to /var/lib/weave/weave_settings_[XXXXX]_config.json
+sudo out/Debug/weave_daemon_sample --registration_ticket=93019287-6b26-04a0-22ee-d55ad23a4226
```
-- Note: in second and future runs, --registration_ticket options is not necessary anymore
-- Get your device id with
+- the daemon outputs the path to its configuration file and its deviceId
```
- sudo grep "cloud_id" /var/lib/weave/weave_settings_[XXXXX]_config.json
+Saving settings to /var/lib/weave/weave_settings_XXXXX_config.json
+Device registered: 0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d
```
-- See a field called cloud_id like:
+- the device id matches the `cloud_id` in the configuration
```
- ...
- "cloud_id": 0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d
- ...
+$ sudo grep "cloud_id" /var/lib/weave/weave_settings_[XXXXX]_config.json
+ "cloud_id": 0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d
```
-- Use this cloud_id for future communication with your device as its deviceId.
-It does not expire.
-- Verify device is up with Weave Device Managers on
-[Android](https://play.google.com/apps/testing/com.google.android.apps.weave.management),
-[Chrome](https://chrome.google.com/webstore/detail/weave-device-manager/pcdgflbjckpjmlofgopidgdfonmnodfm)
-or [Weave Developpers Console](https://weave.google.com/console/), where you
-see this id listed right below the device name in device details section.
-
-### Send Command to the Daemon
-
-- Go to [OAuth 2.0 Playground](https://developers.google.com/oauthplayground/)
-- "Step 1": Paste https://www.googleapis.com/auth/clouddevices and click to "Authorize APIs"
-- "Step 2": Click "Exchange authorization code for tokens"
-- "Step 3": Fill the form:
- * HTTP Method: POST
- * Request URI: https://www.googleapis.com/weave/v1/commands
- * Enter request body:
+- verify that that the device is online in the
+ [Weave Developers Console](https://weave.google.com/console/),
+ the [Weave Android app](https://play.google.com/apps/testing/com.google.android.apps.weave.management)
+ or
+ the [Weave Chrome app](https://chrome.google.com/webstore/detail/weave-device-manager/pcdgflbjckpjmlofgopidgdfonmnodfm).
-```
- {
- "deviceId": "0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d",
- "name": "_sample.hello",
- "component": "sample",
- "parameters": { "name": "cloud user" }
- }
-
-```
+### Send Commands
-- "Send the request", you command will be "queued" as its "state"
-- Verify the command execution observing daemon console logs
-- Verify the command usign [Weave Developpers Console](https://weave.google.com/console/)
-- Verify the command history with [OAuth 2.0 Playground](https://developers.google.com/oauthplayground/)
-- "Step 1": Paste https://www.googleapis.com/auth/clouddevices and click to "Authorize APIs"
-- "Step 2": Click "Exchange authorization code for tokens"
-- "Step 3": Fill the form:
- * HTTP Method: GET
- * Request URI: https://www.googleapis.com/weave/v1/commands?deviceId=0f8a5ff5-1ef0-ec39-f9d8-66d1caeb9e3d
- * Click "Send the request", you get all of the commands executed on your device.
+- go to the [Weave Developers Console](https://weave.google.com/console/),
+- click `Your devices`
+- select your device to show the `Device details` page.
+- in the `Available commands` click `_sample.hello`
+- set command parameters
+- click `RUN COMMAND`
+- verify the command is handled correctly by looking at the daemon logs.
diff --git a/examples/provider/README.md b/examples/provider/README.md
new file mode 100644
index 0000000..607fad4
--- /dev/null
+++ b/examples/provider/README.md
@@ -0,0 +1,34 @@
+# libweave provider examples
+
+This directory contains example implementations of `weave` system providers.
+
+## Providers
+- `avahi_client.cc`
+ - implements: `weave::providerDnsServiceDiscovery`
+ - build-depends: libavahi-client
+ - run-depends: `avahi-daemon`
+- `bluez_client.cc`
+ - not-implemented
+- `curl_http_client.cc`
+ - implements: `weave::provider::HttpClient`
+ - build-depends: libcurl
+- `event_http_server.cc`
+ - implements: `weave::provider::HttpServer`
+ - build-depends: libevhtp
+- `event_network.cc`
+ - implements: `weave::provider::Network`
+ - build-depends: libevent
+- `event_task_runner.cc`
+ - implements: `weave::provider::TaskRunner`
+ - build-depends: libevent
+- `file_config_store.cc`
+ - implements: `weave::provider::ConfigStore`
+- `wifi_manager.cc`
+ - implements: `weave::provider::Wifi`
+ - build-depends: `weave::examples::EventNetworkImpl`
+ - run-depends: `network-manager`, `dnsmasq`, `hostapd`
+
+Note:
+- The example providers are based on `libevent` and should be portable between most GNU/Linux distributions.
+- `weave::examples::WifiImpl` currently shells out to system
+ command tools like `nmcli`, `dnsmasq`, `ifconfig` and `hostpad`.