3 modelling dynamic behavior with petri nets
play

3. Modelling Dynamic Behavior with Petri Nets Prof. Dr. U. Amann - PowerPoint PPT Presentation

Fakultt Informatik - Institut Software- und Multimediatechnik - Softwaretechnologie Prof. Amann - Softwaretechnologie II 3. Modelling Dynamic Behavior with Petri Nets Prof. Dr. U. Amann 1. Basics Technische Universitt Dresden 1.


  1. Application Area I: Behavior Specifications in UML Softwaretechnologie II 21 Instead of describing the behavior of a class with a statechart, a CPN can be Ø used • Statecharts, data flow diagrams, activity diagrams are subsets of CPNs CPN have several advantages: Ø • They model parallel systems (with a fixed net) naturally • They are compact and modular , they can be reducible • They are suitable for aspect-oriented composition, in particular of parallel protocols • They can be used to generate code , also for complete applications Informal: for CPN, the following features can be proven Ø • Liveness : All parts of the net are reachable • Fairness : All parts of the net are equally “loaded” with activity • K-boundedness : The tokens, a place can contain, aber n-bounded • Deadlock : The net cannot proceed but did not terminate correctly • Deadlock-freeness : The net contains no deadlocks

  2. Application Area II: Contract checking (Protocol Checking) for Components Softwaretechnologie II 22 Petri Nets describe behavior of components (dynamic semantics) Ø • They can be used to check whether components fit to each other Problem: General fit of components is undecidable Ø • The protocol of a component must be described with a decidable language • Due to complexity, context-free or -sensitive protocol languages are required Algorithm: Ø • Describe the behavior of two components with two CPN • Link their ports • Check on liveness of the unified CPN • If the unified net is not live, components will not fit to each other… Liveness and fairness are very important criteria in safety-critical systems Ø

  3. Fakultät Informatik - Institut Software- und Multimediatechnik - Softwaretechnologie – Prof. Aßmann - Softwaretechnologie II 3.1.1 Elementary Nets (Predicate/Transition Nets) 23

  4. Meaning of Places and Transitions in Elementary Nets Softwaretechnologie II 24 ► Predicate/Transition (Condition/Event-, State/Transition) Nets: Places represent conditions, states, or predicates ■ Transitions represent the firing of events: ■ if a transition has one input place, n the event fires immediately if a token arrives in that place If a transition has several input places, n the event fires when all input places have tokens ► A transition has input and output places (pre- and postconditions) The presence of a token in a place is interpreted as the condition is true ■

  5. Example of 2 Robots as Predicate/Transition Net Softwaretechnologie II 25 [Balzert] Ø Robot 1 free Cmp. BMW factory Ø in Leipzig with robot manufactoring Piece equipped cells for i3 Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  6. Example of 2 Robots as Predicate/Transition Net Softwaretechnologie II 26 Places represent predicates Ø Robot 1 free Tokens show validity Ø Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  7. Example of 2 Robots as Predicate/Transition Net Softwaretechnologie II 27 27 Robot 1 free Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  8. Example of 2 Robots as Predicate/Transition Net Softwaretechnologie II 28 28 Robot 1 free Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  9. Example of 2 Robots as Predicate/Transition Net Softwaretechnologie II 29 29 Robot 1 free Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  10. Comparing PN to Automata Softwaretechnologie II 30 Petri Nets ► Tokens encode parallel “distributed” global state ► Can be switched “distributedly” Automata ► Sequential ► One global state (one token) ► Can only be switched “centrally”

  11. Fakultät Informatik - Institut Software- und Multimediatechnik - Softwaretechnologie – Prof. Aßmann - Softwaretechnologie II 3.1.2 Special Nets (Special Syntactic forms of PN) 31

  12. 3.1.2.a Marked Graphs (MG) are DFD with Distributed Memory Softwaretechnologie II 32 A Marked Graph (MG) is a PN such that: Ø 1. Each place has only 1 incoming arc 2. Each place has only 1 outgoing arc • Then the places can be abstracted (identified with one flow edge) • Transitions may split and join, however • No shared memories between transitions (distributed memory) Marked Graphs correspond to a special class of data-flow graphs Ø (Data flow diagrams with non-shared, distributed memory, dm-DFD) • MG provide d eterministic parallelism without confusion • Transitions correspond to processes in DFD, places to stores • States can be merged with the ingoing and outcoming arcs → DFD without stores • Restriction: Stores have only one producer and consumer • But activities can join and split All theory for CPN holds for marked graph - DFD, too [BrozaWeide] Ø

  13. 3.1.2.a Marked Graphs (MG) Softwaretechnologie II 33 Ø Is the production PN a MG ? Robot 1 free Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  14. 3.1.2.a Marked Graphs (MG) Softwaretechnologie II 34 Ø The production PN is no MG à Some places have more than 1 incoming/outgoing arc Robot 1 free Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  15. 3.1.2.a Marked Graphs (MG) Softwaretechnologie II 35 Ø However, the production robot PN is a MG Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  16. More General Data-Flow Diagrams Softwaretechnologie II 36 General DFD without restriction can be modeled by PN, too. Ø • However, places cannot be abstracted • They correspond to stores with 2 feeding or consuming processes Example: the full robot has places with 2 ingoing or outgoing edges, Ø • They cannot be abstracted

  17. For DFD, Many Notations Exist Softwaretechnologie II 37 Notation from Structured Analysis [Balzert] Ø Produce tea GreenTea Water add put tea boiling in pot water Pot Process Data flow wait Data TeaDrink Store Cup

  18. 3.1.2.b State Machines are PN with Cardinality Restrictions Softwaretechnologie II 38 A Finite State Machine PN is an elementary PN such that: Ø 1. Each transition has only 1 incoming arc 2. Each transition has only 1 outgoing arc • Then, it is equivalent to a finite automaton or a statechart • From every class-statechart that specifies the behavior of a class, a State Machine can be produced easily Flattening the nested states § • Transitions correspond to transitions in statecharts, states to states • Transitions can be merged with the ingoing and outcoming arcs • In a FSM there is only one token All theory for CPN holds for Statecharts, too Ø

  19. 3.1.2.b State Machines Softwaretechnologie II 39 Ø Is the production PN a FSM ? Robot 1 free Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  20. 3.1.2.b State Machines Softwaretechnologie II 40 Ø The production PN is no FSM à Some transitions have more than 1 incoming/outgoing arc Robot 1 free Piece equipped Taking Up Laying Down Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Piece equipped Robot 2 free

  21. 3.1.2.b State Machines Softwaretechnologie II 41 Ø One Robot is a FSM but not with incoming/outgoing arc Taking Up Laying Down Piece equipped Robot 2 free

  22. Hierarchical StateCharts from UML Softwaretechnologie II 42 States can be nested in StateCharts Ø This corresponds to hierarchical StateMachine-PN, in which states can be Ø refined and nested Autopilot Autopilot On Autopilot Controlling SwitchOn Off On SwitchOn SwitchOff Off Move Quiet SwitchOff Non Controlling

  23. 3.1.2.c Free-Choice Nets Softwaretechnologie II 43 Two transitions are in conflict if the firing of one transition deactivates Ø another • R1: no conflicts (t1 and t3 activated) à in this example t1 fires • R2: t2 and t3 are in conflict à in this example t2 fires • R3: t3 is deactivated because of t2 R1 s1 t1 s2 t2 s3 t3 R2 s1 t1 s2 t2 s3 t3 R3 s1 t1 s2 t2 s3 t3

  24. 3.1.2.c Free-Choice Nets Softwaretechnologie II 44 Free-Choice Petri Net provides deterministic parallelism Ø • Choice between transitions never influence the rest of the system („free choice“) • Rule conflicts out • AND-splits and AND-joins Keep places with more than one output transitions away from transitions Ø with more than one input places (forbidden are “side actions”) • outdegree(place) à in(out(place)) = {place} OK OK NOT OK

  25. 3.1.2.d Extended FC Nets Softwaretechnologie II 45 Ø An EFC is a net in which the Ø An asymmetric choice net output transition sets of all (AC) is a net in which pairs of places are either • If the output transition sets of disjoint or equal (no all pairs of places are not overlapping output transition disjoint, they are including sets) NOT OK OK OK 45

  26. Reduction of EFC to FC Softwaretechnologie II 46 Reduction is possible because of the requirement of equality of Ø output-transition sets (symmetry)

  27. 3.1.2.d Workflow Nets Softwaretechnologie II 47 In general, workflows are executable sequences of actions, sharing data Ø from several repositories or communicating with streams. Workflow nets are Petri Nets with single sources and single sinks Ø ( single-entry/single-exit) • So that only reducible nets can be specified • They extend DFD with control flow and synchronization • They provide richer operators (AND, XOR, OR), inhibitor arcs, and synchronization protocols Workflow nets are compiled to Petri Nets Ø Further, specialized workflow languages exist, such as Ø • ARIS workflow language • YAWL Yet another workflow language • BPMN Business Process Modeling Notation • BPEL Business Process Execution Language

  28. Softwaretechnologie II 48 Petri Net Syntactic Form Marked Graph Free choice State machine Workflow net (simple DFD) net

  29. Fakultät Informatik - Institut Software- und Multimediatechnik - Softwaretechnologie – Prof. Aßmann - Softwaretechnologie II 3.1.3 Colored Petri Nets as Example of High Level Nets Modularity Refinement Reuse Preparing “reducible graphs” 49

  30. Colored Petri Nets, CPN Softwaretechnologie II 50 Colored (Typed) Petri Nets (CPN) refine Petri nets: Ø • Tokens are typed (colored) • Types are described by data structure language (e.g.,Java, ML, UML class diagrams, data dictionaries, grammars) • Concept of time can be added Full tool support Ø • Fully automated code generation in Java and ML (in contrast to UML) e.g., DesignCPN of Aarhus University http://www.daimi.aau.dk • Possible to proof features about the PN • Net simulator allows for debugging Much better for safety-critical systems than UML, because proofs can be Ø done

  31. Annotations in CPN Softwaretechnologie II 51 Ø Places are annotated by • Token types (STRING x STRING) • Markings of objects and the cardinality in which they occur: 2'(“Uwe”,”Assmann”) Ø Edges are annotated by • Type variables which are unified by unification against the token objects (X,Y) • Guards [ X == 10] • If-Then-Else statements if X < 20 then Y := 4 else Y := 7 • Switch statements • Boolean functions that test conditions

  32. CPN are Modular Softwaretechnologie II 52 A subnet is called a page (module) Ø • Every page has ports • Ports mark in- and out-going transitions/places Transition page : interface contains transitions (transition ports) Ø Place page (state page): interface contains place (place ports) Ø Net class : a named page that is a kind of ”template” or ”class” Ø • It can be instantiated to a net ”object” Reuse of pages and templates possible Ø • Libraries of CPN ”procedures” possible

  33. Robots with Transition Pages, Coupled by Transition Ports Softwaretechnologie II 53 53 Robot 1 free Transition Page Taking Up Laying Down Transitions replicated Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Reused Transition Page Robot 2 free

  34. Robots with Place (State) Pages, Coupled by Replicated State Ports Softwaretechnologie II 54 54 Robot 1 free Place Page Taking Up Laying Down Port states replicated Piece Piece Piece moving Taking Up available ready Taking Up Laying Down Reused Place Page Robot 2 free

  35. CPN are Hierarchical Softwaretechnologie II 55 ► Places and transitions may be hierarchically refined Two pointwise refinement operations: ■ . Replace a transition with a transition page . Replace a state with a state page Refinment condition: Retain the embedding (embedding edges) ■ ► CPN can be arranged as hierarchical graphs (reducible graphs, see later) Large specifications possible, overview is still good ■ Subnet stemming from refinements are also place or transition pages ■

  36. Point-wise Refinement Example Softwaretechnologie II 56 Pointwise refinement: Transition refining page : refines a transition, transition ports ■ Place refining page (s tate refining page) : ■ refines a place, place ports Law of syntactic refinement: The graph interface (attached edges) of a refined node must be retained by the refining page.

  37. Point-wise Refinement Example Softwaretechnologie II 57 Hyperedge refinement: • Hyperedges and regions in PN can be refined

  38. Modularity is Important for Scaling – Industrial Applications of CPN Softwaretechnologie II 58 ► Large systems are constructed as reducible specifications They have 10-100 pages, up to 1000 transitions, 100 token types ■ ► Example: ISDN Protocol specification Some page templates have more than 100 uses ■ Corresponds to millions of places and transitions in the expanded, non-hierarchical ■ net Can be done in several person weeks ■

  39. Fakultät Informatik - Institut Software- und Multimediatechnik - Softwaretechnologie – Prof. Aßmann - Softwaretechnologie II 3.2 Patterns in and Transformations of Petri Nets Petri Nets have a real advantage when • parallel processes and synchronization must be modelled Many concepts can be expressed as PN patterns or with PN complex operators – • Analyzability: Petri Nets can be analyzed for patterns (by pattern matching) • Transformation: Petri Nets can be simplified by automatic transformations 59

  40. Simple PN Buffering Patterns Softwaretechnologie II 60 60 Archive Reservoir Place Stores objects Does not generate objects Permanently active Sink transaction Deletes/Destroys objects Generates objects (Object source, Event source) Process Sequential Intermediate Archive Buffer

  41. Patterns for Synchronization (Barrier) Softwaretechnologie II 61 Coupling processes with parallel continuation Ø Both there?

  42. Patterns for Synchronization (n-Barrier) Softwaretechnologie II 62 Bridges: Transitions between phases Ø All there?

  43. Adding Delays in Transitions by Feedback Loops Softwaretechnologie II 63 Adding a delay token Ø Behaves like a semaphore Ø (lock – unlock critical region)

  44. Adding Delays in Transitions by Feedback Loops Softwaretechnologie II 64 Adding a circular delay net Ø Behaves like a splitter Ø 1 2

  45. Simpler Specification with Special Operators (Transitions) in Workflow Nets Softwaretechnologie II 65 In languages for Workflow nets, such as Ø • ARIS workflow language • YAWL Yet another workflow language • BPMN Business Process Modeling Notation • BPEL Business Process Execution Language Specific transitions have been designed (specific operators) for simpler Ø specification

  46. Complex Transition Operators in Workflow Nets: Join and Split Operators of YAWL Softwaretechnologie II 66 66 AND-Join AND-Split All ingoing places All outgoing places AND AN AN AND are ready are filled (conjuctive input) (conjuctive output) XOR-Join XOR-Split Exactly one of n ingoing Exactly one of the outgoing XOR XO XOR XO places is ready places are filled (disjunctive input) (disjunctive output) OR-Join OR-Split At least one of n (IOR-Split) OR OR OR OR ingoing places is ready Some of the outgoing (selective input) places are filled (selective output)

  47. Simple YAWL example Softwaretechnologie II 67 OR-Booking of travel activities Ø Book Bo Fo Football Ti Tickets ts Book Bo OR OR OR OR Hotel Ho Bo Book Fl Flight

  48. Parallelism Patterns – Transitional Operators Softwaretechnologie II 68 68 Replication and Joining Parallelism Distribution AND AN AN AND Synchronization Barrier Forking AND-Join (AND-Split) Decision Collecting Objects OR OR OR OR Indeterministically From parallel processes (OR-Split) OR-Join

  49. Example: Reduction Semantics of OR-Join Operator Softwaretechnologie II 69 Complex operators refine to special pages with multiple transition ports Ø OR OR

  50. Example: Reduction Semantics of XOR-Join Operator Softwaretechnologie II 70 XOR-Join with bound state (only 1 token can go into a place) Ø XO XOR 1

  51. Example: Reduction Semantics of XOR-Join Operator Softwaretechnologie II 71 XOR-Join can be realized with inhibitor arcs Ø (transition is activated when no token is in the place) XO XOR

  52. Parallelism Patterns – Transitional Operators (2) Softwaretechnologie II 72 Or Ordering Ordering Synchronization AN AND Barrier Jo Join Ordering-AND-Join 2 1

  53. Parallelism Patterns – Transitional Operators (2) Softwaretechnologie II 73 Or Ordering Output Ordering Generator AN AND Ordering-AND-Split Sp Split 2 1

  54. Patterns for Communication Direct Producer-Consumer Softwaretechnologie II 74 message available receive produce send ready message received message store no message

  55. Patterns for Communication Direct Producer-Consumer Softwaretechnologie II 75 message available receive produce send demand message received message store no message

  56. Patterns for Communication Direct Producer-Consumer Softwaretechnologie II 76 message available receive produce send demand message received message store no message

  57. Patterns for Communication Direct Producer-Consumer Softwaretechnologie II 77 message available receive produce send demand message received message store no message

  58. Patterns for Communication Direct Producer-Consumer Softwaretechnologie II 78 message available receive produce send demand message received message store no message

  59. Patterns for Communication Softwaretechnologie II 79 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  60. Patterns for Communication Softwaretechnologie II 80 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  61. Patterns for Communication Softwaretechnologie II 81 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  62. Patterns for Communication Softwaretechnologie II 82 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  63. Patterns for Communication Softwaretechnologie II 83 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  64. Patterns for Communication Softwaretechnologie II 84 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  65. Patterns for Communication Softwaretechnologie II 85 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  66. Patterns for Communication Softwaretechnologie II 86 Producer Consumer with Buffer Ø message available receive produce send demand buffer received message store no message

  67. Patterns for Communication Softwaretechnologie II 87 Producer Consumer with Buffer (size 1 message) Ø message available receive 1 produce send demand buffer received message store no message

  68. Patterns for Communication Softwaretechnologie II 88 Producer Consumer with Buffer (size n message) Ø message available receive n produce send demand buffer received message store no message

  69. Patterns for Communication Softwaretechnologie II 89 Producer Consumer with Buffer Ø and indeterministic delivery OR Split Ø receive demand received message store message available receive produce send demand buffer received message store no message

  70. Patterns for Communication Softwaretechnologie II 90 Producer Consumer with Buffer Ø and broadcast communication AND-Split Ø receive demand received message store message available receive produce send demand buffer received message store no message

  71. Semaphores For Mutual Exclusion Softwaretechnologie II 91 Binary or counting semaphores offer their lock and free operations as Ø transitions Distinguished by the capacity of the semaphore place Ø Lock Lock Free Free

  72. Semaphores For Mutual Exclusion Softwaretechnologie II 92 Binary or counting semaphores offer their lock and free operations as Ø transitions Distinguished by the capacity of the semaphore place Ø Lock Lock Free Free

  73. Semaphores For Mutual Exclusion Softwaretechnologie II 93 Lock Lock Free Free

  74. Semaphores For Mutual Exclusion Softwaretechnologie II 94 Lock Lock Free Free

  75. Dining Philosophers (Shared Resources) Softwaretechnologie II 95 Getting hungry waiting for fork1 waiting for fork2 Lock Lock start eating Free eating Free

  76. Advantage Softwaretechnologie II 96 ► Patterns can be used to model specific requirements ► PN can be checked for patterns by Pattern Matching (context-free Graph Rewriting) Patterns can be restructured (refactorings) ■ Patterns can be composed (composition) ■ PN can be simplified by graph transformation rules ■ ► Further semantic analysis of PN: Parallel, indeterministic systems can be checked for Absence of deadlocks : will the parallel system run without getting stuck? ■ Liveness : will all parts of the system work forever? ■ Fairness : will all parts of the system be loaded equally? ■ Bounded resources : will the system use limited memory, and how much? ■ (important for embedded systems) Whether predicates hold in certain states (model checking) ■

  77. Fakultät Informatik - Institut Software- und Multimediatechnik - Softwaretechnologie – Prof. Aßmann - Softwaretechnologie II How to increase scalability of CPN 3.3 COMPOSABILITY OF CPN 97

  78. Case Study for Composition: Pervasive Healthcare Middleware (PHM) Softwaretechnologie II 98 In development at the Pervasive Computing Center, University of Aarhus Ø • http://www.pervasive-computing.dk/ Basic idea: Ø • Specify the object net and the protocols of an application with UML • Specify the behavior of the object nets with CPN à Describing the behavior of the classes/objects (object lifecycle) • Glue behavior together with page glueing mechanism Electronic patient records (EPR) replace the papers Ø • First version in 2004, on stationary PC and PDA • Next versions for pervasive computing (Smartphone, tablet, wireless): Hospital employees will have access to the patient's data whereever they go, § from Xray to station to laboratories Sessions everywhere § - For instance, medication plans and statistic evaluations are available immediately

  79. Fusing Transition Pages Softwaretechnologie II 99 If two transitions are named with the same global name, the CPN system Ø unifies (merges, fuses) them The resulting fused transition has an AND semantics, waiting for all inputs Ø of all fused transitions With transition fuse, a net A can be extended with a net B constraining Ø some transitions of A by fused transitions of B Page A Page B CreateSession CreateSession

  80. Fusing Place Pages Softwaretechnologie II 100 If two places are named with the same global name, the CPN system Ø unifies (merges, fuses) them The resulting fused place has an OR semantics, waiting for some inputs of Ø all fused places With place fuse, a net A can be extended with a net B augmenting some Ø places of A by fused places of B Page A Page B

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend