augmenting stack overflow with api usage patterns mined
play

Augmenting Stack Overflow with API Usage Patterns Mined from GitHub - PowerPoint PPT Presentation

Augmenting Stack Overflow with API Usage Patterns Mined from GitHub Anastasia Reinhart 1,2 * Tianyi Zhang 1 Mihir Marthur 1 Miryung Kim 1 1 University of California, Los Angeles 2 George Fox University * Work done as a research intern at UCLA. 1


  1. Augmenting Stack Overflow with API Usage Patterns Mined from GitHub Anastasia Reinhart 1,2 * Tianyi Zhang 1 Mihir Marthur 1 Miryung Kim 1 1 University of California, Los Angeles 2 George Fox University * Work done as a research intern at UCLA. 1

  2. Using APIs properly is becoming a key challenge Android SDK e.g., JDK APIs 2

  3. The Status Quo of Learning APIs Developers often search online for code examples to learn APIs [Sadowski et al. 2016] 3

  4. The Limitation of Online Code Examples • Programmers can only inspect a handful of search results. [Brandt et al., 2009, Starke et al., 2009, Duala-Ekoko and Robillard, 2012] • Individual code examples may suffer from – insecure coding practices [Fischer et al., 2017] – unchecked obsolete usage [Zhou and Walker, 2016] – low readability [Treude and Robillard, 2017] 4

  5. The Limitation of Online Code Examples • Programmers can only inspect a handful of search results. [Brandt et al., 2009, Starke et al., 2009, Duala-Ekoko and Robillard, 2012] A recent study shows that 31% of SO posts have potential API • Individual code examples may suffer from usage violations. – insecure coding practices [Fischer et al., 2017] – unchecked obsolete usage [Zhou and Walker, 2016] Zhang et al., Are Online Code Examples Reliable? A Study of API Misuse on – low readability [Treude and Robillard, 2017] Stack Overflow, ICSE 2018 Dataset: http://web.cs.ucla.edu/~tianyi.zhang/examplecheck.html 5

  6. Missing If Checks https://stackoverflow.com/questions/21983867 6

  7. Missing If Checks This example throws NoSuchElementException. You should not call firstKey on an empty TreeMap. 7

  8. Missing API Calls https://stackoverflow.com/questions/12100651 8

  9. Missing API Calls This example throws BufferUnderflowException. You must call ByteBuffer.flip() to reset the internal buffer. https://stackoverflow.com/questions/12100651 9

  10. ExampleCheck: Augmenting Stack Overflow with API Usage Patterns Mined from GitHub 10

  11. Now available at Chrome Web Store! 11

  12. ExampleCheck Workflow ExampleCheck Server Web Browser Stack Overflow Code ... API usage mining Extraction API misuse <code> on GitHub … (offline) </code> Pop up … API Misuse Detection Generation 12

  13. API Usage Mining from GitHub [ICSE 2018] 2 1 Frequent Code Program Call Sequence Sequence Mining Search Slicing Extraction 3 API usage 380K Java Repositories on GitHub Structured API SMT-based Guard patterns call sequences Condition Mining 13

  14. Insight 1: Mining a Large Code Corpus • Our code corpus includes 380K GitHub projects with at least 100 revisions and 2 contributors. 2 1 Frequent Code Program Call Sequence Sequence Mining Search Slicing Extraction API usage 3 380K Java Repositories on GitHub Structured API SMT-based Guard patterns call sequences Condition Mining Dyer et al. Boa: A language and infrastructure for analyzing ultra-large-scale software repositories. ICSE 2013. 14

  15. Insight 2: Removing Irrelevant Statements via Program Slicing • We perform backward and forward slicing to identify data- and control-dependent statements to an API method of interest. 2 1 Frequent Code Program Call Sequence Sequence Mining Search Slicing Extraction API usage 3 380K Java Repositories on GitHub Structured API SMT-based Guard patterns call sequences Condition Mining 15

  16. void initInterfaceProperties(String temp, File dDir) { if(!temp.equals("props.txt")) { GitHub example of log.error("Wrong Template."); return; File.createNewFile } // load default properties FileInputStream in = new FileInputStream(temp); Properties prop = new Properties(); prop.load(in); ... init properties ... // write to the property file String fPath=dDir.getAbsolutePath()+"/interface.prop"; File file = new File(fPath); if(!file.exists()) { The focal file.createNewFile(); API method } FileOutputStream out = new FileOutputStream(file); prop.store(out, null); in.close(); 16 }

  17. void initInterfaceProperties(String temp, File dDir) { if(!temp.equals("props.txt")) { Data dependency up to one log.error("Wrong Template."); hop, i.e., direct dependency return; } // load default properties FileInputStream in = new FileInputStream(temp); Properties prop = new Properties(); prop.load(in); ... init properties ... // write to the property file String fPath=dDir.getAbsolutePath()+"/interface.prop"; control File file = new File(fPath); if(! file .exists()) { The focal data file .createNewFile(); API method } FileOutputStream out = new FileOutputStream( file ); prop.store(out, null); in.close(); 17 }

  18. Insight 3: Capture the Semantics of API Usage • It is important to capture the temporal ordering, enclosing control structures, and appropriate guard conditions of API calls. 2 1 Frequent Code Program Call Sequence Sequence Mining Search Slicing Extraction 3 API usage 380K Java Repositories on GitHub Structured API SMT-based Guard patterns call sequences Condition Mining 18

  19. Insight 3: Capture the Semantics of API Usage Grammar of Structured Call Sequences new File (String); try {; new FileInputStream(File)@arg0.exists(); } catch (IOException) {; } 19

  20. Insight 3: Capture the Semantics of API Usage Grammar of Structured Call Sequences new File (String); try {; new FileInputStream(File)@arg0.exists(); } catch (IOException) {; } 20

  21. Insight 3: Capture the Semantics of API Usage Grammar of Structured Call Sequences new File (String); try {; new FileInputStream(File)@arg0.exists(); } catch (IOException) {; } 21

  22. Insight 3: Capture the Semantics of API Usage Grammar of Structured Call Sequences new File (String); try {; new FileInputStream(File)@arg0.exists(); } catch (IOException) {; } 22

  23. Insight 4: SMT-based Guard Condition Mining • GitHub developers may write the same predicate in different ways. 2 1 Frequent Code Program Call Sequence Sequence Mining Search Slicing Extraction 3 380K Java Repositories on GitHub Structured API SMT-based Guard call sequences Condition Mining 23

  24. Insight 4: SMT-based Guard Condition Mining • We group guard conditions based on their logic equivalence. • We use Z3 to prove the logic equivalence of guard conditions. • p ⇔ q is valid iff. ¬((¬p ∨ q) ∧ (p ∨ ¬q)) is UNSAT. Two equivalent but syntactically different guard conditions for substring(int): arg0>=0 && arg0<=rcv.length() ⇔ arg0>-1 && arg0<rcv.length()+1 24

  25. API Misuse Detection • Contrast SO code snippets with mined API usage patterns automatically. Temporal query Ordering Check Call Sequence Java Patterns Extraction Guard Condition pattern(s) Check Stack Overflow Structured API snippets call sequences API usage violations 25

  26. Extract Structured Call Sequence JsonObject obj = root.getAsJsonObject(); JsonElement match_number = obj.get("match_number"); ... System.out.println( match_number.getAsString()); SO code example [Post 29860000] 26

  27. Extract Structured Call Sequence JsonObject obj = root.getAsJsonObject(); getAsJsonObject()@true; JsonElement match_number = extract get(String)@true; obj.get("match_number"); ... ... getAsString()@true; System.out.println( match_number.getAsString()); println(String)@true Structured Call Sequence SO code example [Post 29860000] 27

  28. Extract Structured Call Sequence JsonObject obj = root.getAsJsonObject(); getAsJsonObject()@true; JsonElement match_number = extract get(String)@true; obj.get("match_number"); ... ... getAsString()@true; System.out.println( match_number.getAsString()); println(String)@true Structured Call Sequence SO code example [Post 29860000] 28

  29. API Usage Pattern for JsonElement.getAsString() getAsJsonObject()@true; try {; get(String)@true; getAsString() @rcv.isJsonPrimitive(); ... }; getAsString() @true; catch (Exception) {; println(String)@true }; Structured Call Sequence An API Usage Pattern of JsonElement.getAsString() 29

  30. Temporal Ordering Check getAsJsonObject()@true; try {; get(String)@true; getAsString () @rcv.isJsonPrimitive(); ... }; getAsString() @true; catch (Exception) {; println(String)@true }; Structured Call Sequence An API Usage Pattern of JsonElement.getAsString() missing a try-catch block! 30

  31. Guard Condition Check getAsJsonObject()@true; try {; get(String)@true; getAsString()@ rcv.isJsonPrimitive() ; ... }; getAsString()@ true ; catch (Exception) {; println(String)@true }; Structured Call Sequence An API Usage Pattern of JsonElement.getAsString() true ⇏ rcv.isJsonPrimitive() and thus incorrect guard condition! 31

  32. Evaluation Results [ICSE 2018] • 31% of 217K SO posts contain API usage violations. • 72% of sampled posts with violations may cause program crashes, resource leaks, etc. • Highly-voted posts are not necessarily more reliable in terms of correct API usage. 32

  33. Live Demo 33

  34. Summary • Alert users about potential API usage violations in Stack Overflow using patterns mined from 380K GitHub projects • Expand the scope of APIs beyond 100 Java and Android APIs • Automate the end-to-end pipeline of API usage mining to keep API usage patterns up-to-date Tool: https://chrome.google.com/webstore/detail/examplecheck/ amliempebckaiaklimcpopomlnklkioe Dataset: http://web.cs.ucla.edu/~tianyi.zhang/examplecheck.html 34

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