MapgieBridge is a framework for integrating Static Analyses into IDEs and Editors with the Language Server Protocol. It is a part of the FutureSoot project. MagpieBridge offers a default implementation of a language server---MagpieServer
which runs analysis; a default TextDocumentService--MagpieTextDocumentService
which handles requests like didOpen, didChange, didSave; a default WorkspaceService--MagpieWorkspaceService
which handles different kinds of code actions and many other useful APIs for static analysis. For more information, please read our paper:
MagpieBridge: A General Approach to Integrating Static Analyses into IDEs and Editors (ECOOP 2019).
A Poster is also available. You can find the IRConverter under https://github.com/MagpieBridge/IRConverter for converting WALA IR to Soot IR, if you want to analyze Java source code with Soot.
For scientific usage, please cite the paper [BibTex].
In a Chinese legend, a human and a fairy fall in love, but this love angers the gods, who separate them on opposite sides of the Milky Way. However, on the seventh day of the seventh lunar month each year, thousands of magpies form a bridge, called 鹊桥 in Chinese and Queqiao in pinyin, allowing the lovers to meet. We use MagpieBridge as a metaphor for a system that connects arbitrary static analysis to arbitrary IDE.
You can either
- MagpieBridge is published on the GitHub Package Registry. You can use the release by adding the following lines to your
pom.xml
(See all github package). You can follow these instructions.
<dependencies>
<dependency>
<groupId>magpiebridge</groupId>
<artifactId>magpiebridge</artifactId>
<version>0.0.7</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>github</id>
<name>GitHub MagpieBridge Apache Maven Packages</name>
<url>https://maven.pkg.github.com/MagpieBridge/MagpieBridge</url>
</repository>
</repositories>
- or build MagpieBridge by yourself
- check out the develop branch with
git clone -b develop https://github.com/MagpieBridge/MagpieBridge.git
- run
mvn install
in the project root directory to build the tool and run all tests. To skip tests, runmvn install -DskipTests
.
- check out the develop branch with
- Simply import the project as maven project in your IDE, Maven should take care of all required dependences. For Eclipse:
Eclipse> File> Import > Maven > Existing Maven Projects > Enter the path to your local repository > Finish
- Pull requests are welcome!
- Submit github issues for any feature enhancements, bugs or documentation problems
- Please format the code with
mvn com.coveo:fmt-maven-plugin:format
beforegit push
Thanks goes to these wonderful people (emoji key):
Linghui Luo 💻 🎨📖 |
Julian Dolby 💻 🎨 |
Christian Brüggemann 💻 |
Jonas Manuel 💻📖 |
Markus Schmidt |
João Pereira 🐛 |
Sven Erik Vinkemeier 🐛 |
This project follows the all-contributors specification. Contributions of any kind welcome!
✉ linghui[at]outlook.de