You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The development of process algebras is of considerable interest in the study of distributed and mobile computation. After considering the nature of distributed and mobile systems, we will look at two variants of the \picalc, a modern process algebra given by Milner, that can be used to model such systems. We will then compare the expressive power of these calculi and explore the extent to which they can simulate one another. Particular attention will be paid to the specific constructs wherein the calculi differ and whether and how these constructs represent behaviors found in real distributed and mobile systems.
1
+
\cleardoublepage
2
+
{
3
+
\thispagestyle{empty}
4
+
\begin{center}
5
+
\null\vfil
6
+
\centering {\LARGE\textbf{Abstract}}\\[24pt]
7
+
The development of process algebras is of considerable interest in the study of distributed and mobile computation. After considering the nature of distributed and mobile systems, we will look at two variants of the \picalc, a modern process algebra given by Milner, that can be used to model such systems. We will then compare the expressive power of these calculi and explore the extent to which they can simulate one another. Particular attention will be paid to the specific constructs wherein the calculi differ and whether and how these constructs represent behaviors found in real distributed and mobile systems. \end{center}
Rather than allowing an operation to happen after a sent value has been received by some other process, a sending process simply ends.
5
5
In \refex{exsynchronous} we gave a straightforward method of simulating synchronous sending in the asynchronous \picalc\ using acknowledgement channels.
6
6
Also absent in our calculus was the non-deterministic choice operator, also known as the summation operator.
7
-
We gave a method of simulating this in \refex{exsummation}.
8
7
9
-
We have already had a taste of the expressive power of the synchronous \picalc\ in Chapter \ref{Introduction}'s mobile phone network example. In fact, the original calculus given by Milner, Parrow and Walker was synchronous and included the two operators -- summation and synchronous sending -- that we omitted in our asynchronous \picalc.
8
+
We have already had a taste of the expressive power of the synchronous \picalc\ in Chapter \ref{Introduction}'s mobile phone network example. In fact, the original calculus given by Milner, Parrow and Walker was synchronous and included the two operators --- summation and synchronous sending --- that we omitted in our asynchronous \picalc.
10
9
11
-
Our original calculus featured synchronous receiving, but we now make sending synchronous as well, allowing a process to execute after the output has been consumed by some other receiver.
12
-
Hence, in the synchronous \picalc, processes can be\refmargin{guarded}guarded by both receiving \emph{and} sending.
10
+
Our original calculus featured synchronous receiving, but we now allow synchronous sending as well, enabling a process to continue after its output has been consumed by some receiver.
11
+
Hence, in the synchronous \picalc, processes can be\refmargin{guarded}guarded by both receiving \emph{and} sending.
13
12
14
13
15
14
If we have a group of guarded processes joined by the summation operator, only one of those processes will be `chosen' (non-deterministically)\index{non-determinism} to be executed.
@@ -99,7 +98,7 @@ \section{Syntax and Equivalence}\label{Synchronous picalc}
99
98
P \comp\pstop\ &\ \sequiv\ P && \text{\tiny{(S-COMP-ID)}}\\
As we might expect, it does not differ hugely from computation in the asynchronous calculus.
110
109
In the reduction rules, the only changes are to make room for the summation operator.
111
110
Because only one process gets chosen from a group of summed processes, we need two `matching' sender and receiver terms each running in parallel. This behavior is described by (R-SYNC).
112
-
It expresses the commutation step where the processes have transmitted their value. Hence, we perform the appropriate substitution to the receiving process, run the guarded processes and terminate all the other terms in the sum.
111
+
It expresses the communication step where the processes have transmitted their value. Hence, we perform the appropriate substitution to the receiving process, run the guarded processes and terminate all the other terms in the sum.
113
112
\begin{insettable}
114
113
\begin{center}\begin{tabular}{rll}
115
114
$\ssend{c}{\tuple{V}} P + Q \comp\receive{c}{\tuple{X}}R + B$\ &\ $\pred\ P \comp R\subst{\tuple{V}}{\tuple{X}}$ & \tiny{(R-SYNC)}\\
@@ -147,25 +146,9 @@ \section{Semantics}
147
146
\[
148
147
\send{c}{\tuple{V}} \comp\receive{c}{\tuple{X}}R \pred\ R \subst{\tuple{V}}{\tuple{X}}
149
148
\]
150
-
It should be evident from our presentation of synchronous action rules below that they needn't be shown to be a general version of the asynchronous rules -- they are compatible simply by ignoring the extra rule and by using our encoding of asynchronous sending as $\ssend{n}{\tuple{V}}\pstop$.
149
+
It should be evident from our presentation of synchronous action rules below that they needn't be shown to be a general version of the asynchronous rules --- they are compatible simply by ignoring the extra rule and by using our encoding of asynchronous sending as $\ssend{n}{\tuple{V}}\pstop$.
151
150
\end{example}
152
151
153
-
Neither do the action rules for the synchronous \picalc\ differ significantly from \hyperref[apiactionrules]{those} in the asynchronous version.
154
-
As we would expect, (A-OUT) has been modified to express synchronous sending.
155
-
It now evolves over output to a process $R$ and not simply to the termination process $\pstop$:
156
-
\[
157
-
\ssend{c}{\tuple{V}}R \evolves{\sends{c}{\tuple{V}}} R
158
-
\]
159
-
160
-
We have also added a new rule, (A-SUM). It describes the action of the summation operator much as (A-COMP) describes the action of the composition operator.
(A-SUM) expresses the fact that, when a single guarded process can evolve in one step to a process $P_i'$ due to an action $\pi_i$, then it can also do so as part of a summation.
166
-
Notice that unlike (A-COMP), (A-SUM) does not need to be careful about capturing names.
167
-
Since no other processes are run by the summation, we needn't worry about causing a naming issue when we possibly export terms by running the action $\alpha$.
\caption{\emph{Action rules for the synchronous \picalc}}\label{spiacts}
193
176
\end{center}
194
177
\end{insettable_wide}\index{action}
178
+
Neither do the action rules for the synchronous \picalc\ differ significantly from \hyperref[apiactionrules]{those} in the asynchronous version.
179
+
As we would expect, (A-OUT) has been modified to express synchronous sending.
180
+
It now evolves over output to a process $R$ and not simply to the termination process $\pstop$:
181
+
\[
182
+
\ssend{c}{\tuple{V}}R \evolves{\sends{c}{\tuple{V}}} R
183
+
\]
184
+
185
+
We have also added a new rule, (A-SUM). It describes the action of the summation operator much as (A-COMP) describes the action of the composition operator.
(A-SUM) expresses the fact that, when a single guarded process can evolve in one step to a process $P_i'$ due to an action $\pi_i$, then it can also do so as part of a summation.
191
+
Notice that unlike (A-COMP), (A-SUM) does not need to be careful about capturing names.
192
+
Since no other processes are run by the summation, we needn't worry about causing a naming issue when we possibly export terms by running the action $\alpha$.
Here we see that both processes will agree in this ``election'' --- that is, they output the same value. Note that no substitutions were necessary since $\send{c}{}$ is simply a\refmargin{handshake} handshake signal. Note also that these resulting processes are \emph{not} symmetric: applying the automorphism $\sigma$ to $P_0$ would yield $\send{o}{c_1}$.
221
+
Here we see that both processes will agree in this ``election'' --- that is, they output the same value. Note that no substitutions were necessary since $\send{c}{}$ is simply a\refmargin{handshake} handshake signal. Note also that these resulting processes are \emph{not} symmetric: applying the automorphism $\sigma$ to the residual $\send{o}{c_0}$ of $P_0$ would yield $\send{o}{c_1}$.
224
222
225
223
If, on the other hand, $P_1$ notifies first, then again we apply (R-SYNC) to get
226
224
\[
227
225
\send{o}{c_1} \comp\send{o}{c_1}
228
226
\]
229
227
Again, a leader has been elected.
230
-
Hence, we have given a term that successfully solves the leader election problem for symmetric systems in the special case of a two processes. We will discuss more general leader elections in the next chapter.
228
+
Hence, we have given a term that successfully solves the leader election problem for symmetric systems in the special case of two processes. We will discuss more general leader elections in the next chapter.
If the local lock is acquired but the remote lock isn't, we make sure that the local lock is still available by sending \send{l}{\ptrue} and that the remote lock is \emph{not} made available by sending \send{l}{\pfalse}.
123
123
We also need a recursive call to $q$ to ensure we continue to poll the lock ourselves.
124
-
The fact that the remote lock is not available means another sender has already run (i.e. it was sent \ptrue\ on its acknowledgement channel by some receiver) so we need to make sure \emph{this} sender is sent \pfalse\ on its acknowledgement channel.
124
+
The fact that the remote lock is not available means another sender has already run (i.e., it was sent \ptrue\ on its acknowledgement channel by some receiver) so we need to make sure \emph{this} sender is sent \pfalse\ on its acknowledgement channel.
125
125
126
126
Finally, if we fail to acquire a local lock, we send \pfalse\ to the lock to ensure no one else gets it either, and then we send the acknowledgement channel the special message \pretry\ so that sender still has a chance to run, since the remote lock might still be available.
\end{split}\end{equation*}%note: it was really late when i did this. sorry....
185
185
Because the order of the conditions is also reversed, we've had to interchange the else statements. The case of successfully getting both the remote and local locks is the same as in (l,r). If the process only gets the remote lock it tells the remote sender to keep trying and continues to make the remote lock available. If on the other hand it fails to get the remote lock, it restarts the receiver and makes sure to tell the remote sender its failed.
186
186
187
-
Note that Nestmann's `implementation' of the synchronous \picalc\ does not pay attention to the efficiency questions that would be crucial in a real system. Perhaps its worst property is that in the $n=m$ case there is a possible divergence. If two terms (a sender and a receiver) in the same summation are communicating with one another, our $n=m$ case has them both retry. Thus, they might continue trying forever. Though this represents potentially divergent behavior, it is important to note that this is not the same as a live-lock: the processes will run forever without progressing, but only because they are both in a summation that is unable to progress anyway. However, it still represents a violation of reasonability since it is possible (though unlikely) that the two might continue communicating forever, never allowing for the computation step of sending the leader choice to the output channel $o$\footnote{Though we will not discuss it here, Nestmann \cite{nestm00} does goes to give the same encoding --- using a slightly enhanced target language --- that does not have this divergence problem.}. Hence, while Nestmann's encoding violates both of Palamidessi's criteria to some extent, it nevertheless provides the full behavior of the synchronous in a way that could easily be implemented on a distributed system using only asynchronous primitives.
187
+
Note that Nestmann's `implementation' of the synchronous \picalc\ does not pay attention to the efficiency questions that would be crucial in a real system. Perhaps its worst property is that in the $n=m$ case there is a possible divergence. If two terms (a sender and a receiver) in the same summation are communicating with one another, our $n=m$ case has them both retry. Thus, they might continue trying forever. Though this represents potentially divergent behavior, it is important to note that this is not the same as a live-lock: the processes will run forever without progressing, but only because they are both in a summation that is unable to progress anyway. However, it still represents a violation of reasonability since it is possible (though unlikely) that the two might continue communicating forever, never allowing for the computation step of sending the leader choice to the output channel $o$\footnote{Though we will not discuss it here, Nestmann \cite{nestm00} does give an encoding --- using a slightly enhanced target language --- that does not have this divergence problem.}. Hence, while Nestmann's encoding violates both of Palamidessi's criteria to some extent, it nevertheless provides the full behavior of the synchronous in a way that could easily be implemented on a distributed system using only asynchronous primitives.
Thanks first and foremost go to my advisor, Jim Fix, for his insights, guidance and willingness to explore the many systems and ideas that led the creation of this thesis. None of this could have happened without his help. I also thank my professors and colleagues for their willingness to read versions of this thesis and provide feedback for my ideas. Finally, a huge portion of this thesis relies directly on the work of Robin Milner and many others who have expanded on what he set in motion. To the extent that anything novel is presented in this thesis, it relies heavily on the great minds that have inspired and challenged my thinking of distributed computing.
14
14
15
-
I would also like to thank my friends and family for their continuing support, compassion and understanding. In particular I thank my parents, with whom neither my thesis nor the education proceeding it would have been possible.
15
+
I would also like to thank my friends and family for their continuing support, compassion and understanding. In particular I thank my parents, with whom neither my thesis nor the education preceeding it would have been possible.
0 commit comments