fcd11a4b1aa166977b405576c386290e34810fe1
[phd-thesis.git] / top / finale.tex
1 \documentclass[../thesis.tex]{subfiles}
2
3 \input{subfilepreamble}
4
5 \begin{document}
6 \input{subfileprefix}
7 \chapter{Finale}%
8 \label{chp:finale}
9 \begin{chapterabstract}
10 This chapter wraps up the monograph by:
11 \begin{itemize}
12 \item providing a conclusion;
13 \item an overview of the related work;
14 \item and giving a history of the \gls{MTASK} system.
15 \end{itemize}
16 \end{chapterabstract}
17
18 \section{Finale}
19 \todo[inline]{Conclusion}
20
21 \section{Related work}
22 The novelties of the \gls{MTASK} system can be compared to existing systems in several categories.
23 It is an interpreted (\cref{sec:related_int}) \gls{TOP} (\cref{sec:related_top}) \gls{DSL} (\cref{sec:related_dsl}) that may seem similar at first glance to \gls{FRP} (\cref{sec:related_frp}), it is implemented in a functional language (\cref{sec:related_fp}) and due to the execution semantics, multitasking is automatically supported (\cref{sec:related_multi}).
24 \todo{uit\-brei\-den waar mo\-ge\-lijk}
25
26 \subsection{Interpretation}\label{sec:related_int}
27 There are a myriad of interpreted programming languages available for some of the bigger devices.
28 For example, for the popular ESP8266 chip there are ports of \gls{MICROPYTHON}, LUA, Basic, JavaScript and Lisp.
29 All of these languages, except the Lisp dialect uLisp (see \cref{sec:related_fp}), are imperative and do not support multithreading out of the box.
30 They lay pretty hefty constraints on the memory and as a result do not work on smaller microcontrollers.
31 A interpretation solution for the tiniest devices is Firmata, a protocol for remotely controlling the microcontroller and using a server as the interpreter host \citep{steiner_firmata:_2009}.
32 \citet{grebe_haskino:_2016} wrapped this in a remote monad for integration with \gls{HASKELL} that allowed imperative code to be interpreted on the microprocessors.
33 Later this system was extended to support multithreading as well, stepping away from Firmata as the basis and using their own \gls{RTS} \citep{grebe_threading_2019}.
34 It differs from our approach because continuation points need to be defined by hand there is no automatic safe data communication.
35
36 \subsubsection{\texorpdfstring{\Glsxtrlongpl{DSL}}{DSLs} for microcontrollers}\label{sec:related_dsl}
37 Many \glspl{DSL} provide higher-level programming abstractions for microcontrollers, for example providing strong typing or memory safety.
38 For example Copilot \citep{hess_arduino-copilot_2020} and Ivory \citep{elliott_guilt_2015} are imperative \glspl{DSL} embedded in a functional language that compile to \ccpp{}.
39
40 \subsection{\texorpdfstring{\Glsxtrlong{FP}}{Functional programming}}\label{sec:related_fp}
41 \Citet{haenisch_case_2016} showed that there are major benefits to using functional languages for \gls{IOT} applications.
42 They showed that using function languages increased the security and maintainability of the applications.
43 Traditional implementations of general purpose functional languages have high memory requirements rendering them unusable for tiny computers.
44 There have been many efforts to create a general purpose functional language that does fit in small memory environments, albeit with some concessions.
45 For example, there has been a history of creating tiny Scheme implementations for specific microcontrollers.
46 It started with BIT \citep{dube_bit:_2000} that only required \qty{64}{\kibi\byte} of memory, followed by {PICBIT} \citep{feeley_picbit:_2003} and {PICOBIT} \citep{st-amour_picobit:_2009} that lowered the memory requirements even more.
47 More recently, \citep{suchocki_microscheme:_2015} created Microscheme, a functional language targeting \gls{ARDUINO} compatible microcontrollers.
48 The {*BIT} languages all compile to assembly while Microscheme compiles to \gls{CPP}, heavily supported by \gls{CPP} lambdas available even on \gls{ARDUINO} AVR targets.
49 An interpreted Lisp implementation called uLisp also exists that runs on microcontrollers with as small as the \gls{ARDUINO} {UNO} \citep{johnson-davies_lisp_2020}.
50
51 \subsection{\texorpdfstring{\Glsxtrlong{FRP}}{Functional reactive programming}}\label{sec:related_frp}
52 The \gls{TOP} paradigm is often compared to \gls{FRP} and while they appear to be similar---they both process events---, in fact they are very different.
53 \Gls{FRP} was introduced by \citet{elliott_functional_1997}.
54 The paradigm strives to make modelling systems safer, more efficient, composable.
55 The core concepts are behaviours and events.
56 A behaviour is a value that varies over time.
57 Events are happenings in the real world and can trigger behaviours.
58 Events and behaviours may be combined using combinators.
59 \Gls{TOP} allows for more complex collaboration patterns than \gls{FRP} \citep{wang_maintaining_2018}, and in consequence is unable to provide the strong guarantees on memory usage available in a restricted variant of \gls{FRP} such as arrowized \gls{FRP} \citep{nilsson_functional_2002}.
60
61 The way \gls{FRP}, and for that matter \gls{TOP}, systems are programmed stays close to the design when the domain matches suits the paradigm.
62 The \gls{IOT} domain seems to suit this style of programming very well in just the device layer\footnote{While a bit out of scope, it deserves mention that for \gls{SN}, \gls{FRP} and stream based approaches are popular as well \citep{sugihara_programming_2008}.} but also for entire \gls{IOT} systems.
63
64 For example, Potato is an \gls{FRP} language for building entire \gls{IOT} systems using powerful devices such as the Raspberry Pi leveraging the Erlang \gls{VM} \citep{troyer_building_2018}.
65 It requires client devices to be able to run the Erlang \gls{VM} which makes it unsuitable for low memory environments.
66
67 The emfrp language compiles a \gls{FRP} specification for a microcontroller to \gls{C} code \citep{sawada_emfrp:_2016}.
68 The \gls{IO} part, the bodies of some functions, still need to be implemented.
69 These \gls{IO} functions can then be used as signals and combined as in any \gls{FRP} language.
70 Due to the compilation to \gls{C} it is possible to run emfrp programs on tiny computers.
71 However, the tasks are not interpreted and there is no communication with a server.
72
73 Other examples are mfrp \citep{sawada_emfrp:_2016}, CFRP \citep{suzuki_cfrp_2017}, XFRP \citep{10.1145/3281366.3281370}, Juniper \citep{helbling_juniper:_2016}, Hailstorm \citep{sarkar_hailstorm_2020}, Haski \citep{valliappan_towards_2020}, arduino-copilot~\cite{hess_arduino-copilot_2020}.
74
75 \subsection{\texorpdfstring{\Glsxtrlong{TOP}}{Task-oriented programming}}\label{sec:related_top}
76 \Gls{TOP} as a paradigm with has been proven to be effective for implementing distributed, multi-user applications in many domains.
77 Examples are conference management \citep{plasmeijer_conference_2006}, coastal protection \citep{lijnse_capturing_2011}, incident coordination \citep{lijnse_incidone:_2012}, crisis management \citep{jansen_towards_2010} and telemedicine \citep{van_der_heijden_managing_2011}.
78 In general, \gls{TOP} results in a higher maintainability, a high separation of concerns and more effective handling of interruptions of workflow.
79 \Gls{IOT} applications contain a distributed and multi-user component, but the software on the device is mostly follows multiple loosely dependent workflows.
80 The only other \gls{TOP} language for embedded systems is $\mu$Tasks \citep{piers_task-oriented_2016}.
81 It is a non-distributed \gls{TOP} \gls{EDSL} hosted in \gls{HASKELL} designed for embedded systems such as payment terminals.
82 They showed that applications tend to be able to cope well with interruptions and be more maintainable.
83 However, the hardware requirements for running the standard \gls{HASKELL} system are high.
84
85 \subsection{Multi tasking}\label{sec:related_multi}
86
87 \section{History of \texorpdfstring{\gls{MTASK}}{mTask}}
88 The development of \gls{MTASK} or its predecessors has been going on for almost seven years now though it really set off during my master's thesis.
89 This section provides an exhaustive overview of the work on \gls{MTASK} and its predecessors.
90
91 \subsection*{Generating \texorpdfstring{\ccpp{}}{\ccpp{}} code}
92 A first throw at a class-based shallowly \gls{EDSL} for microcontrollers was made by \citet{plasmeijer_shallow_2016}.
93 The language was called \gls{ARDSL} and offered a type safe interface to \gls{ARDUINO} \gls{CPP} dialect.
94 A \gls{CPP} code generation backend was available together with an \gls{ITASK} simulation backend.
95 There was no support for tasks nor even functions.
96 Some time later in the 2015 \gls{CEFP} summer school, an extended version was created that allowed the creation of imperative tasks, local \glspl{SDS} and the usage of functions \citep{koopman_type-safe_2019}.
97 The name then changed from \gls{ARDSL} to \gls{MTASK}.
98
99 \subsection*{Integration with \texorpdfstring{\gls{ITASK}}{iTask}}
100 \Citet{lubbers_task_2017} extended this in his Master's Thesis by adding integration with \gls{ITASK} and a bytecode compiler to the language.
101 \Gls{SDS} in \gls{MTASK} could be accessed on the \gls{ITASK} server.
102 In this way, entire \gls{IOT} systems could be programmed from a single source.
103 However, this version used a simplified version of \gls{MTASK} without functions.
104 This was later improved upon by creating a simplified interface where \glspl{SDS} from \gls{ITASK} could be used in \gls{MTASK} and the other way around \citep{lubbers_task_2018}.
105 It was shown by \citet{amazonas_cabral_de_andrade_developing_2018} that it was possible to build real-life \gls{IOT} systems with this integration.
106 Moreover, a course on the \gls{MTASK} simulator was provided at the 2018 \gls{CEFP}\slash\gls{3COWS} winter school in Ko\v{s}ice, Slovakia \citep{koopman_simulation_2018}.
107
108 \subsection*{Transition to \texorpdfstring{\gls{TOP}}{TOP}}
109 The \gls{MTASK} language as it is now was introduced in 2018 \citep{koopman_task-based_2018}.
110 This paper updated the language to support functions, simple tasks, and \glspl{SDS} but still compiled to \gls{ARDUINO} \gls{CPP} code.
111 Later the byte code compiler and \gls{ITASK} integration was added to the language \citep{lubbers_interpreting_2019}.
112 Moreover, it was shown that it is very intuitive to write microcontroller applications in a \gls{TOP} language \citep{lubbers_multitasking_2019}.
113 One reason for this is that a lot of design patterns that are difficult using standard means are for free in \gls{TOP} (e.g.\ multithreading).
114 In 2019, the \gls{CEFP}\slash\gls{3COWS} summer school in Budapest, Hungary hosted a course on developing \gls{IOT} applications with \gls{MTASK} as well \citep{lubbers_writing_2019}.
115
116 \subsection*{\texorpdfstring{\Glsxtrshort{TOP}}{TOP}}
117 In 2022, the SusTrainable summer school in Rijeka, Croatia hosted a course on developing greener \gls{IOT} applications using \gls{MTASK} as well \citep{lubbers_green_2022}.
118 Several students worked on extending \gls{MTASK} with many useful features:
119 \Citet{van_der_veen_mutable_2020} did preliminary work on a green computing analysis, built a simulator, and explored the possibilities for adding bounded datatypes; \citet{de_boer_secure_2020} investigated the possibilities for secure communication channels; \citeauthor{crooijmans_reducing_2021} \citeyearpar{crooijmans_reducing_2021,crooijmans_reducing_2022} added abstractions for low-power operation to \gls{MTASK} such as hardware interrupts and power efficient scheduling; and \citet{antonova_mtask_2022} defined a preliminary formal semantics for a subset of \gls{MTASK}.
120
121 \subsection*{\texorpdfstring{\gls{MTASK}}{mTask} in practise}
122 Funded by the Radboud-Glasgow Collaboration Fund, collaborative work was executed with Phil Trinder, Jeremy Singer, and Adrian Ravi Kishore Ramsingh.
123 An existing smart campus application was developed using \gls{MTASK} and quantitively and qualitatively compared to the original application that was developed using a traditional \gls{IOT} stack \citep{lubbers_tiered_2020}.
124 This research was later extended to include a four-way comparison: \gls{PYTHON}, \gls{MICROPYTHON}, \gls{ITASK}, and \gls{MTASK} \citep{lubbers_could_2022}.
125 Currently, power efficiency behaviour of traditional versus \gls{TOP} \gls{IOT} stacks is being compared as well adding a \gls{FREERTOS} implementation to the mix as well.
126
127 \section{Future work}
128 Plans for extensions and improvements include exploring integrating \gls{TINYML} into \gls{MTASK}; adding intermittent computing support to \gls{MTASK}; and extending the formal semantics to cover the entirety of the language.
129 In 2023, the SusTrainable summer school in Coimbra, Portugal will host a course on \gls{MTASK} as well.
130
131 \input{subfilepostamble}
132 \end{document}