an abstract machine for asynchronous programs with
play

An Abstract Machine for Asynchronous Programs with Closures and - PowerPoint PPT Presentation

An Abstract Machine for Asynchronous Programs with Closures and Priority Queues Giorgio Delzanno D. Ancona L. Franceschini M. Leotta E. Prampolini M. Ribaudo F. Ricca FUSTAQ Project 1 DIBRIS, University of Genoa 1 SEED 2016 project funded


  1. An Abstract Machine for Asynchronous Programs with Closures and Priority Queues Giorgio Delzanno D. Ancona L. Franceschini M. Leotta E. Prampolini M. Ribaudo F. Ricca FUSTAQ Project 1 DIBRIS, University of Genoa 1 SEED 2016 project funded by DIBRIS, University of Genova G. Delzanno et al. 1 / 48

  2. Overview Motivations and Goals 1 Abstract Machine for the Host Language 2 Abstract Machine for the Event Loop 3 Formal Reasoning: An Example 4 G. Delzanno et al. 2 / 48

  3. Motivations and Goals Plan Motivations and Goals 1 Abstract Machine for the Host Language 2 Abstract Machine for the Event Loop 3 Formal Reasoning: An Example 4 G. Delzanno et al. 3 / 48

  4. Motivations and Goals Motivatios Project on validation (testing, runtime verification, formal methods) of IoT applications developed in Node.js ”Full Stack Quality of Javascript of Anything” funded by our University Node.js is a JavaScript runtime system built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient Node.js is becoming a standard for IoT applications (for both server- and client-side software) G. Delzanno et al. 4 / 48

  5. Motivations and Goals Motivatios Project on validation (testing, runtime verification, formal methods) of IoT applications developed in Node.js ”Full Stack Quality of Javascript of Anything” funded by our University Node.js is a JavaScript runtime system built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient Node.js is becoming a standard for IoT applications (for both server- and client-side software) G. Delzanno et al. 4 / 48

  6. Motivations and Goals Motivatios Project on validation (testing, runtime verification, formal methods) of IoT applications developed in Node.js ”Full Stack Quality of Javascript of Anything” funded by our University Node.js is a JavaScript runtime system built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient Node.js is becoming a standard for IoT applications (for both server- and client-side software) G. Delzanno et al. 4 / 48

  7. Motivations and Goals Motivatios Project on validation (testing, runtime verification, formal methods) of IoT applications developed in Node.js ”Full Stack Quality of Javascript of Anything” funded by our University Node.js is a JavaScript runtime system built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient Node.js is becoming a standard for IoT applications (for both server- and client-side software) G. Delzanno et al. 4 / 48

  8. Motivations and Goals G. Delzanno et al. 5 / 48

  9. Motivations and Goals Node.js var result = db.query(”SELECT...”); // use result VS db.query(”SELECT...”, function (result) // use result ); G. Delzanno et al. 6 / 48

  10. Motivations and Goals Main Features of Node.js Built on top of Javascript Asynchronous calls to avoid synchronization primitive such as locks Priority queues to model different types of events (input/output, delayed calls, etc); Continuation-style programming: callbacks with highest priority Closures to handle variables used in callbacks but declared in outermost functions G. Delzanno et al. 7 / 48

  11. Motivations and Goals Main Features of Node.js Built on top of Javascript Asynchronous calls to avoid synchronization primitive such as locks Priority queues to model different types of events (input/output, delayed calls, etc); Continuation-style programming: callbacks with highest priority Closures to handle variables used in callbacks but declared in outermost functions G. Delzanno et al. 7 / 48

  12. Motivations and Goals Main Features of Node.js Built on top of Javascript Asynchronous calls to avoid synchronization primitive such as locks Priority queues to model different types of events (input/output, delayed calls, etc); Continuation-style programming: callbacks with highest priority Closures to handle variables used in callbacks but declared in outermost functions G. Delzanno et al. 7 / 48

  13. Motivations and Goals Main Features of Node.js Built on top of Javascript Asynchronous calls to avoid synchronization primitive such as locks Priority queues to model different types of events (input/output, delayed calls, etc); Continuation-style programming: callbacks with highest priority Closures to handle variables used in callbacks but declared in outermost functions G. Delzanno et al. 7 / 48

  14. Motivations and Goals Main Features of Node.js Built on top of Javascript Asynchronous calls to avoid synchronization primitive such as locks Priority queues to model different types of events (input/output, delayed calls, etc); Continuation-style programming: callbacks with highest priority Closures to handle variables used in callbacks but declared in outermost functions G. Delzanno et al. 7 / 48

  15. Motivations and Goals Emitter var EventEmitter = require(’events’); var Emitter = new EventEmitter(); var msg = function msg() { console.log(’ok’); } Emitter.on(’evt1’, msg); Emitter.emit(’evt1’); while (true); G. Delzanno et al. 8 / 48

  16. Motivations and Goals Emitter + Setimmediate var EventEmitter = require(’events’); var Emitter = new EventEmitter(); var msg = function msg() { console.log(’ok’); } Emitter.on(’evt1’, function () { setImmediate(msg); }); Emitter.emit(’evt1’); while (true); G. Delzanno et al. 9 / 48

  17. Motivations and Goals Closures and callbacks function test(){ var d = 5; var foo = function(){ d = 10; } process.nextTick(foo); setImmediate(() => { console.log(d) }) } test(); G. Delzanno et al. 10 / 48

  18. Motivations and Goals Informal semantics test is called synchronously foo is delayed till the end of main (closure is stored in the heap) console.log(d) is postponed to the next tick (closure stored in the heap) when the main terminates foo updates d in the next loop tick console.log prints the updated value 10 G. Delzanno et al. 11 / 48

  19. Motivations and Goals Informal semantics test is called synchronously foo is delayed till the end of main (closure is stored in the heap) console.log(d) is postponed to the next tick (closure stored in the heap) when the main terminates foo updates d in the next loop tick console.log prints the updated value 10 G. Delzanno et al. 11 / 48

  20. Motivations and Goals Informal semantics test is called synchronously foo is delayed till the end of main (closure is stored in the heap) console.log(d) is postponed to the next tick (closure stored in the heap) when the main terminates foo updates d in the next loop tick console.log prints the updated value 10 G. Delzanno et al. 11 / 48

  21. Motivations and Goals Informal semantics test is called synchronously foo is delayed till the end of main (closure is stored in the heap) console.log(d) is postponed to the next tick (closure stored in the heap) when the main terminates foo updates d in the next loop tick console.log prints the updated value 10 G. Delzanno et al. 11 / 48

  22. Motivations and Goals Informal semantics test is called synchronously foo is delayed till the end of main (closure is stored in the heap) console.log(d) is postponed to the next tick (closure stored in the heap) when the main terminates foo updates d in the next loop tick console.log prints the updated value 10 G. Delzanno et al. 11 / 48

  23. Motivations and Goals For Devs Only? Dev documentation is not clear at all Program semantics can be very hard to understand Non-determinism due to possible reorderings of events and delay of asynchronous operations Program transformations and design patterns are often used to simplify Node.js programs Formal semantics/reasoning to increase software quality! G. Delzanno et al. 12 / 48

  24. Motivations and Goals For Devs Only? Dev documentation is not clear at all Program semantics can be very hard to understand Non-determinism due to possible reorderings of events and delay of asynchronous operations Program transformations and design patterns are often used to simplify Node.js programs Formal semantics/reasoning to increase software quality! G. Delzanno et al. 12 / 48

  25. Motivations and Goals For Devs Only? Dev documentation is not clear at all Program semantics can be very hard to understand Non-determinism due to possible reorderings of events and delay of asynchronous operations Program transformations and design patterns are often used to simplify Node.js programs Formal semantics/reasoning to increase software quality! G. Delzanno et al. 12 / 48

  26. Motivations and Goals For Devs Only? Dev documentation is not clear at all Program semantics can be very hard to understand Non-determinism due to possible reorderings of events and delay of asynchronous operations Program transformations and design patterns are often used to simplify Node.js programs Formal semantics/reasoning to increase software quality! G. Delzanno et al. 12 / 48

  27. Motivations and Goals For Devs Only? Dev documentation is not clear at all Program semantics can be very hard to understand Non-determinism due to possible reorderings of events and delay of asynchronous operations Program transformations and design patterns are often used to simplify Node.js programs Formal semantics/reasoning to increase software quality! G. Delzanno et al. 12 / 48

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