mining source code 3
play

Mining Source Code^3 Mining Idioms, Usages and Edits Dario Di Nucci - PowerPoint PPT Presentation

Mining Source Code^3 Mining Idioms, Usages and Edits Dario Di Nucci Research Fellow dario.di.nucci@vub.be Mining Software Repositories 3 Software Repositories? Issue Trackers Versioning Systems Archived Communication Market Places


  1. Mining Source Code^3 Mining Idioms, Usages and Edits Dario Di Nucci Research Fellow dario.di.nucci@vub.be

  2. Mining Software Repositories � 3

  3. Software Repositories? Issue Trackers Versioning Systems Archived Communication Market Places � 4

  4. Why Software Repositories? Data Actionable Creation Findings Archived Software Complexity Communi cation Issue Fault Prediction Trackers Effort Estimation Versioning Change Propagation Systems Market Software Evolution Visualization Places Data Machine Software Extraction Learning History � 5

  5. Intelligent Modernisation 
 Assistance for 
 Legacy Software @intimals_proj soft.vub.ac.be/intimals � 6

  6. Problem & context migration & compiler experts maintenance services modernise legacy software Increasing demand Requires significant for such services manual work � 7

  7. Goal Towards an intelligent modernisation assistant for legacy software Key ideas: • Automating migration requires pattern discovery • Mining kinds of patterns in 3 use cases for 3 objectives use case 1 use case 2 use case 3 Objective A Objective B Objective C � 8

  8. 
 
 
 
 
 Uses cases use case 1 
 use case 2 use case 3 Coding idioms and Library usage protocols Systematic edits or programming and violations repetitive changes conventions Code Syntax Code Semantic Code Evolution � 9

  9. 
 Objectives Provide insights in legacy code Objective A 
 Program comprehension Detect potential inconsistencies in legacy code Objective B 
 Anomaly detection Provide recommendations to engineers for improving Objective C 
 legacy code Modernisation assistance � 10

  10. Approach previously unknown 
 software patterns Pattern mining algorithms Pattern mining algorithms Pattern mining algorithms Modernisation assistant browser for patterns and instances on-demand partial pattern matching pro-active recommendations Data + MetaModel Code Importers • open source software • legacy software � 11

  11. Mining Code Idioms � 12

  12. Context: Code Idioms A syntactic fragment that recurs across software projects and serves a single semantic purpose. M. Allamanis and C. Sutton “Mining idioms from source code" in 22nd ACM SIGSOFT International Symposium � 13 on Foundations of Software Engineering, 2014, pp. 472-483.

  13. Context: Code Idioms A syntactic fragment that recurs across software projects and serves a single semantic purpose. … if (c != null) { … … try { try { try { if (c.moveToFirst()) { if (c2.moveToFirst()) { if (newCursor.moveToFirst()) { number = c.getString( number = c2.getString( number = “-1” c.getColumnIndex( c2.getColumnIndex( } phoneColumn)); mobilePhoneColumn)); } finally { } } newCursor.close(); } finally { } finally { } c.close(); c2.close(); … } } } … … M. Allamanis and C. Sutton “Mining idioms from source code" in 22nd ACM SIGSOFT International Symposium � 13 on Foundations of Software Engineering, 2014, pp. 472-483.

  14. Context: Code Idioms A syntactic fragment that recurs across software projects and serves a single semantic purpose. … if (c != null) { … … try { try { try { if (c.moveToFirst()) { if (c2.moveToFirst()) { if (newCursor.moveToFirst()) { number = c.getString( number = c2.getString( number = “-1” c.getColumnIndex( c2.getColumnIndex( } phoneColumn)); mobilePhoneColumn)); } finally { } } newCursor.close(); } finally { } finally { } c.close(); c2.close(); … } } } … … try { if ($(Cursor).moveToFirst()) { $BODY$ } } finally { $(Cursor).close(); } } M. Allamanis and C. Sutton “Mining idioms from source code" in 22nd ACM SIGSOFT International Symposium � 13 on Foundations of Software Engineering, 2014, pp. 472-483.

  15. Mining for Code Idioms Recognise code idioms manually can be tedious and error-prone! Applying frequent itemset algorithms could lead to “boring” idioms. We are implementing a language-parametric framework to: • Explore novel pattern mining algorithms for source code • Incorporate them in an intelligent software modernisation assistant tool set Applications: • Discover syntactic patterns • Discover code deviating from expected patterns • Propose actions to improve with respect of idioms � 14

  16. Overview FREQuent Tree mining algorithm � 15

  17. Limitations and Possible Solutions • Highly time consuming • Generates a large amount of patterns as well as redundant patterns • Some patterns are more related to the grammar of the language than to the coding style Heuristics and constraints could How to evaluate Setting constraints is help to reduce the interesting patterns? not straightforward! search space! � 16

  18. Summary • We developed a language-parametric framework to mine code idioms. • Currently based on FREQ uent T ree miner. • Work in progress: • Reducing the search space by applying heuristics and constraints • Understanding idioms to improve the mining process @dardin88 dario.di.nucci@vub.be � 17

  19. Mining Usages � 18

  20. Context: Library Usages Enable code reuse Provide high-level abstractions for common tasks How to use a library? How to use a framework? Client Code Library Client Code Only the functionalities it provides Necessary or common to extend or can be used. customise its functionality. Application Code Third-party Code � 19

  21. How are Extension Points used ? What kinds of extension points are used infrequently? What extension point should be used? Which extension points are more error-prone or How are extension points usually used? complex to use? Extension Patterns M. Asaduzzaman, C. K. Roy, K. A. Schneider, and D. Hou, “Recommending framework extension examples” in � 20 IEEE International Conference on Software Maintenance and Evolution, 2017, pp. 456–466.

  22. Extending a Framework Extension Point package org.apache.spark class SparkContext(config: SparkConf) extends Logging { Client Code //… def addSparkListener(listener: SparkListenerInterface):{ //… } //… } Extension Point Usage import org.apache.spark._ //… val listener = new SaveInfoListener val sc = new SparkContext(“local”, “test”) sc.addSparkListener(listener) � 21

  23. Simple Extension Point Usage package org.apache.spark class SparkContext(config: SparkConf) extends Logging { //… def addSparkListener(listener: SparkListenerInterface):{ //… } Extension Point //… private class SaveInfoListener extends SparkListener { //… } //… } import org.apache.spark._ //… Extension Point Usage val listener = new SaveInfoListener val sc = new SparkContext(“local”, “test”) sc.addSparkListener(listener) � 22

  24. Customise Extension Point Usage package org.apache.spark class SparkContext(config: SparkConf) extends Logging { //… def addSparkListener(listener: SparkListenerInterface):{ //… } Extension Point //… private class SaveInfoListener extends SparkListener { //… def awaitNextJobCompletion(): Unit = { //… } //… } import org.apache.spark._ //… val listener = new SaveInfoListener Extension Point Usage listener.awaitNextJobCompletion() val sc = new SparkContext(“local”, “test”) sc.addSparkListener(listener) � 23

  25. Extend Extension Point Usage package org.apache.spark class SparkContext(config: SparkConf) extends Logging { //… def addSparkListener(listener: SparkListenerInterface):{ //… Extension Point } //… } import org.apache.spark._ //… class StageInfoRecorderListener extends SparkListener { override def onJobStart(jobStart: SparkListenerJobStart): Unit = { //… } override def onStageCompleted(stageCompleted: SparkListenerStageCompleted): Unit = { //… } //… } //… Extension Point Usage import org.apache.spark._ case class StageMetrics(sparkSession: SparkSession) { sparkSession.sparkContext.addSparkListener(new StageInfoRecorderListener) //… } � 24

  26. Overview of Scala-XP-Miner APriori algorithm Y. Pacheco, J. De Bleser, T. Molderez, D. Di Nucci, W. De Meuter, and C. De Roover “Mining Scala Framework � 25 Extensions for Recommendation Patterns” in IEEE SANER, 2019, to be presented.

  27. Scala-XP-Miner: Importer import org.apache.spark._ case class StageMetrics(sparkSession: SparkSession) { sparkSession.sparkContext.addSparkListener(new StageInfoRecorderListener) //… } org/apache/spark/SparkContext method_call addSparkListener() parameter org/apache/spark/scheduler/SparkListenerInterface Extension Graph argument ch/cern/sparkmeasure/StageInfoRecorderListener override extends override onStageCompleted() org/apache/spark/scheduler/SparkListenerInterface onJobStart() RECEIVER TYPE METHOD CALL PARAMETER TYPE ARGUMENT TYPE IMPLEMENTED INTERFACE OVERRIDING METHOD EXTENDED OTHER METHOD CALLS FRAMEWORK METHOD CALL. � 26

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