IT博客汇
  • 首页
  • 精华
  • 技术
  • 设计
  • 资讯
  • 扯淡
  • 权利声明
  • 登录 注册

    Query Java source code with plain SQL

    shendao发表于 2016-07-19 14:33:25
    love 0

    Important note: This project is in early stage and not released yet. The project name may change. You can stillgive it a try and send us your feedback, you are very welcome!

    About JCQL

    JCQL (Java Code Query Language) makes it possible to query Java source code in plain SQL. This allows you to ask questions like:

    • Is there any class that has no unit tests?
    • What is the longest class name?
    • Is there any class that has more than 20 methods?

    This kind of static analysis gives you precious insights in order to improve the quality of your code base. JCQL tools can be easily integrated in your build process to continuously check if your coding rules are respected.

    How does it work

    JCQL tools create a relational model from a given Java source code base. Once you have created the relational model, you can query it with standard SQL. The relational model has been designed to be intuitive, natural and easy to understand and query. Here is a quick overview of the core tables:

    Query Java source code with plain SQL

    Here are some examples of queries:

    Find the top 10 longest class names:

    select NAME, LENGTH(NAME) as length from CLASS order by length desc limit 10

    Find the top 10 longest method names:

    select NAME, LENGTH(NAME) as length from METHOD order by length desc limit 10

    Getting started

    JCQL tools are in early stage and are not released yet. You can still try the first snapshot version:

    • jcql-core: download jar
    • jcql-shell: download jar

    Note: JCQL tools require Java 1.8+

    Index your code base

    JCQL tools provide two ways to create a relational database from a given code base:

    Using maven

    Add the following repository in your pom.xml :

    <repository>     <id>ossrh</id>     <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository>

    and run the following command in the root folder of the project you want to analyse:

    mvn io.github.benas:jcql-maven-plugin:0.1-SNAPSHOT:index

    This will create a file named jcql.db in the target directory that you can query with your favorite SQL client or the one provided by JCQL tools

    Using java

    Run the following command:

    java -jar jcql-core-{latest-version}.jar /path/to/project/to/analyse /path/to/database/directory

    Query your Java code with SQL

    Once you have indexed your Java code in a relational format, you can query it with plain SQL:

    Using a SQL client

    Just open the jcql.db file with your favorite SQL client and start writing queries. You can use Sqlite tools or Sqlite browser .

    Using JCQL Shell

    The JCQL shell is a command line tool that allows you to write queries against the generated database.

    You can start it as follows:

    java -jar /path/to/jcql-shell-{latest-version}.jar /path/to/jcql.db

    Credits

    • JCQL tools use the greatjava-parser library to parse Java code and transform it a relational model.

    • JCQL tools use Sqlite to store and query relational data about Java code

    转载本站任何文章请注明:转载至神刀安全网,谢谢神刀安全网 » Query Java source code with plain SQL



沪ICP备19023445号-2号
友情链接