Semantic patches for Java program transformation (experience report)

Hong Jin KANG, Singapore Management University
Thung Ferdian, Singapore Management University
Julia LAWALL
Gilles MULLER
Lingxiao JIANG, Singapore Management University
David LO, Singapore Management University

authors' own version

Abstract

Duplicate record, see https://ink.library.smu.edu.sg/sis_research/4485. Developing software often requires code changes that are widespread and applied to multiple locations. There are tools for Java that allow developers to specify patterns for program matching and source-to-source transformation. However, to our knowledge, none allows for transforming code based on its control-flow context. We prototype Coccinelle4J, an extension to Coccinelle, which is a program transformation tool designed for widespread changes in C code, in order to work on Java source code. We adapt Coccinelle to be able to apply scripts written in the Semantic Patch Language (SmPL), a language provided by Coccinelle, to Java source files. As a case study, we demonstrate the utility of Coccinelle4J with the task of API migration. We show 6 semantic patches to migrate from deprecated Android API methods on several open source Android projects. We describe how SmPL can be used to express several API migrations and justify several of our design decisions.