active objects
play

Active Objects INF4140 16.11.11 Lecture 12 INF4140 (16.11.11) - PowerPoint PPT Presentation

Active Objects INF4140 16.11.11 Lecture 12 INF4140 (16.11.11) Active Objects Lecture 12 1 / 27 Aims for this lecture About distributed object-oriented systems and Introduction to Creol Consider the combination of OO, concurrency, and


  1. Active Objects INF4140 16.11.11 Lecture 12 INF4140 (16.11.11) Active Objects Lecture 12 1 / 27

  2. Aims for this lecture About distributed object-oriented systems and Introduction to Creol Consider the combination of OO, concurrency, and distribution Understanding active objects interacting by asynchronous method calls A short introduction into (a variant of) Creol using small example programs Note: Inheritance and dynamic object creation not considered here. INF4140 (16.11.11) Active Objects Lecture 12 2 / 27

  3. Open Distributed Systems Consider systems of communicating software units Distribution : geographically spread components Networks may be asynchronous and unstable Component availability may vary over time Evolution : systems change at runtime New requirements / bug fixes Network Changing environments Mars Rovers reprogrammed 11 times since landing on Mars! ODS dominate critical infrastructure in society: bank systems, air traffic control, etc. ODS: complex , error prone , and poorly understood INF4140 (16.11.11) Active Objects Lecture 12 3 / 27

  4. Challenges with OO languages for modern systems Modern systems are often large and complex, with distributed, autonomous units connected through different kinds of networks. OO + distribution efficient interaction (passive/active waiting), OO + concurrency synchronization, blocking, deadlock OO + asynchronous communication messages on top of OO or method-based communication? problems with RPC/RMI OO + openness reprogramming at runtime OO + scalability management of large systems INF4140 (16.11.11) Active Objects Lecture 12 4 / 27

  5. Active and Passive Objects Passive objects Execute their methods in the caller’s thread of control (e.g., Java) In multithreaded applications, must take care of synchronization Shared variable interference for non-synchronized methods If two objects call the same object, race condition may occur Active (or concurrent) objects Execute their methods in their own thread of control (e.g., Actors) Communication is asynchronous Call and return are decoupled (future variables) Cooperative multitasking, specified using schedulers INF4140 (16.11.11) Active Objects Lecture 12 5 / 27

  6. Motivation and Desires behind Creol Integration of OO + distribution + concurrency + openness integration of requirement and guarantee specifications simplicity of semantics, and formal analysis powerful tools based on the semantics: prototyping, simulation, verification and validation tools scalability ensured by compositionality and abstraction mechanisms dynamic reconfiguration/reprogramming with incremental reasoning support INF4140 (16.11.11) Active Objects Lecture 12 6 / 27

  7. Creol: A Concurrent Object Model All objects are active (or concurrent), but may receive requests Need easy way to combine active and passive/reactive behavior We don’t always know how objects are implemented Separate specification (interface) from implementation (class) Object variables are typed by interface , not by class No assumptions about the (network) environment Communication may be unordered Communication may be delayed Execution should adapt to possible delays in the environment Synchronization decided by the caller Method invocations may be synchronous or asynchronous Systems evolve at runtime Support for dynamic reprogramming INF4140 (16.11.11) Active Objects Lecture 12 7 / 27

  8. Interfaces as types Object variables (pointers) are typed by interfaces (other variables are typed by data types) Mutual dependency : An interface may require a cointerface Only objects of cointerface type may call declared methods Explicit keyword caller (identity of calling object) Supports callbacks to the caller through the cointerface All object interaction is controlled by interfaces No explicit hiding needed at the class level Interfaces provide behavioral specifications A class may implement a number of interfaces Type safety : no “method not understood” errors INF4140 (16.11.11) Active Objects Lecture 12 8 / 27

  9. Interfaces Declares a set of method signatures With cointerface requirement interface I inherits I begin with J MtdSig // cointerface J end Method signatures ( MtdSig ) of the form: op m ✭ in x : I out y : I ✮ method mame m with in-parameters x and out-parameters y Parameter types may also range over data types ( Bool , Int , String . . . ) INF4140 (16.11.11) Active Objects Lecture 12 9 / 27

  10. Interfaces: Example Consider the mini bank example from last week We have ❈❧✐❡♥t , ❆❚▼ , and ❈❡♥tr❛❧❇❛♥❦ objects Clients may support the following interface: interface ❈❧✐❡♥t begin with ❆❚▼ op ♣✐♥✭ out ♣ ✿ ■♥t✮ op ❛♠♦✉♥t✭ out ❛ ✿ ■♥t✮ end only ❆❚▼ objects may call the ♣✐♥ and ❛♠♦✉♥t methods INF4140 (16.11.11) Active Objects Lecture 12 10 / 27

  11. Interfaces: Example (cont.) ❆❚▼ and ❈❡♥tr❛❧❇❛♥❦ interfaces: interface ❆❚▼ begin with ❈❧✐❡♥t op ✇✐t❤❞r❛✇✭ in ♥❛♠❡ ✿ ❙tr✐♥❣ out r❡s✉❧t ✿ ❇♦♦❧✮ end interface ❈❡♥tr❛❧❇❛♥❦ begin with ❆❚▼ op r❡q✉❡st✭ in ♥❛♠❡ ✿ ❙tr✐♥❣✱ ♣✐♥ ✿ ■♥t✱ ❛♠♦✉♥t ✿ ■♥t out r❡s✉❧t ✿ ❇♦♦❧✮ end INF4140 (16.11.11) Active Objects Lecture 12 11 / 27

  12. Asynchronous Communication Model o 1 o 2 Object o 1 calls some method on object o 2 In o 2: Arbitrary delay after invocation arrival and method startup In o 1: Arbitrary delay after completion arrival and reading the return INF4140 (16.11.11) Active Objects Lecture 12 12 / 27

  13. Main ideas of Creol: Programming perspective Main ideas: Asynchronous communication Avoid undesired inactivity Other processes may execute while some process waits for a reply Combine active and reactive behavior In the language, this is achieved by statements for asynchronous method calls and processor release Note: Relase points enable interleaving of active and reactive code Note: No need for signaling / notification INF4140 (16.11.11) Active Objects Lecture 12 13 / 27

  14. Execution inside a Creol Object Concurrent objects encapsulate a processor Execution in objects should adapt to environment delays At most one active process at a time Implicit scheduling between internal processes inside an object Object STATE INF4140 (16.11.11) Active Objects Lecture 12 14 / 27

  15. Internal Processes in Concurrent Objects Process (method activation): code + local variable bindings (local state) Object : state + active process + suspended processes Asynchronous invocation: t ! o . m ( In ) The label t identifies the call Reading the result: t ?( Out ) Processor release points Declared by await statements: await guard Guards can be t ? Boolean condition and also method call If a guard evaluates to false the active process is suspended If no process is active, any suspended process may be activated if its guard evaluates to true. INF4140 (16.11.11) Active Objects Lecture 12 15 / 27

  16. Statements for object communication Objects communicate through method invocations only Different ways to invoke a method m Decided by caller — not at method declaration site Guarded invocation: t ! o . m ( In ); . . . ; await t ?; t ?( Out ) Label free abbreviations for standard patterns: o . m ( In ; Out ) = t ! o . m ( In ); t ?( Out ) — synchronous call await o . m ( In ; Out ) = t ! o . m ( In ); await t ?; t ?( Out ) ! o . m ( In ) — no reply needed Internal calls: m ( In ; Out ) , t ! m ( In ) , ! m ( In ) Internal calls may also be asynchronous/guarded INF4140 (16.11.11) Active Objects Lecture 12 16 / 27

  17. Creol syntax Syntactic categories. Definitions . g ::= φ | t ? | g 1 ∧ g 2 t ✐♥ Label p ::= o . m | m g ✐♥ Guard S ::= s | s ; S p ✐♥ MtdCall s ::= skip | begin S end | S 1 � S 2 S ✐♥ ComList | x := e | x := new classname ( e ) s ✐♥ Com | if b then S 1 else S 2 end x ✐♥ VarList | while b do S end e ✐♥ ExprList | ! p ( e ) | t ! p ( e ) | t ?( x ) | p ( e ; x ) m ✐♥ Mtd | await g | await p ( e ; x ) o ✐♥ ObjExpr | release b ✐♥ BoolExpr Omit the functional language for expressions e here: this, caller, strings, integers, lists, sets, maps, etc INF4140 (16.11.11) Active Objects Lecture 12 17 / 27

  18. Example: ❈❡♥tr❛❧❇❛♥❦ implementation class ❇❛♥❦ implements ❈❡♥tr❛❧❇❛♥❦ begin var ♣✐♥ ✲✲ ♣✐♥ ❝♦❞❡s✱ ✐♥❞❡①❡❞ ❜② ♥❛♠❡ var ❜❛❧ ✲✲ ❜❛❧❛♥❝❡s✱ ✐♥❞❡①❡❞ ❜② ♥❛♠❡ with ❆❚▼ op r❡q✉❡st✭ in ♥❛♠❡ ✿ ❙tr✐♥❣✱ ♣✐♥ ✿ ■♥t✱ ❛♠♦✉♥t ✿ ■♥t out r❡s✉❧t ✿ ❇♦♦❧✮ ❂❂ if ✭♣✐♥❬♥❛♠❡❪ ❂ ♣✐♥ ✫✫ ❜❛❧❬♥❛♠❡❪ ❃❂ ❛♠♦✉♥t✮ then r❡s✉❧t ✿❂ true else r❡s✉❧t ✿❂ false end end INF4140 (16.11.11) Active Objects Lecture 12 18 / 27

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