visualizing api usage examples at scale
play

Visualizing API Usage Examples at Scale Elena L. Glassman 1 *, - PowerPoint PPT Presentation

Visualizing API Usage Examples at Scale Elena L. Glassman 1 *, Tianyi Zhang 2 *, Bjrn Hartmann 1 , Miryung Kim 2 1 University of California, Berkeley 2 University of California, Los Angeles The two lead authors contributed equally to the work as


  1. Visualizing API Usage Examples at Scale Elena L. Glassman 1 *, Tianyi Zhang 2 *, Björn Hartmann 1 , Miryung Kim 2 1 University of California, Berkeley 2 University of California, Los Angeles The two lead authors contributed equally to the work as part of an equal collaboration between both institutions.

  2. Using APIs properly is a key challenge in programming e.g., Java APIs

  3. Status quo for answering “How have others used this API?” Developers often search online for code examples to learn APIs [Sadowski et al., 2016]

  4. Status quo for answering “How have others used this API?” • Programmers only inspect a few of search results. [Brandt 2009, Starke 2009, Duala-Ekoko & Robillard 2012] • Individual code examples may suffer from • API usage violations [Zhang 2018] • insecure coding practices [Fischer 2017] • unchecked obsolete usage [Zhou & Walker 2016] • low readability [Treude & Robillard 2017]

  5. How can we enable programmers to inspect more examples?

  6. Code Demography: How is EVERYONE using this API?

  7. "How do other people create a FileInputStream object?" API Usage Questions: API call of interest • What arguments to pass into this call? • How do I create these arguments? • Do I need to check any pre-condition? new FileInputStream() • What other methods to call together? • What exception(s) does it throw? • How do I handle the created object? ... [Ko et al. 2004, Duala-Ekoko & Robillard 2012]

  8. Designing an API Skeleton What What other new FileInputStream() exception(s) Focal API call methods are called are thrown? before and after? 8

  9. Examplore : Visualizing Code Examples at Scale label and collate into code skeleton crawl new FileInputStream() Interactive visualization Focal API Many code examples showing common usage using this call and frequency

  10. Mining API Usage from a Large Code Corpus if (file != null) { return new FileInputStream(file); } else { return new ByteArrayInputStream(… } File file = new File(_basePath + "/" + path); try { return new FileInputStream(file); 380K } catch (FileNotFoundException e) { GitHub throw new IllegalArgumentException(e); repositories } File propertiesFile = getPropertiesFile(); try { InputStream in = new FileInputStream(propertiesFile); workspaceProperties.load(in); } catch (IOException e) { }

  11. Program Slicing and Labeling private void getLatestVersion() { private void getLatestVersion() { // TODO Auto-generated method stub // TODO Auto-generated method stub File temp = new File(Environment.getExternalStorageDirectory().toString() + "/pdTemp"); File temp = new File(Environment.getExternalStorageDirectory().toString() + "/pdTemp"); try { try { List<File> listMain = IoUtils.extractZipResource(new FileInputStream(pdzZipPath), temp, true); List<File> listMain = IoUtils.extractZipResource(new FileInputStream(pdzZipPath), temp, true); API Skeleton Labeled Code Examples if (listMain.size() != 0) { if (listMain.size() != 0) { for (File f : listMain) { if (file != null) { for (File f : listMain) { if (f.isDirectory()) folderName = f.getName(); if (f.isDirectory()) folderName = f.getName(); return new FileInputStream(file); if (f.getAbsolutePath().toLowerCase().contains("droidparty_main.pd")) { if (f.getAbsolutePath().toLowerCase().contains("droidparty_main.pd")) { foundmainPd = true; foundmainPd = true; } else { dpMainfileName = f.getName(); dpMainfileName = f.getName(); InputStream is = new FileInputStream(f); InputStream is = new FileInputStream(f); return new ByteArrayInputStream(… BufferedReader reader = new BufferedReader(new InputStreamReader(is)); BufferedReader reader = new BufferedReader(new InputStreamReader(is)); String line; String line; } File propertiesFile = getPropertiesFile(); File file = new File(_basePath + "/" + path); File file = new File(_basePath + "/" + path); while ((line = reader.readLine()) != null) { while ((line = reader.readLine()) != null) { if (file != null) { String version; String version; try { try { try { if (line.contains(" version: ")) { if (line.contains(" version: ")) { return new FileInputStream(file); Log.d("LatestVersionLine", line); Log.d("LatestVersionLine", line); InputStream in = new FileInputStream(propertiesFile); return new FileInputStream(file); return new FileInputStream(file); version = line.substring(line.lastIndexOf(":") + 1, line.length() - 1); } else { version = line.substring(line.lastIndexOf(":") + 1, line.length() - 1); workspaceProperties.load(in); this.latestVersion = Float.parseFloat(version); } catch (FileNotFoundException e) { } catch (FileNotFoundException e) { this.latestVersion = Float.parseFloat(version); return new ByteArrayInputStream(… break; break; 380K } catch (IOException e) { throw new IllegalArgumentException(e); <corpus with blue highlights> throw new IllegalArgumentException(e); } else { } else { } Github version = "0"; version = "0"; } } File propertiesFile = getPropertiesFile(); } this.latestVersion = Float.parseFloat(version); this.latestVersion = Float.parseFloat(version); repositories } } try { } } reader.close(); reader.close(); InputStream in = new FileInputStream(propertiesFile); Log.d("LatestVersion", latestVersion + ""); Log.d("LatestVersion", latestVersion + ""); break; workspaceProperties.load(in); break; } } } catch (IOException e) { } } if (!foundmainPd) { if (!foundmainPd) { } closePd(); closePd(); } } } else { } else { closePd(); closePd(); } } } catch (Exception e) { } catch (Exception e) { e.printStackTrace(); e.printStackTrace(); } } } }

  12. Code Canonicalization Program Slicing and Labeling Labeled Code Examples if (file != null) { return new FileInputStream(file); } else { return new ByteArrayInputStream(… File file = new File(_basePath + "/" + path); } String try { return new FileInputStream(file); } catch (FileNotFoundException e) { 380K <corpus with blue highlights> throw new IllegalArgumentException(e); Github } repositories File propertiesFile = getPropertiesFile(); file try { InputStream in = new FileInputStream(propertiesFile); stream file stream workspaceProperties.load(in); } catch (IOException e) { }

  13. Back-end Architecture of Code Mining and Slicing AST Type Program Traversal Slicing Annotation Canonicalization java Json MongoDB Feature Extraction 380K Java Projects Sliced examples API usage features from GitHub with annotations

  14. Examplore Interface Mutual Alignment Abstraction API Skeleton if (file != null) { return new FileInputStream(file); } else { return new ByteArrayInputStream(… } File file = new File(String); 3 stream = new FileInputStream(file); try { return new FileInputStream(file); } catch (FileNotFoundException e) { throw new IllegalArgumentException(e); } File file = getPropertiesFile(); try { InputStream stream = new FileInputStream(file); workspaceProperties.load(stream); } catch (IOException e) { }

  15. Examplore Interface Mutual Alignment Abstraction API Skeleton if (file != null) { return new FileInputStream(file); 1 File file = new File(String); } else { 1 File file = getPropertiesFile(); return new ByteArrayInputStream(… } File file = new File(String); 3 stream = new FileInputStream(file); try { return new FileInputStream(file); } catch (FileNotFoundException e) { throw new IllegalArgumentException(e); } File file = getPropertiesFile(); try { InputStream stream = new FileInputStream(file); workspaceProperties.load(stream); } catch (IOException e) { }

  16. Examplore Interface Mutual Alignment Abstraction API Skeleton if (file != null) { return new FileInputStream(file); } else { return new ByteArrayInputStream(… } File file = new File(String); try { return new FileInputStream(file); } catch (FileNotFoundException e) { throw new IllegalArgumentException(e); } File file = getPropertiesFile(); try { InputStream stream = new FileInputStream(file); workspaceProperties.load(stream); } catch (IOException e) { }

  17. Live Demo 18

  18. Theoretical Basis Mutual alignment of contrasting examples • Mutual alignment can promote comprehension and abstraction . • Comparison brings greater insight into the common structure . • Best results come from • jointly interpreting examples • listing specific correspondences across examples [Kurtz et al. Learning by Analogical Bootstrapping , J. Learning Sciences, 2001]

  19. Evaluation Within-Subjects Lab Study on Answering API Usage Questions • Recruited 16 CS students from UC Berkeley • Picked out 3 APIs • 75% of participants had used Map.get • 38% had used SQLiteDatabase.query • 19% had used Activity.findViewById • 50 min user study answering usage questions • 25 min block for API 1 [Baseline / Examplore] • 25 min block for API 2 [Examplore / Baseline]

  20. Evaluation Within-Subjects Lab Study on Answering API Usage Questions Sample of API Usage Questions • Q2. How do I create or initialize the arguments so I can call this API method? • Q6. How do programmers handle the return value of this API method? • Q7. What are the exceptions that programmers catch and how do programmers handle potential exceptions ?

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