process pieter's comments
authorMart Lubbers <mart@martlubbers.net>
Wed, 14 Jun 2017 07:23:34 +0000 (09:23 +0200)
committerMart Lubbers <mart@martlubbers.net>
Wed, 14 Jun 2017 07:23:34 +0000 (09:23 +0200)
fig/fig-system.dot
results.arch.tex

index 599e027..e9fd960 100644 (file)
@@ -1,20 +1,57 @@
 digraph {
-       {       rank=same;
-               task1 [label=<device<SUB>1</SUB>>];
-               task2 [label=<device<SUB>2</SUB>>];
-               taskp [label=<device<SUB>...</SUB>>];
-               taskn [label=<device<SUB>n</SUB>>];
-       }
-       {       rank=same;
+       compound=true;
+       subgraph cluster0 {
+               {rank=same;
+               t11 [label=<task<SUB>1</SUB>>];
+               t12 [label=<task<SUB>2</SUB>>];
+               }
+               {rank=same;
+                       s11 [label=<sds<SUB>1</SUB>>];
+                       s12 [label=<sds<SUB>2</SUB>>];
+               }
+               s11 -> t11 [style=invis];
+               s12 -> t12 [style=invis];
+               t11 -> dev1 [style=invis];
+               t12 -> dev1 [style=invis];
+
                dev1 [label=<device<SUB>1</SUB>>];
+       }
+
+       subgraph cluster1 {
+               {rank=same;
+                       t21 [label=<task<SUB>1</SUB>>];
+                       t22 [label=<task<SUB>2</SUB>>];
+               }
+               {rank=same;
+                       s21 [label=<sds<SUB>1</SUB>>];
+                       s22 [label=<sds<SUB>2</SUB>>];
+               }
+               s11 -> t11 [style=invis];
+               s12 -> t12 [style=invis];
+               t11 -> dev1 [style=invis];
+               t12 -> dev1 [style=invis];
+
                dev2 [label=<device<SUB>2</SUB>>];
-               devp [label=<device<SUB>...</SUB>>];
-               devn [label=<device<SUB>n</SUB>>];
        }
+       
+
+       {rank=same;
+               buffer1 [label=<buffer<SUB>1</SUB>>,shape=cylinder];
+               buffer2 [label=<buffer<SUB>2</SUB>>,shape=cylinder];
+       }
+       dev1 -> buffer1 [ltail=cluster0,label="WiFi"];
+       dev2 -> buffer2 [ltail=cluster1,label="Serial"];
+       buffer1 -> dev1 [lhead=cluster0];
+       buffer2 -> dev2 [lhead=cluster1];
+
        server [label=<Shared [MTaskDevice]>];
+       buffer1 -> server;
+       server -> buffer1;
+       buffer2 -> server;
+       server -> buffer2;
+
+       server -> itasks;
+       itasks -> server;
 
-       dev1 -> server;
-       dev2 -> server;
-       devp -> server [style=invis];
-       devn -> server;
+       itasks [label="iTasks"];
 }
index 2dee232..af7b57d 100644 (file)
@@ -1,23 +1,38 @@
-\section{Overview}
+\section{Overview \& Terminology}
 The goal of the architecture is to facilitate an ecosystem in which an
 \gls{iTasks}-system can add, change and remove devices at runtime. Moreover,
 the \gls{iTasks}-system can send \glspl{mTask}, compiled at runtime to
 bytecode, to the device. The device runs an interpreter which can execute the
 \gls{Task}'s bytecode. Devices are persistent during reboots of the
 \gls{iTasks}-system. The methods of interacting with \glspl{mTask} is analogous
-to interacting with \gls{iTasks}-\glspl{Task}.
+to interacting with \gls{iTasks}-\glspl{Task} and programmers can access the
+\glspl{SDS} made for a device in the same way as a regular \glspl{SDS}. The
+following terms will be used throughout the architecture description.
 
-An overview of the architecture is visible in Figure~\ref{fig:system}.
+\begin{itemize}
+       \item Device, Client
 
-\begin{figure}[H]
-       \centering
-       \includegraphics[width=\linewidth]{system}
-       \caption{Overview of the architecture}\label{fig:system}
-\end{figure}
+               This is the actual device connected to the system. This can be a real
+               device such as a microcontroller but also just a program on the same
+               machine as the server.
+       \item Server, \gls{iTasks}-System
+
+               The actual executable serving the \gls{iTasks} interfaces. The system
+               will contain \glspl{Task} taking care of the communication with the
+               clients.
+       \item System
+
+               The complete ecosystem, thus containing both the server and client
+               programs.
+       \item Engine
+
+               The runtime system of the client. This system handles the communication
+               with the server and interprets the \glspl{Task}.
+\end{itemize}
 
 
 \section{Devices}
-The client code for the devices is compiled from one codebase. For a device to
+The engine for the devices is compiled from one codebase. For a device to
 be eligible for \glspl{mTask}, it must be able to compile the shared codebase
 and implement (part of) the device specific interface. The shared codebase only
 uses standard \gls{C} and no special libraries or tricks are used. Therefore
@@ -50,13 +65,14 @@ the device software.
 \end{itemize}
 
 \section{Specification}
-Devices are stored in a record type and all devices in the system are stored in
-a \gls{SDS} containing all devices. From the macro settings in the interface
-file, a profile is created for the device that describes the specification. When
-a connection between the server and a client is established the server will
-send a request for specification. The client will serialize his specification
-and send it to the server so that the server knows what the client is capable
-of. The exact specification is listed in Listing~\ref{lst:devicespec}
+The servers stores a description for every device available in a record type
+which are stored in a \gls{SDS}. From the macro settings in
+the interface file, a profile is created for the device that describes the
+specification. When a connection between the server and a client is established
+the server will send a request for specification. The client will serialize his
+specification and send it to the server so that the server knows what the
+client is capable of. The exact specification is shown in
+Listing~\ref{lst:devicespec}
 
 \begin{lstlisting}[label={lst:devicespec},
        caption={Device specification for \glspl{mTask}}]
@@ -70,27 +86,28 @@ of. The exact specification is listed in Listing~\ref{lst:devicespec}
 
 \section{Device Storage}
 All devices available in the system are stored in a big \gls{SDS} that contains
-a list of \CI{MTaskDevice}s. The exact specification is listed in
+a list of \CI{MTaskDevice}s. The exact specification is defined as in
 Listing~\ref{lst:mtaskdevice} with the accompanying classes and types.
 
 The \CI{deviceResource} component of the record must implement the
 \CI{MTaskDuplex} interface that provides a function that launches a task used
 for synchronizing the channels.  The \CI{deviceTask} stores the \gls{Task}-id
 for this \gls{Task} when active so that it can be checked upon. This top-level
-task has the duty to report set the \CI{deviceError} field whenever an error
-occurs. All communication goes via these channels. If the system wants to send
-a message to the device it just puts it in the channels. Messages sent from the
-client to the server are also placed in there. In the case of the \gls{TCP}
-device type the \gls{Task} is just a simple wrapper around the existing
-\CI{tcpconnect} function in \gls{iTasks}. In case of the serial device type it
-uses the newly developed serial port library of \gls{Clean}\footnote{\url{%
+task has the duty to report thrown exceptions and occuring errors by setting
+the \CI{deviceError} field.  All communication goes via these channels. If the
+system wants to send a message to the device it just puts it in the channels.
+Messages sent from the client to the server are also placed in there. In the
+case of the \gls{TCP} device type the \gls{Task} is just a simple wrapper
+around the existing \CI{tcpconnect} function in \gls{iTasks}. In case of a
+device connected by a serial connection it uses the newly developed serial port
+library of \gls{Clean}\footnote{\url{%
 https://gitlab.science.ru.nl/mlubbers/CleanSerial}}.
 
 Besides all the communication information, the record also keeps track of the
 \glspl{Task} currently on the device, the compiler state (see
-Section~\ref{sec:compiler}) and the according \glspl{SDS}. Finally it stores
-the specification of the device that is received when connecting.  All of this
-is listed in Listing~\ref{lst:mtaskdevice}. The definitions of the message
+Section~\ref{sec:compiler}) and the according \glspl{SDS}. Finally, it stores
+the specification of the device that is received when connecting. All of this
+is given in Listing~\ref{lst:mtaskdevice}. The definitions of the message
 format are explained in the following section.
 
 \begin{lstlisting}[caption={Device type},label={lst:mtaskdevice}]
@@ -120,19 +137,26 @@ class MTaskDuplex a where
 \end{lstlisting}
 
 \section{Communication}
-All \gls{mTask} messages are encoded following the specification given in
-Appendix~\ref{app:communication-protocol}. Available messages are:
-\begin{lstlisting}[caption={Available messages}]
+The communication from the server to the client and vice versa is just a
+character stream containing encoded \gls{mTask} messages. The specific encoding
+is visible in Appendix~\ref{app:communication-protocol}. The type holding the
+messages in Listing~\ref{lst:avmsg}. Detailed explaination about the message
+types will be given in the following subsections.
+
+\begin{lstlisting}[label={lst:avmsg},caption={Available messages}]
+:: MTaskId :== Int
+:: MSDSId :== Int
+:: MTaskFreeBytes :== Int
 :: MTaskMSGRecv
-       = MTTaskAck Int Int           | MTTaskDelAck Int
-       | MTSDSAck Int                | MTSDSDelAck Int
-       | MTPub Int BCValue           | MTMessage String
-       | MTDevSpec MTaskDeviceSpec   | MTEmpty
+       = MTTaskAck MTaskId MTaskFreeBytes | MTTaskDelAck MTaskId
+       | MTSDSAck MSDSId                  | MTSDSDelAck MSDSId
+       | MTPub MSDSId BCValue             | MTMessage String
+       | MTDevSpec MTaskDeviceSpec        | MTEmpty
 
 :: MTaskMSGSend
-       = MTTask MTaskInterval String | MTTaskDel Int
-       | MTShutdown                  | MTSds Int BCValue
-       | MTUpd Int BCValue           | MTSpec
+       = MTTask MTaskInterval String | MTTaskDel MTaskId
+       | MTShutdown                  | MTSds MSDSId BCValue
+       | MTUpd MSDSId BCValue        | MTSpec
 
 :: MTaskInterval = OneShot | OnInterval Int | OnInterrupt Int
 \end{lstlisting}
@@ -205,19 +229,19 @@ details of the compilation process are given in Section~\ref{sec:compiler}.
 The new shares that were made during compilation are added to the deviceshares
 that were made during the compilation are merged with the existing shares on
 the device. Furthermore the messages are placed in the channel share of the
-device. This will result in sending the actual \gls{SDS} and \gls{Task}
-specifications to the device. A \gls{Task} record is created with the
-identifier $-1$ to denote a \gls{Task} not yet acknowledged. Finally the device
-itself is updated with the new state and with the new \gls{Task}. When the
-device returns an acknowledgement the \gls{Task} is updated accordingly.
+device. This will result in sending the actual \gls{SDS} specification and
+\gls{Task} specifications to the device. A \gls{Task} record is created with
+the identifier $-1$ to denote a \gls{Task} not yet acknowledged. Finally the
+device itself is updated with the new state and with the new \gls{Task}. When
+the device returns an acknowledgement the \gls{Task} is updated accordingly.
 
 \begin{lstlisting}[label={lst:sendtask},%
        caption={Sending a \gls{Task} to a device}]
 makeTask :: String Int -> Task MTaskTask
-makeTask name ident = get currentDateTime @ \dt->{MTaskTask | name=name,ident=ident,dateAdded=dt}
+makeTask name ident = get currentDateTime @ \dt->{MTaskTask | name=name, ident=ident, dateAdded=dt}
 
 makeShare :: String Int BCValue -> MTaskShare
-makeShare withTask identifier value = {MTaskShare |withTask=[withTask], identifier=identifier,value=value}
+makeShare withTask identifier value = {MTaskShare | withTask=[withTask], identifier=identifier, value=value}
 
 sendTaskToDevice :: String (Main (ByteCode a Stmt)) (MTaskDevice, MTaskInterval) -> Task [MTaskDevice]
 sendTaskToDevice wta mTask (device, timeout)