summary
[phd-thesis.git] / back / summary.tex
1 \documentclass[../thesis.tex]{subfiles}
2
3 \input{subfilepreamble}
4
5 \begin{document}
6 \input{subfileprefixsmall}
7 \ifSubfilesClassLoaded{\chapter*{Summary}}{\chapter{Summary}}%
8 \label{chp:summary}%
9 \glsresetall%
10 Programming \gls{IOT} systems is complex since they are dynamic, interactive, distributed, collaborative, multi-tiered, and multitasking in nature.
11 The complexity is increased further by semantic friction that arises through different hardware and software characteristics between tiers.
12 Many computers that operate in \gls{IOT} systems are \emph{edge devices} that interact with the environment using sensors and actuators.
13 Edge devices often use low-cost microcontrollers designed for embedded applications.
14 They have little memory, unhurried processors, and are slow in communication but are also small and energy efficient.
15 %Hence they require additional care.
16
17 A solution is found in \gls{TOP}.
18 In \gls{TOP}, the main building blocks are tasks, an abstract representation of work.
19 During execution, the current value of the task is observable, and other tasks can act upon it.
20 Collaboration patterns can be modelled by combining and transforming tasks into compound tasks.
21 From this high-level declarative description of the work, a ready-for-work tierless application is generated that guides all operators in doing the work.
22 An example of a \gls{TOP} system is \gls{ITASK}, a language which describes interactive web applications.
23 Programming edge devices benefits from \gls{TOP} as well.
24 However, it is not straightforward to run \gls{TOP} systems on edge devices.
25
26 This dissertation demonstrates how to include edge devices in \gls{TOP} systems using \glspl{DSL}.
27 With these techniques, all tiers and their interoperation of an \gls{IOT} system is specified in a single high-level source, language, paradigm, high abstraction level, and type system.
28 First, I present advanced \gls{DSL} embedding techniques.
29 Then \gls{MTASK} is shown, a \gls{TOP} \gls{DSL} for \gls{IOT} edge devices, embedded in \gls{ITASK}.
30 Tasks are constructed and compiled at run time in order to allow tasks to be tailored to the current work requirements.
31 The task is then sent to the device for interpretation.
32 For a device to be used in an \gls{MTASK} system, it is programmed once with a lightweight domain-specific \gls{OS}.
33 This \gls{OS} executes tasks in an energy-efficient way and automates all communications and data sharing.
34 All aspects of the \gls{MTASK} system are shown: example applications, language design, implementation details, integration with \gls{ITASK}, and green computing facilities such as automatic sleeping.
35
36 Finally, tierless programming is compared to traditional tiered programming.
37 It demonstrates that when using tierless programming frameworks, the size of the code and the number of required programming languages and paradigms is reduced significantly.
38 Furthermore, tierless programming reduces problems such semantic friction; maintainability and robustness issues; and interoperation safety.
39 %This is a summary of 350--400 words.
40 \end{document}