Sha256: ec80f1e8e15e06a2e4602c5a9a4fb1379b7bee6525213b11c89496c71153cefe

Contents?: true

Size: 1.94 KB

Versions: 8

Compression:

Stored size: 1.94 KB

Contents

# Hoosegow dispatch

Calling a method on an inmate involves passing information through several layers. The participants in the flow are:

* **App** - your app's code, outside of the container.
* **Hoosegow** - an instance of the `Hoosegow` class, created outside the container.
* **Docker** - the docker daemon.
* **`bin/hoosegow`** - the entry point in the docker container.
* **Inmate** - an instance of the `Hoosegow` class, inside the container, that has included `Hoosegow::Inmate` (your sandboxed code).

![](dispatch.png)

## Interfaces

### Hoosegow (outside the container)

The outer instance of `Hoosegow` receives a normal call from the application.

It encodes the method name and arguments and provides that to an attach call to Docker.

It reads the Docker response as it comes in. It demultiplexes the docker output into `STDERR` and `STDOUT`. `STDOUT` is further decoded into the actual `STDOUT` from the Inmate, `yield` calls, and the method result.

### Docker

Docker receives an HTTP POST with a body, and returns an HTTP response with a body. The HTTP request body is treated as `STDIN`, and the response body contains `STDOUT` and `STDERR`.

See [documentation for attach](http://docs.docker.io/en/latest/reference/api/docker_remote_api_v1.7/#attach-to-a-container).

### bin/hoosegow

`bin/hoosegow` is started by Docker when the container starts. It is the entry point of the container.

It decodes `STDIN` and calls the requested method on the Inmate.

`STDOUT` is reopened so that we can encode a few things on it:

* normal stdout from the inmate or child processes spawned by the inmate
* data that is `yield`ed
* the return value from the inmate.

`STDERR` is left as-is.

### Inmate

The Inmate is an object that includes the `Hoosegow::Inmate` module.

Input to the Inmate is a method name and arguments.

Output from the Inmate can be spread across several things:

* `STDOUT` and `STDERR` - e.g. puts calls 
* `yield` to a block
* the result of the method

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hoosegow-1.2.7 docs/dispatch.md
hoosegow-1.2.6 docs/dispatch.md
hoosegow-1.2.5 docs/dispatch.md
hoosegow-1.2.4 docs/dispatch.md
hoosegow-1.2.3 docs/dispatch.md
hoosegow-1.2.2 docs/dispatch.md
hoosegow-1.2.1 docs/dispatch.md
hoosegow-1.2.0 docs/dispatch.md