refactoring asynchrony in javascript
play

Refactoring Asynchrony in JavaScript Keheliya Gallaba Quinn Hanam, - PowerPoint PPT Presentation

Refactoring Asynchrony in JavaScript Keheliya Gallaba Quinn Hanam, Ali Mesbah, Ivan Beschastnikh Why JavaScript? On the client 2 Why JavaScript? On the client On the server 3 Why JavaScript? On the client On the server Even in


  1. Refactoring 
 Asynchrony in JavaScript Keheliya Gallaba Quinn Hanam, Ali Mesbah, Ivan Beschastnikh

  2. Why JavaScript? On the client 2

  3. Why JavaScript? On the client On the server 3

  4. Why JavaScript? On the client On the server Even in hardware! 4

  5. Why JavaScript? JavaScript has become the modern lingua franca! On the client On the server Even in hardware! 5

  6. JavaScript is single-threaded ! Long running tasks / event handling are managed with API calls that use a callback to notify the caller of events • API call returns immediately • Callback invoked asynchronously Used for: function buttonHandler (event){ 
 ○ HTTP Request/Response alert( "Button Clicked." ); 
 ○ File I/O in Node.js } ○ Mouse click/drag events in $ ( "button" ).click( buttonHandler ); the browser Callbacks make JavaScript responsive! 6

  7. Our previous callbacks study at ESEM 138 popular open source JavaScript subject systems, from 6 distinct categories, with both Client-side & Server-side code. Don't Call Us, We'll Call You: Characterizing Callbacks in JavaScript. Gallaba, Mesbah, Beschastnikh. ESEM 2015 7

  8. Callback prevalence Callback-accepting function definitions ! On average, 10% of all function definitions take callback arguments. ! They are more prevalent in server-side code (10%) than in client- side code (4.5%) . Callback-accepting function callsites ! 19% of all function callsites take callback arguments. ! Callback-accepting function call-sites are more prevalent in server-side code (24%) than in client-side code (9%) . 8

  9. Asynchronous Callbacks – Results 
 ! More than half (56%) of all callbacks are Asynchronous. ! Asynchronous callbacks, on average, appear more frequently in client-side code (72%) than in server- side code (55%) . 9

  10. Callback nesting Nesting Level 1 Notorious for: Callback hell aka Pyramid of 2 3 Doom 2 3 4 10

  11. Callback nesting ! Callbacks are nested up to a depth of 8 . ! There is a peak at nesting level of 2. 11

  12. Error-first Protocol ! JS has no explicit language support for asynchronous error- signaling ! Developer community has a convention : Dedicate the 1st argument in the callback to be a permanent place-holder for error-signalling 12

  13. Error-first Protocol ! JS has no explicit language support for asynchronous error- signaling ! Developer community has a convention : Dedicate the 1st argument in the callback to be a permanent place-holder for error-signalling 13

  14. We found ! 20% of function definitions Error-first Protocol follow the error-first protocol ! JS has no explicit language support for asynchronous error- signaling ! Developer community has a convention : Dedicate the 1st argument in the callback to be a permanent place-holder for error-signalling 14

  15. Async callbacks pain points ! Nesting degrades readability ! Asynchrony and nesting complicates control flow ! Informal error handling idiom of error-first protocol provides no guarantees ! Existing error-handling try/catch mech do not apply ! No at-most-once semantics for callback invocation How can we help with this? 15

  16. Promises to the rescue Promises : a native language feature for solving the Asynchronous composition problem . Without Promises getUser('mjackson', function (error, user) { if (error) { handleError(error); } else { With Promises getNewTweets(user, function (error, tweets) { if (error) { handleError(error); getUser('mjackson') } else { .then(getNewTweets,null) updateTimeline(tweets, function (error) { .then(updateTimeline) if (error) handleError(error); .catch(handleError); }); } }); } }); 16

  17. Promises as an alternative Promise.then(fulfilledHandler, errorHandler) C alled when the promise is fulfilled C alled when a promise fails A promise can be in one of three states: Fulfilled on Success Pending on Error Rejected

  18. Developers want to refactor Callbacks to Promises • Finding Issues Related to Callbacks and Promises on Github promise callback language:JavaScript • Search Query Used: stars:>30 comments:>5 type:issue • Results: 4,342 Issues • Some Comments: We've recently converted pretty large internal codebases They're fairly simple and Personally I'm very pleased from async.js to promises and lightweight , but they make it with the amount of additional the code became smaller , easy to build higher level safety and expressiveness more declarative , and cleaner async constructs. I've gained by using promises. at the same time. 18

  19. Do they refactor Callbacks to Promises? • Finding Refactoring Pull Requests on Github Refactor promises language:Javascript • Search Query Used: stars:>20 type:pr • Results: 451 pull requests “It is not a question of whether doing it or not, but when!” • Common style of refactoring is project-independent and amenable to automation But no mention or use of refactoring tools for this! 19

  20. Goal and contribution of this work Automated refactoring of asynchronous JavaScript callbacks into Promises 20

  21. PromisesLand design Input Refactored Promise creation Promise consumption code code Modify-original Async function Async callsite Error path Callsite Flatten nested definition detector detector extraction conversion promises Wrap-around Detection Conversion Optimization 21

  22. PromisesLand design Input Refactored Promise creation Promise consumption code code Modify-original Async function Async callsite Error path Callsite Flatten nested definition detector detector extraction conversion promises Wrap-around Detection Conversion Optimization • Esprima for AST construction • Estraverse to traverse the AST • Escope for scope analysis • Hackett and Guo points-to analysis + type inference Many analyses are unsound/approximations (good enough in practice!) 22

  23. Design - Detecting Functions with Asynchronous Callbacks An example refactoring candidate function f(cb) { Some known async APIs . . . async (function cb_async(data) { if(error) cb(null, data); else cb(error, null); }); }); Function definition f is a candidate for refactoring if all of following is true. ● Accepts a callback cb ● cb is invoked inside a known Async API inside f (we use a whitelist of these) ● cb is not invoked outside the Async API ● f does not have a return value 23

  24. Design - Transformation function f(cb) { . . . async(function cb_async(data) { if(error) cb(null, data); else cb(error, null); }); } function cb(error, data) { if(error) { // Handle error } else { // Handle data } } f(cb) 24 Refactoring candidate

  25. Design - Transformation Modify Original ● Produces code similar to function f() { return new Promise(function (resolve, reject){ how developers would async(function cb_async(data}) { refactor function f(cb) { if(error) reject(null, data); . ● Refactors only some else resolve(error, null); . instances }); . }); async(function cb_async(data) { if(error) cb(null, data); else cb(error, null); }); } function cb(error, data) { if(error) { // Handle error } else { // Handle data } } f(cb) 25 Refactoring candidate

  26. Design - Transformation Modify Original ● Produces code similar to function f() { return new Promise(function (resolve, reject){ how developers would async(function cb_async(data}) { refactor function f(cb) { if(error) reject(null, data); . ● Refactors only some else resolve(error, null); . instances }); . }); async(function cb_async(data) { if(error) cb(null, data); else cb(error, null); OR }); Wrap-around } ● Transforms most instances function f_new() { function cb(error, data) { ● Produces code that can be return new Promise(function (resolve, reject) { if(error) { f(function(err,data){ more complex than the // Handle error if(err !== null) original } else { return reject(err); // Handle data ● Good if Async is in libraries resolve(data); } }); } }); } f(cb) 26 Refactoring candidate

  27. Design - Transformation Modify Original ● Produces code similar to function f() { return new Promise(function (resolve, reject){ how developers would async(function cb_async(data}) { refactor function f(cb) { if(error) reject(null, data); . ● Refactors only some else resolve(error, null); . instances }); . }); async(function cb_async(data) { if(error) cb(null, data); else cb(error, null); OR }); Wrap-around } ● Transforms most instances function f_new() { function cb(error, data) { ● Produces code that can be return new Promise(function (resolve, reject) { if(error) { f(function(err,data){ reject more complex than the // Handle error if(err !== null) original } else { return reject(err); resolve // Handle data ● Good if Async is in libraries resolve(data); } }); } }); } f(cb) 27 Refactoring candidate

  28. Design - Transforming the Call Site f(cb); f().then(onSuccess, onError); 28

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