Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Communicating sequential processes
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Formal model in concurrency theory}} {{distinguish|Constraint satisfaction problem}} In [[computer science]], '''communicating sequential processes''' ('''CSP''') is a [[formal language]] for describing [[pattern]]s of interaction in [[concurrent systems]].<ref name="roscoe">{{cite book |first=A. W. |last=Roscoe |author-link=Bill Roscoe |title=The Theory and Practice of Concurrency |publisher=[[Prentice Hall]] |isbn=978-0-13-674409-2 |date=1997 |url-access=registration |url= http://www.cs.ox.ac.uk/bill.roscoe/publications/68b.pdf}}</ref> It is a member of the family of mathematical theories of concurrency known as process algebras, or [[process calculus|process calculi]], based on [[message passing]] via [[Channel (programming)|channels]]. CSP was highly influential in the design of the [[occam (programming language)|occam]] programming language<ref name="roscoe" /><ref>{{cite book |author=Inmos |author-link=Inmos |url= http://www.wotug.org/occam/documentation/oc21refman.pdf |title=occam 2.1 Reference Manual |publisher=SGS-Thomson Microelectronics Ltd. |date=1995-05-12}}, INMOS document 72 occ 45 03.</ref> and also influenced the design of programming languages such as [[Limbo (programming language)|Limbo]],<ref name="cox">{{cite web |title=Bell Labs and CSP Threads |url= http://swtch.com/~rsc/thread/ |first=Russ |last=Cox |access-date=2010-04-15}}</ref> [[RaftLib]], [[Erlang (programming language)|Erlang]],<ref>{{cite web |title=10 Academic and Historical Questions |url= https://www.erlang.org/faq/academic.html |access-date=2021-11-15}}</ref> [[Go (programming language)|Go]],<ref name="golang">{{cite web |title=FAQ: Why build concurrency on the ideas of CSP? |url= http://golang.org/doc/go_faq.html#csp |work=The Go Programming Language |access-date=2021-10-15}}</ref><ref name="cox"/> [[Crystal (programming language)|Crystal]], and [[Clojure]]'s core.async.<ref name="clojure-core-async">{{cite web |title=Clojure core.async Channels |url= https://clojure.org/news/2013/06/28/clojure-clore-async-channels#_history |first=Rich |last=Hickey |date=2013-06-28 |access-date=2021-10-15}}</ref> CSP was first described by [[Tony Hoare]] in a 1978 article,<ref name="hoare1978">{{cite journal |last=Hoare |first=C. A. R. |author-link=C. A. R. Hoare |title=Communicating sequential processes |journal=[[Communications of the ACM]] |volume=21 |issue=8 |pages=666–677 |date=1978 |doi=10.1145/359576.359585 |s2cid=849342 |doi-access=free}}</ref> and has since evolved substantially.<ref name="25years">{{cite book |last1=Abdallah |first1=Ali E. |last2=Jones |first2=Cliff B. |last3=Sanders |first3=Jeff W. |title=Communicating Sequential Processes: The First 25 Years |series=[[LNCS]] |volume=3525 |publisher=Springer |date=2005 |url= https://www.springer.com/computer/theoretical+computer+science/foundations+of+computations/book/978-3-540-25813-1 |isbn=9783540258131}}</ref> CSP has been practically applied in industry as a tool for [[formal specification|specifying and verifying]] the concurrent aspects of a variety of different systems, such as the T9000 [[Transputer]],<ref name="barrett">{{cite journal |last=Barrett |first=G. |title=Model checking in practice: The T9000 Virtual Channel Processor |journal=IEEE Transactions on Software Engineering |volume=21 |issue=2 |pages=69–78 |date=1995 |doi=10.1109/32.345823}}</ref> as well as a secure [[e-commerce]] system.<ref name="hall">{{cite journal |last1=Hall |first1=A |last2=Chapman |first2=R. |url= http://www.anthonyhall.org/c_by_c_secure_system.pdf |title=Correctness by construction: Developing a commercial secure system |journal=IEEE Software |volume=19 |issue=1 |pages=18–25 |date=2002 |doi=10.1109/52.976937 |citeseerx=10.1.1.16.1811}}</ref> The theory of CSP itself is also still the subject of active research, including work to increase its range of practical applicability (e.g., increasing the scale of the systems that can be tractably analyzed).<ref>{{Cite thesis |last=Creese |first=S. |title=Data Independent Induction: CSP Model Checking of Arbitrary Sized Networks |type=D. Phil. |publisher=[[Oxford University]] |date=2001 |citeseerx=10.1.1.13.7185}}</ref> == History == === Original version === The version of CSP presented in Hoare's original 1978 article was essentially a concurrent programming language rather than a [[process calculus]]. It had a substantially different [[syntax]] than later versions of CSP, did not possess mathematically defined semantics,<ref name="hoare">{{cite book |last=Hoare |first=C. A. R. |author-link=C. A. R. Hoare |title=Communicating Sequential Processes |publisher=Prentice Hall |isbn=978-0-13-153289-2 |date=1985}}</ref> and was unable to represent [[unbounded nondeterminism]].<ref name="clinger1981">{{Cite thesis |first=William |last=Clinger |author-link=William Clinger (computer scientist) |title=Foundations of Actor Semantics |publisher=MIT |type=Mathematics Doctoral Dissertation |date=June 1981 |hdl=1721.1/6935}}</ref> Programs in the original CSP were written as a parallel composition of a fixed number of sequential processes communicating with each other strictly through synchronous message-passing. In contrast to later versions of CSP, each process was assigned an explicit name, and the source or destination of a message was defined by specifying the name of the intended sending or receiving process. For example, the process COPY = *[c:character; west?c → east!c] repeatedly receives a character from the process named <code>west</code> and sends that character to process named <code>east</code>. The parallel composition [west::DISASSEMBLE || X::COPY || east::ASSEMBLE] assigns the names <code>west</code> to the <code>DISASSEMBLE</code> process, <code>X</code> to the <code>COPY</code> process, and <code>east</code> to the <code>ASSEMBLE</code> process, and executes these three processes concurrently.<ref name="hoare1978" /> === Development into process algebra === Following the publication of the original version of CSP, Hoare, Stephen Brookes, and [[Bill Roscoe|A. W. Roscoe]] developed and refined the ''theory'' of CSP into its modern, process algebraic form. The approach taken in developing CSP into a process algebra was influenced by [[Robin Milner]]'s work on the [[Calculus of Communicating Systems]] (CCS) and conversely. The theoretical version of CSP was initially presented in a 1984 article by Brookes, Hoare, and Roscoe,<ref>{{cite journal |first1=Stephen |last1=Brookes |author2-link=C. A. R. Hoare |first2=C. A. R. |last2=Hoare |author3-link=Bill Roscoe |author3-first=A. W. |author3-last=Roscoe |title=A Theory of Communicating Sequential Processes |journal=[[Journal of the ACM]] |volume=31 |issue=3 |pages=560–599 |date=1984 |doi=10.1145/828.833 |s2cid=488666 |doi-access=free}}</ref> and later in Hoare's book ''Communicating Sequential Processes'',<ref name="hoare" /> which was published in 1985. In September 2006, that book was still the [http://citeseer.ist.psu.edu/articles.html third-most cited] [[computer science]] reference of all time according to [[Citeseer]]{{Citation needed|date=November 2018}} (albeit an unreliable source due to the nature of its sampling). The theory of CSP has undergone a few minor changes since the publication of Hoare's book. Most of these changes were motivated by the advent of automated tools for CSP process analysis and verification. Roscoe's ''The Theory and Practice of Concurrency''<ref name="roscoe" /> describes this newer version of CSP. === Applications === An early and important application of CSP was its use for specification and verification of elements of the INMOS T9000 [[Transputer]], a complex superscalar pipelined processor designed to support large-scale multiprocessing. CSP was employed in verifying the correctness of both the processor pipeline and the Virtual Channel Processor, which managed off-chip communications for the processor.<ref name="barrett" /> Industrial application of CSP to software design has usually focused on dependable and safety-critical systems. For example, the Bremen Institute for Safe Systems and [[DaimlerChrysler Aerospace|Daimler-Benz Aerospace]] modeled a fault-management system and avionics interface (consisting of about 23,000 lines of code) intended for use on the International Space Station in CSP, and analyzed the model to confirm that their design was free of [[deadlock (computer science)|deadlock]] and [[livelock]].<ref>{{cite conference |first=B. |last=Buth |author2=M. Kouvaras |author3=J. Peleska |author4=H. Shi |title=Deadlock analysis for a fault-tolerant system |book-title=Proceedings of the 6th International Conference on Algebraic Methodology and Software Technology (AMAST’97) |pages=60–75 |date=December 1997}}</ref><ref>{{cite conference |first=B. |last=Buth |author2=J. Peleska |author3=H. Shi |title=Combining methods for the livelock analysis of a fault-tolerant system |book-title=Proceedings of the 7th International Conference on Algebraic Methodology and Software Technology (AMAST’98) |pages=124–139 |date=January 1999}}</ref> The modeling and analysis process was able to uncover a number of errors that would have been difficult to detect using testing alone. Similarly, [[Praxis High Integrity Systems]] applied CSP modeling and analysis during the development of software (approximately 100,000 lines of code) for a secure smart-card certification authority to verify that their design was secure and free of deadlock. Praxis claims that the system has a much lower defect rate than comparable systems.<ref name="hall" /> Since CSP is well-suited to modeling and analyzing systems that incorporate complex message exchanges, it has also been applied to the verification of communications and security protocols. A prominent example of this sort of application is Lowe's use of CSP and the [[FDR2|FDR refinement-checker]] to discover a previously unknown attack on the [[Needham–Schroeder protocol|Needham–Schroeder public-key authentication protocol]], and then to develop a corrected protocol able to defeat the attack.<ref>{{cite conference |first=G. |last=Lowe |title=Breaking and fixing the Needham–Schroeder public-key protocol using FDR |book-title=Tools and Algorithms for the Construction and Analysis of Systems (TACAS) |pages=147–166 |publisher=Springer-Verlag |date=1996 |url= http://citeseer.ist.psu.edu/lowe96breaking.html}}</ref> == Informal description == As its name suggests, CSP allows the description of systems in terms of component processes that operate independently, and interact with each other solely through [[message passing|message-passing]] communication. However, the ''"Sequential"'' part of the CSP name is now something of a misnomer, since modern CSP allows component processes to be defined both as sequential processes, and as the parallel composition of more primitive processes. The relationships between different processes, and the way each process communicates with its environment, are described using various [[process calculi|process algebraic]] operators. Using this algebraic approach, quite complex process descriptions can be easily constructed from a few primitive elements. === Primitives === CSP provides two classes of primitives in its process algebra: events and primitive processes. ;Events Events represent communications or interactions. They are assumed to be instantaneous, and their communication is all that an external ‘environment’ can know about processes. An event is communicated only if the environment allows it. If a process does offer an event and the environment allows it, then that event ''must'' be communicated. Events may be atomic names (e.g. {{mvar|on}}, {{mvar|off}}), compound names (e.g. {{mvar|valve.open}}, {{mvar|valve.close}}), or input/output events (e.g. {{mvar|mouse?xy}}, {{mvar|screen!bitmap}}). The set of all events is denoted <math>\Sigma</math>.<ref name="ucs">{{cite book |last1=Roscoe |first1=A.W. |date=2010 |title=Understanding Concurrent Systems |series=Texts in Computer Science |doi=10.1007/978-1-84882-258-0 |isbn=978-1-84882-257-3 }}</ref> ;Primitive processes Primitive processes represent fundamental behaviors: examples include <math>\mathrm{STOP}</math> (the process that immediately deadlocks), and <math>\mathrm{SKIP}</math> (the process that immediately terminates successfully).<ref name="ucs"/> === Algebraic operators === CSP has a wide range of algebraic operators. The principal ones are informally given as follows. ; Prefix The prefix operator combines an event and a process to produce a new process. For example, <math>a \to P</math> is the process that is willing to communicate event <math>a</math> with its environment and, after <math>a</math>, behaves like the process <math>P</math>.<ref name="ucs"/> ; Recursion Processes can be defined using recursion. Where <math>F(P)</math> is any CSP term involving <math>P</math>, the process <math>\mu P. F(P)</math> defines a recursive process given by the equation <math>P = F(P)</math>. Recursions can also be defined mutually, such as <math display="block"> \begin{align} & P_u = up \to P_d\\ & P_d = down \to P_u\\ \end{align} </math> which defines a pair of mutually recursive processes that alternate between communcating <math>up</math> and <math>down</math>.<ref name="ucs"/> ; Deterministic choice The deterministic (or external) choice operator allows the future evolution of a process to be defined as a choice between two component processes and allows the environment to resolve the choice by communicating an initial event for one of the processes. For example, <math>(a \to P)\ \Box\ (b \to Q)</math> is the process that is willing to communicate the initial events <math>a</math> and <math>b</math> and subsequently behaves as either <math>P</math> or <math>Q</math>, depending on which initial event the environment chooses to communicate.<ref name="ucs"/> ; Nondeterministic choice The nondeterministic (or internal) choice operator allows the future evolution of a process to be defined as a choice between two component processes, but does not allow the environment any control over which one of the component processes will be selected. For example, <math>(a \to P) \sqcap (b \to Q)</math> can behave like either <math>a \to P</math> or <math>b \to Q</math>. It can refuse to accept <math>a</math> or <math>b</math> and is only obliged to communicate if the environment offers both <math>a</math> and <math>b</math>. Nondeterminism can be inadvertently introduced into a nominally deterministic choice if the initial events of both sides of the choice are identical. So, for example, <math display=block>(a \to a \to \mathrm{STOP})\ \Box\ (a \to b \to \mathrm{STOP})</math> and <math display="block">a \to \big((a \to \mathrm{STOP}) \sqcap (b \to \mathrm{STOP})\big)</math> are equivalent.<ref name="ucs"/> ; Interleaving The interleaving operator represents completely independent concurrent activity. The process <math>P \;|||\; Q</math> behaves as both <math>P</math> and <math>Q</math> simultaneously. The events from both processes are arbitrarily interleaved in time. Interleaving can introduce nondeterminism even if <math>P</math> and <math>Q</math> are both deterministic: if <math>P</math> and <math>Q</math> can both communicate the same event, then <math>P \;|||\; Q</math> nondeterministically chooses which of the two processes communicated that event.<ref name="ucs"/> ; Interface parallel The interface parallel (or generalized parallel) operator represents concurrent activity that requires synchronization between the component processes: for <math>P \;|[X]|\; Q</math>, any event in the interface set <math>X \subseteq \Sigma</math> can only occur when both <math>P</math> and <math>Q</math> are able to engage in that event.<ref name="ucs"/> For example, the process <math>P \;|[\{ a \}]|\; Q</math> requires that <math>P</math> and <math>Q</math> must both be able to perform event <math>a</math> before that event can occur. So, the process <math>(a \to P) \;|[\{ a \}]|\; (a \to Q)</math> is equivalent to <math>a \to (P \;|[\{ a \}]|\; Q)</math>, while <math>(a \to P ) \;|[\{ a, b \}]|\; (b \to Q)</math> is equivalent to <math>\mathrm{STOP}</math> (i.e. the process deadlocks). ; Hiding The hiding operator provides a way to abstract processes by making some events unobservable by the environment. <math>P \setminus X</math> is the process <math>P</math> with the event set <math>X</math> hidden. A trivial example of hiding is <math>(a \to P) \setminus \{ a \}</math> which, assuming that the event <math>a</math> doesn't appear in <math>P</math>, simply reduces to <math>P</math>. Hidden events are internalized as ''τ actions'', which are invisible to and uncontrollable by the environment. The existence of hiding introduces an additional behaviour called [[divergence (computer science)|divergence]], where an infinite sequence of τ actions is performed. This is captured by the process <math>\mathbf{div}</math>, whose behaviour is solely to perform τ actions forever.<ref name="ucs"/> For example, <math>(\mu P. a \to P) \setminus \{ a \}</math> is equivalent to <math>\mathbf{div}</math>. === Examples === {{unreferenced section|date=November 2024}} One of the archetypal CSP examples is an abstract representation of a chocolate vending machine and its interactions with a person wishing to buy some chocolate. This vending machine might be able to carry out two different events, “coin” and “choc” which represent the insertion of payment and the delivery of a chocolate respectively. A machine which demands payment (only in cash) before offering a chocolate can be written as: <math display="block">\mathrm{VendingMachine} = \mathrm{coin} \rightarrow \mathrm{choc} \rightarrow \mathrm{STOP}</math> A person who might choose to use a coin or card to make payments could be modelled as: <math display="block">\mathrm{Person} = (\mathrm{coin} \rightarrow \mathrm{STOP})\; \Box\; (\mathrm{card} \rightarrow \mathrm{STOP})</math> These two processes can be put in parallel, so that they can interact with each other. The behaviour of the composite process depends on the events that the two component processes must synchronise on. Thus, <math display="block">\mathrm{VendingMachine} \left\vert\left[\left\{ \mathrm{coin}, \mathrm{card} \right\}\right]\right\vert \mathrm{Person} \equiv \mathrm{coin} \rightarrow \mathrm{choc} \rightarrow \mathrm{STOP}</math> whereas if synchronization was only required on “coin”, we would obtain <math display="block">\mathrm{VendingMachine} \left\vert\left[\left\{ \mathrm{coin} \right\}\right]\right\vert \mathrm{Person} \equiv \left (\mathrm{coin} \rightarrow \mathrm{choc} \rightarrow \mathrm{STOP}\right ) \Box \left (\mathrm{card} \rightarrow \mathrm{STOP}\right )</math> If we abstract this latter composite process by hiding the “coin” and “card” events, i.e. <math display="block">\left (\left (\mathrm{coin} \rightarrow \mathrm{choc} \rightarrow \mathrm{STOP}\right ) \Box \left (\mathrm{card} \rightarrow \mathrm{STOP}\right )\right ) \setminus \left\{\mathrm{coin, card}\right\}</math> we get the nondeterministic process <math display="block">\left (\mathrm{choc} \rightarrow \mathrm{STOP}\right ) \sqcap \mathrm{STOP}</math> This is a process which either offers a “choc” event and then stops, or just stops. In other words, if we treat the abstraction as an external view of the system (e.g., someone who does not see the decision reached by the person), [[Nondeterministic algorithm|nondeterminism]] has been introduced. == Formal definition == === Syntax === {{unreferenced section|date=November 2024}} The syntax of CSP defines the “legal” ways in which processes and events may be combined. Let {{mvar|e}} be an event, and {{mvar|X}} be a set of events. Then the basic [[syntax]] of CSP can be defined as: <math display="block"> \begin{array}{lcll} {Proc} & ::= & \mathrm{STOP} & \; \\ &|& \mathrm{SKIP} & \; \\ &|& e \rightarrow {Proc} & (\text{prefixing})\\ &|& {Proc} \;\Box\; {Proc} & (\text{external} \; \text{choice})\\ &|& {Proc} \;\sqcap\; {Proc} & (\text{nondeterministic} \; \text{choice})\\ &|& {Proc} \;\vert\vert\vert\; {Proc} & (\text{interleaving}) \\ &|& {Proc} \;|[ \{ X \} ]| \;{Proc} & (\text{interface} \; \text{parallel})\\ &|& {Proc} \setminus X & (\text{hiding})\\ &|& {Proc} ; {Proc} & (\text{sequential} \; \text{composition})\\ &|& \mathrm{if} \; b \; \mathrm{then} \; {Proc}\; \mathrm{else}\; Proc & (\text{boolean} \; \text{conditional})\\ &|& {Proc} \;\triangleright\; {Proc} & (\text{timeout})\\ &|& {Proc} \;\triangle\; {Proc} & (\text{interrupt}) \end{array} </math> Note that, in the interests of brevity, the syntax presented above omits the <math>\mathbf{div}</math> process, which represents [[Divergence (computer science)|divergence]], as well as various operators such as alphabetized parallel, piping, and indexed choices. === Formal semantics === {{Expand section|date=June 2008}} CSP has been imbued with several different [[Semantics#Computer science|formal semantics]], which define the ''meaning'' of syntactically correct CSP expressions. The theory of CSP includes mutually consistent [[denotational semantics]], [[algebraic semantics (computer science)|algebraic semantics]], and [[operational semantics]]. === Denotational semantics === The three major denotational models of CSP are the ''traces'' model, the ''stable failures'' model, and the ''failures/divergences'' model. Semantic mappings from process expressions to each of these three models provide the denotational semantics for CSP.<ref name="roscoe" /> ==== Traces model ==== The ''traces model'' defines the meaning of a process expression as the set of sequences of events (traces) that the process can be observed to perform. For example, * <math>\mathrm{traces}\left(\mathrm{STOP}\right) = \left\{ \langle\rangle \right\}</math> since <math>\mathrm{STOP}</math> performs no events * <math>\mathrm{traces}\left(a\rightarrow b \rightarrow \mathrm{STOP}\right) = \left\{\langle\rangle ,\langle a \rangle, \langle a, b \rangle \right\}</math> since the process <math>(a\rightarrow b \rightarrow \mathrm{STOP})</math> can be observed to have performed no events, the event {{mvar|a}}, or the sequence of events {{mvar|a}} followed by {{mvar|b}} More formally, the traces model <math>\mathcal T</math> is defined as the set of non-empty prefix-closed subsets of <math>\Sigma^{\ast}</math>. The meaning of a process {{mvar|P}} in the traces model is defined as <math>\mathrm{traces}\left(P\right) \subseteq \Sigma^{\ast}</math> such that: # <math>\langle\rangle \in \mathrm{traces}\left(P\right)</math> (i.e. <math>\mathrm{traces}\left(P\right)</math> contains the empty sequence) # <math>s_1 \smallfrown s_2 \in \mathrm{traces}\left(P\right) \implies s_1 \in \mathrm{traces}\left(P\right)</math> (i.e. <math>\mathrm{traces}\left(P\right)</math> is prefix-closed) where <math>\Sigma^{\ast}</math> is the set of all possible finite sequences of events. ==== Stable failures model ==== The ''stable failures model'' extends the traces model with refusal sets, which are sets of events <math>X \subseteq \Sigma</math> that a process can refuse to perform. A ''failure'' is a pair <math>\left(s,X\right)</math>, consisting of a trace {{mvar|s}}, and a refusal set {{mvar|X}} which identifies the events that a process may refuse once it has executed the trace {{mvar|s}}. The observed behavior of a process in the stable failures model is described by the pair <math>\left(\mathrm{traces}\left(P\right), \mathrm{failures}\left(P\right)\right)</math>. For example, <math display="block">\mathrm{failures}\left(\left(a \rightarrow \mathrm{STOP}\right) \Box \left(b \rightarrow \mathrm{STOP}\right)\right) = \left\{\left(\langle\rangle,\emptyset\right), \left(\langle a \rangle, \left\{a,b\right\}\right), \left(\langle b \rangle,\left\{a,b\right\}\right) \right\}</math> <math display="block">\mathrm{failures}\left(\left(a \rightarrow \mathrm{STOP}\right) \sqcap \left(b \rightarrow \mathrm{STOP}\right)\right) = \left\{ \left(\langle\rangle,\left\{a\right\}\right), \left(\langle\rangle,\left\{b\right\}\right), \left(\langle a \rangle, \left\{a,b\right\}\right), \left(\langle b \rangle,\left\{a,b\right\}\right) \right\}</math> ==== Failures/divergences model ==== The ''failures/divergence model'' further extends the failures model to handle [[divergence (computer science)|divergence]]. The semantics of a process in the failures/divergences model is a pair <math>\left(\mathrm{failures}_\perp\left(P\right), \mathrm{divergences}\left(P\right)\right)</math> where <math>\mathrm{divergences}\left(P\right)</math> is defined as the set of all traces that can lead to divergent behavior and <math>\mathrm{failures}_\perp\left(P\right) = \mathrm{failures}\left(P\right) \cup \left\{\left(s,X\right) \mid s \in \mathrm{divergences}\left(P\right)\right\}</math>. ==== Unique fixed points ==== One of the most important principles in CSP is the Unique Fixed Points (UFP) rule. A version for single recursions in the traces model states that if <math>F : \mathcal T \rightarrow \mathcal T</math> is a function on trace sets generated by the guarded recursive{{clarify|date=April 2025}} process <math>X</math>, and <math>Y</math> is a process where <math>\mathrm{traces}(Y)</math> is a [[fixed point (mathematics)|fixed point]] of <math>F</math>, then <math>X</math> is equivalent to <math>Y</math> in the traces model.<ref name="ucs"/> UFP can also be extended to mutual recursions and other models of CSP. == Tools == Over the years, a number of tools for analyzing and understanding systems described using CSP have been produced. Early tool implementations used a variety of machine-readable syntaxes for CSP, making input files written for different tools incompatible. However, most CSP tools have now standardized on the machine-readable dialect of CSP devised by Bryan Scattergood, sometimes referred to as CSP<sub>''M''</sub>.<ref>{{Cite thesis |last=Scattergood |first=J. B. |title=The Semantics and Implementation of Machine-Readable CSP |type=[[D.Phil.]] |publisher=[[Oxford University Computing Laboratory]] |date=1998}}</ref> The CSP<sub>''M''</sub> dialect of CSP possesses a formally defined [[operational semantics]], which includes an embedded [[functional programming language]]. === FDR === The most well-known CSP tool is probably ''[[FDR (software)|Failures-Divergences Refinement]]'', which is a commercial product originally developed by Formal Systems (Europe) Ltd. FDR is often described as a [[model checker]], but is technically a ''refinement'' checker, in that it converts two CSP process expressions into [[Labelled transition system|Labelled Transition Systems]] (LTSs), and then determines whether one of the processes is a refinement of the other within some specified semantic model (traces, failures, or failures/divergence).<ref>{{Cite book |first=A. W. |last=Roscoe |chapter=Model-checking CSP |title=A Classical Mind: Essays in Honour of C. A. R. Hoare |publisher=Prentice Hall |date=1994 |author-link=Bill Roscoe}}</ref> FDR applies various state-space compression algorithms to the process LTSs in order to reduce the size of the state-space that must be explored during a refinement check. FDR was succeeded by FDR2, FDR3 and FDR4.<ref>{{cite web |url= https://www.cs.ox.ac.uk/projects/fdr/manual/introduction.html |title=Introduction — FDR 4.2.4 documentation |website=www.cs.ox.ac.uk}}</ref> === ARC === The ''Adelaide Refinement Checker'' (''ARC'')<ref>{{cite conference |first1=Atanas N. |last1=Parashkevov |first2=Jay |last2=Yantchev |title=ARC – a tool for efficient refinement and equivalence checking for CSP |book-title=IEEE Int. Conf. on Algorithms and Architectures for Parallel Processing ICA3PP '96 |pages=68–75 |date=1996 |citeseerx=10.1.1.45.3212}}</ref> is a CSP refinement checker developed by the Formal Modelling and Verification Group at [[The University of Adelaide]]. ARC differs from FDR2 in that it internally represents CSP processes as [[Binary decision diagram|Ordered Binary Decision Diagrams]] (OBDDs), which alleviates the state explosion problem of explicit LTS representations without requiring the use of state-space compression algorithms such as those used in FDR2. === ProB === The ''ProB'' project,<ref>{{cite conference |first1=Michael |last1=Leuschel |first2=Marc |last2=Fontaine |title=Probing the Depths of CSP-M: A new FDR-compliant Validation Tool |book-title=ICFEM 2008 |publisher=Springer-Verlag |date=2008 |url= http://www.stups.uni-duesseldorf.de/publications/main.pdf |access-date=2008-11-26 |url-status=dead |archive-url= https://web.archive.org/web/20110719102153/http://www.stups.uni-duesseldorf.de/publications/main.pdf |archive-date=2011-07-19}}</ref> which is hosted by the Institut für Informatik, Heinrich-Heine-Universität Düsseldorf, was originally created to support analysis of specifications constructed in the [[B method]]. However, it also includes support for analysis of CSP processes both through refinement checking, and [[Linear Temporal Logic|LTL]] model-checking. ProB can also be used to verify properties of combined CSP and B specifications. A ProBE CSP Animator is integrated in FDR3. === PAT === The ''Process Analysis Toolkit'' (PAT) <ref>{{cite conference |last1=Sun |first1=Jun |first2=Yang |last2=Liu |first3=Jin Song |last3=Dong |title=PAT: Towards Flexible Verification under Fairness |book-title=Proceedings of the 20th International Conference on Computer-Aided Verification (CAV 2009) |publisher=Springer |series=Lecture Notes in Computer Science |volume=5643 |date=2009 |url= http://www.comp.nus.edu.sg/~sunj/Publications/cav09.pdf |access-date=2009-06-16 |url-status=dead |archive-url= https://web.archive.org/web/20110611055744/http://www.comp.nus.edu.sg/~sunj/Publications/cav09.pdf |archive-date=2011-06-11}}</ref><ref>{{cite conference |last1=Sun |first1=Jun |first2=Yang |last2=Liu |first3=Jin Song |last3=Dong |title=Model Checking CSP Revisited: Introducing a Process Analysis Toolkit |book-title=Proceedings of the Third International Symposium on Leveraging Applications of Formal Methods, Verification and Validation (ISoLA 2008) |pages=307–322 |publisher=Springer |series=Communications in Computer and Information Science |volume=17 |date=2008 |url= http://www.comp.nus.edu.sg/~sunj/Publications/ISoLA08.pdf |access-date=2009-01-15 |url-status=dead |archive-url= https://web.archive.org/web/20090108091954/http://www.comp.nus.edu.sg/~sunj/Publications/ISoLA08.pdf |archive-date=2009-01-08}}</ref> is a CSP analysis tool developed in the School of Computing at the [[National University of Singapore]]. PAT is able to perform refinement checking, LTL model-checking, and simulation of CSP and Timed CSP processes. The PAT process language extends CSP with support for mutable shared variables, asynchronous message passing, and a variety of fairness and quantitative time related process constructs such as <code>deadline</code> and <code>waituntil</code>. The underlying design principle of the PAT process language is to combine a high-level specification language with procedural programs (e.g. an event in PAT may be a sequential program or even an external C# library call) for greater expressiveness. Mutable shared variables and asynchronous channels provide a convenient [[syntactic sugar]] for well-known process modelling patterns used in standard CSP. The PAT syntax is similar, but not identical, to CSP<sub>''M''</sub>.<ref>{{cite conference |first1=Jun |last1=Sun |first2=Yang |last2=Liu |first3=Jin Song |last3=Dong |first4=Chunqing |last4=Chen |title=Integrating Specifications and Programs for System Specification and Verification |book-title=IEEE Int. Conf. on Theoretical Aspects of Software Engineering TASE '09 |date=2009 |url= http://www.comp.nus.edu.sg/~sunj/Publications/tase09.pdf |access-date=2009-04-13 |url-status=dead |archive-url= https://web.archive.org/web/20110611055219/http://www.comp.nus.edu.sg/~sunj/Publications/tase09.pdf |archive-date=2011-06-11}}</ref> The principal differences between the PAT syntax and standard CSP<sub>''M''</sub> are the use of semicolons to terminate process expressions, the inclusion of syntactic sugar for variables and assignments, and the use of slightly different syntax for internal choice and parallel composition. === Others === ''VisualNets''<ref>{{cite conference |last1=Green |first1=Mark |first2=Ali |last2=Abdallah |title=Performance Analysis and Behaviour Tuning for Optimisation of Communicating Systems |book-title=Communicating Process Architectures 2002 |date=2002 |url= https://www.researchgate.net/publication/290383042}}</ref> produces animated visualisations of CSP systems from specifications, and supports timed CSP. ''CSPsim''<ref>{{cite conference |last1=Brooke |first1=Phillip |first2=Richard |last2=Paige |title=Lazy Exploration and Checking of CSP Models with CSPsim |book-title=Communicating Process Architectures 2007 |date=2007}}</ref> is a lazy simulator. It does not model check CSP, but is useful for exploring very large (potentially infinite) systems. [http://www.principia-m.com/syncstitch/ SyncStitch] is a CSP refinement checker with interactive modeling and analyzing environment. It has a graphical state-transition diagram editor. The user can model the behavior of processes as not only CSP expressions but also state-transition diagrams. The result of checking are also reported graphically as computation-trees and can be analyzed interactively with peripheral inspecting tools. In addition to refinement checks, It can perform deadlock check and livelock check. == Related formalisms == Several other specification languages and formalisms have been derived from, or inspired by, the classic untimed CSP, including: * [https://www.sciencedirect.com/science/article/pii/S1571066106004464/pdf Timed CSP], which incorporates timing information for reasoning about real-time systems * [https://dx.doi.org/10.1007/BF01178564 Receptive Process Theory], a specialization of CSP that assumes an asynchronous (i.e. [[non-blocking algorithm|nonblocking]]) send operation * [https://web.archive.org/web/20110514085953/http://www.wotug.org/paperdb/show_pap.php?f=1&num=394 CSPP] * [https://web.archive.org/web/20110514085958/http://www.wotug.org/paperdb/show_pap.php?f=1&num=395 HCSP] * [https://web.archive.org/web/20110514234220/http://www.comp.nus.edu.sg/~dongjs/tcoz.html TCOZ], an integration of Timed CSP and [[Object Z]] * [https://web.archive.org/web/20110514234221/http://www.cs.york.ac.uk/circus/ Circus], an integration of CSP and [[Z specification language|Z]] based on the [[Unifying Theories of Programming]] * [http://www.compass-research.eu/approach.html CML] {{Webarchive|url= https://web.archive.org/web/20200219205126/http://www.compass-research.eu/approach.html |date=2020-02-19 }} (COMPASS Modelling Language), a combination of [https://web.archive.org/web/20110514234221/http://www.cs.york.ac.uk/circus/ Circus] and [[VDM specification language|VDM]] developed for the modelling of [[System of systems|Systems of Systems]] (SoS) * [https://web.archive.org/web/20110514234221/http://www.cs.swan.ac.uk/~csmarkus/Papers/cspcasl.ps CspCASL], an extension of [[Common Algebraic Specification Language|CASL]] that integrates CSP * [[Language Of Temporal Ordering Specification|LOTOS]], an international standard<ref>[[Language Of Temporal Ordering Specification|ISO 8807, Language of Temporal Ordering Specification]]</ref> that incorporates features of CSP and [[Calculus of Communicating Systems|CCS]]. * [https://link.springer.com/chapter/10.1007/978-3-319-05032-4_25 PALPS], a probabilistic extension with locations for ecological models developed by Anna Philippou and Mauricio Toro Bermúdez == Comparison with the actor model == {{unreferenced section|date=November 2024}} In as much as it is concerned with concurrent processes that exchange messages, the [[actor model]] is broadly similar to CSP. However, the two models make some fundamentally different choices with regard to the primitives they provide: * CSP processes are anonymous, while actors have identities. * CSP uses explicit channels for message passing, whereas actor systems transmit messages to named destination actors. These approaches may be considered duals of each other, in the sense that processes receiving through a single channel effectively have an identity corresponding to that channel, while the name-based coupling between actors may be broken by constructing actors that behave as channels. * CSP message-passing fundamentally involves a rendezvous between the processes involved in sending and receiving the message, i.e. the sender cannot transmit a message until the receiver is ready to accept it. In contrast, message-passing in actor systems is fundamentally asynchronous, i.e. message transmission and reception do not have to happen at the same time, and senders may transmit messages before receivers are ready to accept them. These approaches may also be considered duals of each other, in the sense that rendezvous-based systems can be used to construct buffered communications that behave as asynchronous messaging systems, while asynchronous systems can be used to construct rendezvous-style communications by using a message/acknowledgement protocol to synchronize senders and receivers. Note that the aforementioned properties do not necessarily refer to the original CSP paper by Hoare, but rather the modern incarnation of the idea as seen in implementations such as Go and Clojure's core.async. In the original paper, channels were not a central part of the specification, and the sender and receiver processes actually identify each other by name. ==Award== In 1990, “A [[Elizabeth II|Queen]]’s Award for Technological Achievement [was] conferred ... on [[Oxford University Computing Laboratory|[Oxford University] Computing Laboratory]]. The award recognises a successful collaboration between the laboratory and [[Inmos]] Ltd. … Inmos’ flagship product is the ‘[[transputer]]’, a [[microprocessor]] with many of the parts that would normally be needed in addition built into the same single [[Electronic component|component]].”<ref>{{cite journal |title=Sharp as a Razor: A Queen's Award for the Computing Laboratory |last1=Geraint Jones |journal=[[The Oxford Magazine]] |issue=59, Fourth Week, Trinity Term |date=1990 |url= http://www.cs.ox.ac.uk/people/geraint.jones/ftp/pub/Documents/techpapers/Geraint.Jones/QATA-1-90.ps |author1-link=Geraint Jones}}</ref> According to Tony Hoare,<ref>{{cite journal |title=An interview with C.A.R. Hoare |url= https://dl.acm.org/doi/abs/10.1145/1467247.1467261 |doi=10.1145/1467247.1467261 |last1=Len Shustek |journal=[[Communications of the ACM]] |volume=52 |issue=3 |date=March 2009 |pages=38–41 |s2cid=1868477|url-access=subscription }}</ref> “The INMOS Transputer was as embodiment of the ideas … of building microprocessors that could communicate with each other along wires that would stretch between their terminals. The founder had the vision that the '''CSP''' ideas were ripe for industrial exploitation, and he made that the basis of the language for programming Transputers, which was called [[Occam (programming language)|Occam]]. … The company estimated it enabled them to deliver the hardware one year earlier than would otherwise have happened. They applied for and won a Queen’s award for technological achievement, in conjunction with Oxford University Computing Laboratory.” == See also == * [[Trace theory]], the general theory of traces. * [[Trace monoid]] and [[history monoid]] * [[Ease programming language]] * [[XC programming language]] * [[VerilogCSP]] is a set of [[Macro (computer science)|macros]] added to [[Verilog HDL]] to support communicating sequential processes channel communications. * [[Joyce (programming language)|Joyce]] is a programming language based on the principles of CSP, developed by [[Brinch Hansen]] around 1989. * [[SuperPascal]] is a programming language also developed by [[Brinch Hansen]], influenced by CSP and his earlier work with [[Joyce (programming language)|Joyce]]. * [[Ada (programming language)|Ada]] implements features of CSP such as the rendezvous. * [[DirectShow]] is the video framework inside [[DirectX]], it uses the CSP concepts to implement the audio and video filters. * [[OpenComRTOS]] is a formally developed network-centric distributed [[RTOS]] based on a pragmatic superset of CSP. * [[Input/output automaton]] * [[Parallel programming model]] * [[TLA+]] is another formal language for modelling and verifying concurrent systems. == References == {{reflist|2}} == Further reading == * {{cite book |last=Hoare |first=C. A. R. |author-link=C. A. R. Hoare |title=Communicating Sequential Processes |orig-year=1985 |date=2004 |publisher=Prentice Hall International |url= http://www.usingcsp.com/ |isbn=978-0-13-153271-7}} ** This book has been updated by [[Jim Davies (computer scientist)|Jim Davies]] at the [[Oxford University Computing Laboratory]] and the new edition is available for download as a PDF file at the [http://www.usingcsp.com/ ''Using CSP''] website. * {{cite book |first=A. W. |last=Roscoe |author-link=Bill Roscoe |title=The Theory and Practice of Concurrency |publisher=[[Prentice Hall]] |isbn=978-0-13-674409-2 |date=1997 |url-access=registration |url= https://archive.org/details/theorypracticeof00rosc}} ** Some links relating to this book are available [http://web.comlab.ox.ac.uk/oucl/publications/books/concurrency/ here]. The full text is available for download as a [http://web.comlab.ox.ac.uk/oucl/work/bill.roscoe/publications/68b.ps PS] or [http://web.comlab.ox.ac.uk/oucl/work/bill.roscoe/publications/68b.pdf PDF] file from Bill Roscoe's [http://web.comlab.ox.ac.uk/oucl/work/bill.roscoe/pubs.html list] of academic publications. == External links == * [http://www.usingcsp.com/ A PDF version of Hoare's CSP book] – copyright restriction apply, see the page text before downloading. * [https://github.com/complex-system/Communicating-Sequential-Processes ''The Annotation of CSP'' (Chinese version)], non-profit translation and annotation work based on Prentice-Hall book (1985), Chaochen Zhou's Chinese version (1988), and Jim Davies's online version (2015). * [http://www.wotug.org/ WoTUG], a user group for CSP and occam style systems, contains some information about CSP and useful links. * [http://citeseerx.ist.psu.edu/search?q=communicating+sequential+processes&submit=Search&sort=rlv&t=doc "CSP Citations" from ''CiteSeer''] {{Concurrent computing}} {{DEFAULTSORT:Communicating sequential processes}} [[Category:Computer-related introductions in 1978]] [[Category:1978 in computing]] [[Category:Process calculi]] [[Category:Concurrent computing]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Citation needed
(
edit
)
Template:Cite book
(
edit
)
Template:Cite conference
(
edit
)
Template:Cite journal
(
edit
)
Template:Cite thesis
(
edit
)
Template:Cite web
(
edit
)
Template:Clarify
(
edit
)
Template:Concurrent computing
(
edit
)
Template:Distinguish
(
edit
)
Template:Expand section
(
edit
)
Template:Mvar
(
edit
)
Template:Reflist
(
edit
)
Template:Short description
(
edit
)
Template:Unreferenced section
(
edit
)
Template:Webarchive
(
edit
)