• Non ci sono risultati.

Provably correct implementations of services

N/A
N/A
Protected

Academic year: 2022

Condividi "Provably correct implementations of services"

Copied!
92
0
0

Testo completo

(1)

Provably correct implementations of services

Roberto Bruni1 Rocco De Nicola2 Michele Loreti2 Leonardo G. Mezzina3

1Dipartimento di Informatica, Universit`a di Pisa, Italy

2Dipartimento di Sistemi e Informatica, Universit`a di Firenze, Italy

3IMT Alti Studi Lucca, Italy

TGC 2008 — Barcelona, November, 3-4

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 1 / 27

(2)

Outline. . .

1 Motivations

2 SOAM: Service Oriented Abstract Machine

3 Implementing Service Calculi with SOAM

4 Concluding Remarks

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 2 / 27

(3)

Outline. . .

1 Motivations

2 SOAM: Service Oriented Abstract Machine

3 Implementing Service Calculi with SOAM

4 Concluding Remarks

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 3 / 27

(4)

Motivations. . .

The explosive growth of the Web has led to

the widespread use of communication centric applications, often referred as Web Services;

the growth of a new computational paradigm known as Service Oriented Computing (SOC).

Service Oriented Computing (SOC) is calling for novel computational models and languages with primitives for client-server interaction, orchestration and unexpected events handling

Important features of SOC are: compositionality, context-independence, encapsulation and re-usability.

A number of formalisms have been defined to support the specification and analysis of service oriented applications at the right level of abstraction

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 4 / 27

(5)

Motivations. . .

The explosive growth of the Web has led to

the widespread use of communication centric applications, often referred as Web Services;

the growth of a new computational paradigm known as Service Oriented Computing (SOC).

Service Oriented Computing (SOC) is calling for novel computational models and languages with primitives for client-server interaction, orchestration and unexpected events handling

Important features of SOC are: compositionality, context-independence, encapsulation and re-usability.

A number of formalisms have been defined to support the specification and analysis of service oriented applications at the right level of abstraction

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 4 / 27

(6)

Motivations. . .

The explosive growth of the Web has led to

the widespread use of communication centric applications, often referred as Web Services;

the growth of a new computational paradigm known as Service Oriented Computing (SOC).

Service Oriented Computing (SOC) is calling for novel computational models and languages with primitives for client-server interaction, orchestration and unexpected events handling

Important features of SOC are: compositionality, context-independence, encapsulation and re-usability.

A number of formalisms have been defined to support the specification and analysis of service oriented applications at the right level of abstraction

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 4 / 27

(7)

Motivations. . .

These formalisms are based on process algebras enriched with primitives specific of service orientation:

operators for manipulating semi-structured data

mechanisms for describing safe client-service interactions constructors for composing possibly unreliable services techniques for query and discovery of services.

A key point for the usefulness of process calculi is the availability of tools (types or logics) to specify, check and guarantee the correct behavior of the considered services.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 5 / 27

(8)

Motivations. . .

These formalisms are based on process algebras enriched with primitives specific of service orientation:

operators for manipulating semi-structured data

mechanisms for describing safe client-service interactions constructors for composing possibly unreliable services techniques for query and discovery of services.

A key point for the usefulness of process calculi is the availability of tools (types or logics) to specify, check and guarantee the correct behavior of the considered services.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 5 / 27

(9)

Motivations. . .

We have defined a Service Oriented Abstract Machine (SOAM). . . equipped with a formal semantics

that can be used to implement the service specification formalisms.

The operational semantics of SOAM can be used as the basis for guaranteeing that the properties that have been proved by reasoning on the calculi-based specification are preserved by the actual implementations. Three representative service-oriented calculi will be considered.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 6 / 27

(10)

Motivations. . .

We have defined a Service Oriented Abstract Machine (SOAM). . . equipped with a formal semantics

that can be used to implement the service specification formalisms.

The operational semantics of SOAM can be used as the basis for guaranteeing that the properties that have been proved by reasoning on the calculi-based specification are preserved by the actual implementations.

Three representative service-oriented calculi will be considered.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 6 / 27

(11)

Motivations. . .

We have defined a Service Oriented Abstract Machine (SOAM). . . equipped with a formal semantics

that can be used to implement the service specification formalisms.

The operational semantics of SOAM can be used as the basis for guaranteeing that the properties that have been proved by reasoning on the calculi-based specification are preserved by the actual implementations.

Three representative service-oriented calculi will be considered.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 6 / 27

(12)

Outline. . .

1 Motivations

2 SOAM: Service Oriented Abstract Machine

3 Implementing Service Calculi with SOAM

4 Concluding Remarks

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 7 / 27

(13)

SOAM: Service Oriented Abstract Machine

SOAM is based on the notion of queues:

model persistent, protected, communication lines;

permit inter-task communication;

are created on service invocation;

messages are retrieved by means of pattern matching;

can be either synchronous or asynchronous;

naturally corresponds to the concept of session.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 8 / 27

(14)

SOAM: Service Oriented Abstract Machine

SOAM network. . . . . . can be:

hσ `Ci, a program C running with local store σ

I σ associates variable to values;

r : h, a queue r with associated a sequence of values h;

N|M, the parallel composition of two networks.

SOAM programs. . . . . . are built from:

standard imperative commands (iteration, selection,. . . ); primitives for queues (creation, input and output); service definitions and invocations.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 9 / 27

(15)

SOAM: Service Oriented Abstract Machine

SOAM network. . . . . . can be:

hσ `Ci, a program C running with local store σ

I σ associates variable to values;

r : h, a queue r with associated a sequence of values h;

N|M, the parallel composition of two networks.

SOAM programs. . . . . . are built from:

standard imperative commands (iteration, selection,. . . );

primitives for queues (creation, input and output);

service definitions and invocations.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 9 / 27

(16)

SOAM: Service Oriented Abstract Machine

Queue actions: out, in

(Mout)

σ(w ) = r

hσ ` out(w , ˜v );Ci|r : h → hσ ` Ci|r : ˜v · h

(Min)

σ(w ) = r match(σ, ˜Fk, ˜v ) = ρ

hσ ` in(w , Σj ∈J( ˜Fj.Cj));Di|r : h · ˜v · h0→ hσρ `Ck;Di|r : h · h0

Queue creation: new

(MnewR)

r is fresh

hσ ` new x;Ci → (νr)(hσ[r/x] `Ci|r : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 10 / 27

(17)

SOAM: Service Oriented Abstract Machine

Queue actions: out, in

(Mout)

σ(w ) = r

hσ ` out(w ,˜v);Ci|r : h → hσ `Ci|r : ˜v · h

(Min)

σ(w ) = r match(σ, ˜Fk, ˜v ) = ρ

hσ ` in(w , Σj ∈J( ˜Fj.Cj));Di|r : h · ˜v · h0→ hσρ `Ck;Di|r : h · h0

Queue creation: new

(MnewR)

r is fresh

hσ ` new x;Ci → (νr)(hσ[r/x] `Ci|r : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 10 / 27

(18)

SOAM: Service Oriented Abstract Machine

Queue actions: out, in

(Mout)

σ(w ) = r

hσ ` out(w , ˜v );Ci|r : h → hσ ` Ci|r : ˜v · h

(Min)

σ(w ) = r match(σ, ˜Fk, ˜v ) = ρ

hσ ` in(w , Σj ∈J( ˜Fj.Cj));Di|r : h · ˜v · h0→ hσρ `Ck;Di|r : h · h0

Queue creation: new

(MnewR)

r is fresh

hσ ` new x;Ci → (νr)(hσ[r/x] `Ci|r : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 10 / 27

(19)

SOAM: Service Oriented Abstract Machine

Queue actions: out, in

(Mout)

σ(w ) = r

hσ ` out(w , ˜v );Ci|r : h → hσ ` Ci|r : ˜v · h

(Min)

σ(w ) = r match(σ, ˜Fk, ˜v ) = ρ

hσ ` in(w , Σj ∈J( ˜Fj.Cj));Di|r : h · ˜v · h0→ hσρ `Ck;Di|r : h · h0 Queue creation: new

(MnewR)

r is fresh

hσ ` new x;Ci → (νr)(hσ[r/x] `Ci|r : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 10 / 27

(20)

SOAM: Service Oriented Abstract Machine

Queue actions: out, in

(Mout)

σ(w ) = r

hσ ` out(w , ˜v );Ci|r : h → hσ ` Ci|r : ˜v · h

(Min)

σ(w ) = r match(σ, ˜Fk, ˜v ) = ρ

hσ ` in(w , Σj ∈J( ˜Fj.Cj));Di|r : h · ˜v · h0→ hσρ `Ck;Di|r : h · h0 Queue creation: new

(MnewR)

r is fresh

hσ ` newx;Ci → (νr)(hσ[r/x] `Ci|r : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 10 / 27

(21)

SOAM: Service Oriented Abstract Machine

Queue actions: out, in

(Mout)

σ(w ) = r

hσ ` out(w , ˜v );Ci|r : h → hσ ` Ci|r : ˜v · h

(Min)

σ(w ) = r match(σ, ˜Fk, ˜v ) = ρ

hσ ` in(w , Σj ∈J( ˜Fj.Cj));Di|r : h · ˜v · h0→ hσρ `Ck;Di|r : h · h0 Queue creation: new

(MnewR)

r is fresh

hσ ` new x;Ci →(νr )(hσ[r/x] `Ci|r : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 10 / 27

(22)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(23)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1`offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(24)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(25)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(26)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(27)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2`invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(28)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(29)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(30)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(31)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(32)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i)

Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i| hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(33)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i) Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i|

hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(34)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i) Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ `fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i|

hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(35)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i) Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i|

hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(36)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i) Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i|

hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(37)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i) Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i|

hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(38)

SOAM: Service Oriented Abstract Machine

Service invocations and definitions: invoke, offer

(Msynch)

r , r0 fresh ρi = [r/xi][r0/yi] hσ1` offer(a, hx1, y1i,C1);Di|

2` invoke(a, hx2, y2i,C2);D0i →

1 `Di|hσ2`D0i|

(νr )(νr0)(r : ∅|r0 : ∅|

1ρ1 `C1i|hσ2ρ2`C2i) Task activation: fork

(Mfork)

r , r0 fresh ρi = [r/xi][r0/yi]

hσ ` fork(hx1, y1i,C1, hx2, y2i,C2)i → (νr )(νr0)(hσρ1`C1i|

hσρ2`C2i|r : ∅|r0 : ∅)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 11 / 27

(39)

SOAM: Service Oriented Abstract Machine

Syntax

C, D ::= skip (skip)

| new n (new)

| while e doC (while)

| if e thenC else D (if-then-else)

| invoke(v , hx , y i,C) (new session inv)

| offer(v , hx , y i,C) (new session def)

| out(w , ˜v ) (send)

| in(w , Σj ∈J( ˜Fj.Cj)) (receive)

| x := e (assignment)

| fork(hx1, y1i,C1, hx2, y2i,C2) (fork and sync)

| C; D (sequencing)

N ::= O (empty net)

| hσ `Ci (running program)

| N|M (network composition)

| (νn)N (name restriction)

| r : h (session queue)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 12 / 27

(40)

Outline. . .

1 Motivations

2 SOAM: Service Oriented Abstract Machine

3 Implementing Service Calculi with SOAM

4 Concluding Remarks

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 13 / 27

(41)

Implementing Service Calculi with SOAM

Three service oriented calculi are considered: Session Language (SL);

Calculus of Sessions and Pipelines (CaSPiS); and Orc.

These calculi provide specific primitives for modelling SOC: sessions (SL and CaSPiS), session delegation (SL), pipelining (Orc and CaSPiS), session nesting and pattern matching (CaSPiS), and cancelation of activities (Orc).

For each of the above calculi we provide:

a structural translation into the code of our abstract machine the operational correspondence between a process and its encoding.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 14 / 27

(42)

Implementing Service Calculi with SOAM

Three service oriented calculi are considered:

Session Language (SL);

Calculus of Sessions and Pipelines (CaSPiS);

and Orc.

These calculi provide specific primitives for modelling SOC: sessions (SL and CaSPiS), session delegation (SL), pipelining (Orc and CaSPiS), session nesting and pattern matching (CaSPiS), and cancelation of activities (Orc).

For each of the above calculi we provide:

a structural translation into the code of our abstract machine the operational correspondence between a process and its encoding.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 14 / 27

(43)

Implementing Service Calculi with SOAM

Three service oriented calculi are considered:

Session Language (SL);

Calculus of Sessions and Pipelines (CaSPiS);

and Orc.

These calculi provide specific primitives for modelling SOC: sessions (SL and CaSPiS), session delegation (SL), pipelining (Orc and CaSPiS), session nesting and pattern matching (CaSPiS), and cancelation of activities (Orc).

For each of the above calculi we provide:

a structural translation into the code of our abstract machine the operational correspondence between a process and its encoding.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 14 / 27

(44)

Implementing Service Calculi with SOAM

Three service oriented calculi are considered:

Session Language (SL);

Calculus of Sessions and Pipelines (CaSPiS);

and Orc.

These calculi provide specific primitives for modelling SOC: sessions (SL and CaSPiS), session delegation (SL), pipelining (Orc and CaSPiS), session nesting and pattern matching (CaSPiS), and cancelation of activities (Orc).

For each of the above calculi we provide:

a structural translation into the code of our abstract machine the operational correspondence between a process and its encoding.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 14 / 27

(45)

Implementing Service Calculi with SOAM

Three service oriented calculi are considered:

Session Language (SL);

Calculus of Sessions and Pipelines (CaSPiS); and Orc.

These calculi provide specific primitives for modelling SOC: sessions (SL and CaSPiS), session delegation (SL), pipelining (Orc and CaSPiS), session nesting and pattern matching (CaSPiS), and cancelation of activities (Orc).

For each of the above calculi we provide:

a structural translation into the code of our abstract machine the operational correspondence between a process and its encoding.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 14 / 27

(46)

Calculus of Services with Pipelines and Sessions

Overview:

CaSPiS (Calculus of Services with Pipelines and Sessions) is a core calculus that relies on four three concepts:

1 service definition/invocation

2 bi-directional sessioning as a means for structuring client-service interaction

3 pipelining as a means of composing services.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 15 / 27

(47)

Calculus of Services with Pipelines and Sessions

Overview:

CaSPiS (Calculus of Services with Pipelines and Sessions) is a core calculus that relies on four three concepts:

1 service definition/invocation

2 bi-directional sessioning as a means for structuring client-service interaction

3 pipelining as a means of composing services.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 15 / 27

(48)

Calculus of Services with Pipelines and Sessions

Overview:

CaSPiS (Calculus of Services with Pipelines and Sessions) is a core calculus that relies on four three concepts:

1 service definition/invocation

2 bi-directional sessioning as a means for structuring client-service interaction

3 pipelining as a means of composing services.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 15 / 27

(49)

Calculus of Services with Pipelines and Sessions

Overview:

CaSPiS (Calculus of Services with Pipelines and Sessions) is a core calculus that relies on four three concepts:

1 service definition/invocation

2 bi-directional sessioning as a means for structuring client-service interaction

3 pipelining as a means of composing services.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 15 / 27

(50)

CaSPiS in a nutshell. . .

Service definitions and invocations. . . . . . are rendered respectively as s.P and s.Q:

s is a service name

P and Q implement the service and the client protocols

news.h“news item”i | news.(?x )hx iQ

(νr ) r+. h“news item”i | r. (?x )hx iQ

We assume session be polarised to distinguish the two sides of a session (r+, r):

we let r+ = r and r= r+.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 16 / 27

(51)

CaSPiS in a nutshell. . .

Service definitions and invocations. . . . . . are rendered respectively as s.P and s.Q:

s is a service name

P and Q implement the service and the client protocols

news.h“news item”i | news.(?x )hx iQ

(νr ) r+. h“news item”i | r. (?x )hx iQ

We assume session be polarised to distinguish the two sides of a session (r+, r):

we let r+ = r and r= r+.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 16 / 27

(52)

CaSPiS in a nutshell. . .

Service definitions and invocations. . . . . . are rendered respectively as s.P and s.Q:

s is a service name

P and Q implement the service and the client protocols

news.h“news item”i | news.(?x )hx iQ

(νr ) r+. h“news item”i | r. (?x )hx iQ

We assume session be polarised to distinguish the two sides of a session (r+, r):

we let r+ = r and r= r+.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 16 / 27

(53)

CaSPiS in a nutshell. . .

Service definitions and invocations. . . . . . are rendered respectively as s.P and s.Q:

s is a service name

P and Q implement the service and the client protocols

news.h“news item”i | news.(?x )hx iQ

(νr ) r+. h“news item”i | r. (?x )hx iQ

We assume session be polarised to distinguish the two sides of a session (r+, r):

we let r+ = r and r= r+.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 16 / 27

(54)

CaSPiS in a nutshell. . .

Service definitions and invocations. . . . . . are rendered respectively as s.P and s.Q:

s is a service name

P and Q implement the service and the client protocols

news.h“news item”i | news.(?x )hx iQ

(νr ) r+. h“news item”i |r. (?x )hx iQ

We assume session be polarised to distinguish the two sides of a session (r+, r):

we let r+ = r and r= r+.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 16 / 27

(55)

CaSPiS in a nutshell. . .

Service definitions and invocations. . . . . . are rendered respectively as s.P and s.Q:

s is a service name

P and Q implement the service and the client protocols

news.h“news item”i | news.(?x )hx iQ

(νr ) r+. h“news item”i |r. (?x )hx iQ

We assume session be polarised to distinguish the two sides of a session (r+, r):

we let r+ = r and r= r+.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 16 / 27

(56)

CaSPiS in a nutshell. . .

Abstractions and concretions. . .

Processes at the two sides of a session can interact with each other by means of:

concretions: hV i sends value V over a session

abstractions: (F)P retrieves a value matching pattern F.

(νr ) r+. h“news item”i | r. (?x )hx iQ

(νr ) r+. P | r. h“news item”iQ

Return. . .

Values can be returned outside a session to the enclosing environment using the return operator, h · i.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 17 / 27

(57)

CaSPiS in a nutshell. . .

Abstractions and concretions. . .

Processes at the two sides of a session can interact with each other by means of:

concretions: hV i sends value V over a session

abstractions: (F)P retrieves a value matching pattern F.

(νr ) r+. h“news item”i | r. (?x )hx iQ

(νr ) r+. P | r. h“news item”iQ

Return. . .

Values can be returned outside a session to the enclosing environment using the return operator, h · i.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 17 / 27

(58)

CaSPiS in a nutshell. . .

Abstractions and concretions. . .

Processes at the two sides of a session can interact with each other by means of:

concretions: hV i sends value V over a session

abstractions: (F)P retrieves a value matching pattern F.

(νr ) r+.h“news item”i| r.(?x )hxiQ

(νr ) r+. P | r. h“news item”iQ

Return. . .

Values can be returned outside a session to the enclosing environment using the return operator, h · i.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 17 / 27

(59)

CaSPiS in a nutshell. . .

Abstractions and concretions. . .

Processes at the two sides of a session can interact with each other by means of:

concretions: hV i sends value V over a session

abstractions: (F)P retrieves a value matching pattern F.

(νr ) r+. h“news item”i | r. (?x )hx iQ

(νr ) r+. P | r. h“news item”iQ

Return. . .

Values can be returned outside a session to the enclosing environment using the return operator, h · i.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 17 / 27

(60)

CaSPiS in a nutshell. . .

Abstractions and concretions. . .

Processes at the two sides of a session can interact with each other by means of:

concretions: hV i sends value V over a session

abstractions: (F)P retrieves a value matching pattern F.

(νr ) r+. h“news item”i | r. (?x )hx iQ

(νr ) r+. P | r. h“news item”iQ

Return. . .

Values can be returned outside a session to the enclosing environment using the return operator, h · i.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 17 / 27

(61)

CaSPiS in a nutshell. . .

Abstractions and concretions. . .

Processes at the two sides of a session can interact with each other by means of:

concretions: hV i sends value V over a session

abstractions: (F)P retrieves a value matching pattern F.

(νr ) r+. h“news item”i | r. (?x )hx iQ

(νr ) r+. P | r.h“news item”iQ

Return. . .

Values can be returned outside a session to the enclosing environment using the return operator, h · i.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 17 / 27

(62)

CaSPiS in a nutshell. . .

Pipeline. . .

Values returned by a session can be used to start new activities. This is achieved using the pipeline operator:

P > ˜x > Q .

A new instance of process Q is activated each time P emits a value.

r . h“news item”iQ > z > emailMe.hzi

r . Q > z > emailMe.hzi | emailMe.h“news item”i

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 18 / 27

(63)

CaSPiS in a nutshell. . .

Pipeline. . .

Values returned by a session can be used to start new activities. This is achieved using the pipeline operator:

P > ˜x > Q .

A new instance of process Q is activated each time P emits a value.

r . h“news item”iQ > z > emailMe.hzi

r . Q > z > emailMe.hzi | emailMe.h“news item”i

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 18 / 27

(64)

CaSPiS in a nutshell. . .

Pipeline. . .

Values returned by a session can be used to start new activities. This is achieved using the pipeline operator:

P > ˜x > Q .

A new instance of process Q is activated each time P emits a value.

r .h“news item”iQ >z > emailMe.hzi

r . Q > z > emailMe.hzi | emailMe.h“news item”i

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 18 / 27

(65)

CaSPiS in a nutshell. . .

Pipeline. . .

Values returned by a session can be used to start new activities. This is achieved using the pipeline operator:

P > ˜x > Q .

A new instance of process Q is activated each time P emits a value.

r . h“news item”iQ > z > emailMe.hzi

r . Q > z > emailMe.hzi | emailMe.h“news item”i

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 18 / 27

(66)

CaSPiS in a nutshell. . .

Pipeline. . .

Values returned by a session can be used to start new activities. This is achieved using the pipeline operator:

P > ˜x > Q .

A new instance of process Q is activated each time P emits a value.

r . h“news item”iQ > z > emailMe.hzi

r . Q > z > emailMe.hzi |emailMe.h“news item”i

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 18 / 27

(67)

Encoding CaSPiS in SOAM

The translation of CaSPiS relies on of two functions:

net, that returns the SOAM network associated to a process P; prg, that returns the static program associated to a process.

Function net takes the references to the three queues used for identifying: the session used for retrieving input messages;

the session used for delivering output messages; the session used for returning messages.

These queues are referenced in prg(P) by variables m1, m+1 and m2.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 19 / 27

(68)

Encoding CaSPiS in SOAM

The translation of CaSPiS relies on of two functions:

net, that returns the SOAM network associated to a process P;

prg, that returns the static program associated to a process.

Function net takes the references to the three queues used for identifying: the session used for retrieving input messages;

the session used for delivering output messages; the session used for returning messages.

These queues are referenced in prg(P) by variables m1, m+1 and m2.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 19 / 27

(69)

Encoding CaSPiS in SOAM

The translation of CaSPiS relies on of two functions:

net, that returns the SOAM network associated to a process P;

prg, that returns the static program associated to a process.

Function net takes the references to the three queues used for identifying:

the session used for retrieving input messages;

the session used for delivering output messages;

the session used for returning messages.

These queues are referenced in prg(P) by variables m1, m+1 and m2.

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 19 / 27

(70)

Encoding CaSPiS in SOAM

Sessions:

A pair of queues (r+, r) is associated to each session r :

net((νr )P, ri, ro, rr) = (νr+)(νr)(net(P, ri, ro, rr)|r+ : ∅|r: ∅)

Process executed within session rp retrieves messages from rp, sends messages in rp and returns values to ro:

net(rp. P, ri, ro, rr) = net(P, rp, rp, ro)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 20 / 27

(71)

Encoding CaSPiS in SOAM

Sessions:

A pair of queues (r+, r) is associated to each session r :

net((νr )P, ri, ro, rr) = (νr+)(νr)(net(P, ri, ro, rr)|r+ : ∅|r: ∅)

Process executed within session rp retrieves messages from rp, sends messages in rp and returns values to ro:

net(rp. P, ri, ro, rr) = net(P, rp, rp, ro)

M. Loreti (DSI@FI) Provably correct implementations of services TGC08 20 / 27

Riferimenti

Documenti correlati

Main objectives of the research are: to get information about the organization of public and private institutions for orphan children in Shkoder Municipality; to get information

In the framework of the PAR-FAS Regione Toscana COPAC Project - Preventive Conservation of Contemporary Art (2011-2013), and under the auspices of Pisa City Council (owner of

Sospendere i trattamenti prima della raccolta: actinidia: 180 giorni; soia: 150 giorni; fragola: 40 giorni; arancio, limone, mandarino, clementino: 30 giorni; melo, tabacco:

MCA stenosis morphology was studied by TCCD and Angiopower transcranial doppler using contrast agent (SonoVue, Bracco SA) and 3 types of stenosis were identified: monofocal with

In patients with unilateral stenosis and subclavian-vertebral disease there is a statistical significant improvement in CVR on ipsilateral MCA both early (Wilcoxon rank test, p

Instead in sitting position Diamox test shown reduced steal in proximal right VA (-29.76%) and right PCA P1 steal from middle cerebral artery by right posterior communicating

IL VALORE DELLE AREE MONTANE Le aree montane sono rilevanti a livello europeo:.. 1 900 000 Km 2 (40.6% delle terre abitate) con 94 milioni di abitanti e a

Summarize and Graph Sleep Diary Assess Treatment Gains and Compliance Determine If Upward Titration Is Warranted Review Sleep Hygiene.. Primary Goals of