Academic-owned Java library transforms, rewrites, analyzes, and transpiles code

Share
  • January 24, 2019

There’s no shortage of helpful open source Java libraries! We love diving deep and today we looking at at Spoon. Created by Inria, the French National Institute for computer science and applied mathematics, Spoon allows you to transform and analyze Java code.

Have you used this academic library yet? Come and get your check-out card.

The library is open (source)

SEE ALSO: Meet Apron – A small library for advanced Java properties

Spoon’s lengthy history passed it through several hands. GitHub user tdurieux commented on November 3, 2018 about Spoon’s creation. “The Spoon project started at the beginning of 2007 with Renaud Pawlak as a tool for research…The Spoon architecture did not massively change since that period.” After this fact, it was paid for by Inria. However, as tdurieux goes on to explain, now Spoon is maintained by the open source community: “half academic and half industry”. (You can read more about the timeline here.)

So, what does Spoon do?

From GitHub:

Spoon is a library to analyze, transform, rewrite, transpile Java source code (incl Java 9 & Java 10). It parses source files to build a well-designed AST with powerful analysis and transformation API. Made at Inria with ❤️, 🍻 and ✨. http://spoon.gforge.inria.fr/

According to Spoon’s design philosophy, it stays as true as possible to the original Java language concepts.

Powerful, yet easy transformations

SEE ALSO: How to fix a VirtualMachineError in Java

The latest version, Spoon 7.1.0 released on October 10, 2018. With the latest update, a host of new features, improved documentation, and bug fixes (what’s an update without a few?) came to the table. This includes updated performance issues, added support for javadoc inline tags, and added encoding detection callback.

View an example and learn how to make your first transformation!

For academic usage, you must cite “Spoon: A Library for Implementing Analyses and Transformations of Java Source Code” in your work. (Of course, for those interested in this library and computer science this paper is a treasure trove to explore! We highly recommend giving it at least a good browse.)

Just a few features worth stirring around:

  • Queries: Added in Spoon 5.5, queries can be chained, and reused
  • Filters: A Filter defines a predicate of the form of a matches method that returns true if an element has to be selected in the filtering operation.
  • Matching elements
  • Patterns: Create a Spoon pattern for finding elements with PatternBuilder

Downloading Spoon

Compiling Spoon requires the JDK and Maven.

Need help?

Thankfully, the community for Spoon is fairly large and active. Since it has been around for so long, experts aplenty have advice and know-how. (Not to mention that some of the top minds helped create and support it!) Pull requests welcome!

The post Academic-owned Java library transforms, rewrites, analyzes, and transpiles code appeared first on JAXenter.

Source : JAXenter