aboutsummaryrefslogtreecommitdiff
path: root/Documentation/basics.md
blob: f18b62aef726f9536a77abaa86a9feb0dd3dfcaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Introduction
The following is a general guide on the usage of flow. If you prefer a complete example, check out the code contained in the flow-samples directory. 

Flow's API follows that of an actor based system, where each actor is assigned specific functions involved in serial communication. The two main actor types are the serial "manager" and serial "operators".

The manager is a singleton actor that is instantiated once per actor system, a reference to it may be obtained with `IO(Serial)`. It is typically used to open serial ports (see following section).

Serial operators are created once per open serial port and serve as an intermediate between client code and native code dealing with serial data transmission and reception. They isolate the user from threading issues and enable the reactive dispatch of incoming data. A serial operator is said to be "associated" to its underlying open serial port.

The messages understood by flow's actors are all contained in the `com.github.jodersky.flow.Serial` object. They are well documented and should serve as the entry point when searching the API documentation.

#Opening a port
A serial port is opened by sending an `Open` message to the serial manager. The response varies on the outcome of opening the underlying serial port.
  1. In case of failure, the serial manager will respond with a `CommandFailed` message to the original sender. The message contains details on the reason to why the opening failed.
  2. In case of success, the sender is notified with an `Opened` message. This message is sent from an operator actor, spawned by the serial manager. It is useful to capture the sender (=operator) of this message as all further communication with the newly opened port must pass through the operator.
  
```scala
val port = "/dev/ttyXXX"
val settings = SerialSettings(
  baud = 115200,
  characterSize = 8,
  twoStopBits = false,
  parity = Parity.None
)

IO(Serial) ! Serial.Open(port, settings)

def receive = {
  case CommandFailed(cmd: Open, reason: AccessDeniedException) =>
    println("you're not allowed to open that port!")
  case CommandFailed(cmd: Open, reason) =>
	println("could not open port for some other reason: " + reason.getMessage)
  case Opened(settings) => {
    val operator = sender
    //do stuff with the operator, e.g. context become opened(op)
  }
}
```
  
  
# Communicating

## Writing data
Writing data is as simple as sending a `Write` message containing data to an operator. The type of data is an instance of `akka.util.ByteString`:
```scala
operator ! Write(data)
```

To receive an acknowledgement when data has been sent (this means queued in the kernel buffer; no guarantees can be made on the actual transmission of the data), the sender may add an additional `ack` parameter to a `Write` message. The `ack` parameter is of type `Int => Serial.Event`, i.e. a function that takes the number of actual bytes written and returns an event.

```scala

case class MyPacketAck(wrote: Int) extends Serial.Event

operator ! Write(data, MyPacketAck(_))
operator ! Write(data, MyPacketAck(_))
operator ! Write(data, n => MyPacketAck(n))

def receive = {
  case MyPacketAck(x) => println("Wrote " + x + " bytes of data")
}

```

## Receiving data
The actor that opened a serial port (refered to as the client), exclusively receives incomming messages from the operator. These messages are in the form of `ByteStrings` and wrapped in a `Received` object.

```scala
def receive = {
  case Received(data) => println("got data: " + data.toString)
}
```


#Closing a port
A port is closed by sending a `Close` message to its operator:
```scala
operator ! Serial.Close
```
The operator will close the underlying serial port and respond with a final `Closed` message before terminating.


# Resources and error handling
The operator has a deathwatch on the client actor that opened the port, this means that if the latter crashes, the operator closes the port and equally terminates, freeing any allocated resources.

The opposite is not true by default, i.e. if the operator crashes (this can happen for example on IO errors) it dies silently and the client is not informed. Therefore, it is recommended that the client keep a deathwatch on the operator.