1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00
Parsing, analyzing, and comparing source code across many languages
Go to file
Patrick Thomson 840ce490ce Run the parse-examples checks on CI.
🎩 @tclem
2019-06-04 17:11:25 -04:00
.licenses/semantic/cabal Bump licenses. 2019-05-13 17:01:36 -04:00
app Rename SemanticCmdLine to Semantic.CLI. 2017-11-27 11:57:27 -05:00
bench Add NFData instances to enable more accurate benchmarking. 2018-10-17 14:08:47 -04:00
bin Keep a bin directory around for deployments 2016-02-02 13:50:07 -06:00
docs Merge pull request #42 from github/parse-core 2019-06-04 14:40:55 -04:00
notices Remove docker section from third-party notice 2019-02-21 18:42:50 -05:00
proto/semantic/api/v1 Add bloboid (if exists) to proto output 2019-04-12 15:48:49 -07:00
script Make error reporter API generic 2019-05-31 08:58:34 -04:00
semantic-core Address @robrix's suggestions. 2019-06-04 14:19:35 -04:00
src Remove redundant HasSpan class. 2019-06-04 14:40:09 -04:00
test Fix test failures. 2019-06-03 16:08:15 -04:00
vendor Merge branch 'master' into move-grammar-datatypes-to-the-parser-packages 2019-06-03 15:22:56 -04:00
.ghci Prevent slowdowns when pretty-printing in ghci. 2018-10-04 14:38:36 -04:00
.gitattributes Treat the licenses dir as vendored. 2017-08-15 10:49:51 -04:00
.gitignore ignore stack.yaml and update readme 2019-06-04 13:07:20 -06:00
.gitmodules 🔥 the freer-cofreer submodule. 2019-06-03 12:19:23 -04:00
.hlint.yaml fix lints 2019-05-21 12:09:42 -04:00
.hspec Add .hspec for depths default, make sure hspec version supports 2017-02-17 08:27:51 -08:00
.stylish-haskell.yaml derivingvia implies derivingstrategies 2019-02-19 19:35:20 -05:00
.travis.yml Run the parse-examples checks on CI. 2019-06-04 17:11:25 -04:00
cabal.project Add semantic-core to the cabal project file. 2019-06-03 11:34:26 -04:00
CODE_OF_CONDUCT.md Add code of conduct 2019-05-31 08:37:44 -04:00
CONTRIBUTING.md Add contribution instructions 2019-05-31 08:37:44 -04:00
LICENSE Use MIT license for code 2019-05-31 08:37:44 -04:00
README.md 🤠 Tighten up some language about stack vs. cabal 2019-06-04 16:00:03 -04:00
semantic.cabal Remove redundant HasSpan class. 2019-06-04 14:40:09 -04:00
Setup.hs Use the simple build type. 2017-07-23 10:34:30 -04:00

Semantic

semantic is a Haskell library and command line tool for parsing, analyzing, and comparing source code.

In a hurry? Check out our documentation of example uses for the semantic command line tool.

Table of Contents
Usage
Language support
Development
Technology and architecture
Licensing

Usage

Run semantic --help for complete list of up-to-date options.

Parse

Usage: semantic parse ([--sexpression] | [--json] | [--json-graph] | [--symbols]
                      | [--dot] | [--show] | [--quiet]) [FILES...]
  Generate parse trees for path(s)

Available options:
  --sexpression            Output s-expression parse trees (default)
  --json                   Output JSON parse trees
  --json-graph             Output JSON adjacency list
  --symbols                Output JSON symbol list
  --dot                    Output DOT graph parse trees
  --show                   Output using the Show instance (debug only, format
                           subject to change without notice)
  --quiet                  Don't produce output, but show timing stats

Diff

Usage: semantic diff ([--sexpression] | [--json] | [--json-graph] | [--toc] |
                     [--dot] | [--show]) [FILE_A] [FILE_B]
  Compute changes between paths

Available options:
  --sexpression            Output s-expression diff tree (default)
  --json                   Output JSON diff trees
  --json-graph             Output JSON diff trees
  --toc                    Output JSON table of contents diff summary
  --dot                    Output the diff as a DOT graph
  --show                   Output using the Show instance (debug only, format
                           subject to change without notice)

Graph

Usage: semantic graph ([--imports] | [--calls]) [--packages] ([--dot] | [--json]
                      | [--show]) ([--root DIR] [--exclude-dir DIR]
                      DIR:LANGUAGE | FILE | --language ARG (FILES... | --stdin))
  Compute a graph for a directory or from a top-level entry point module

Available options:
  --imports                Compute an import graph (default)
  --calls                  Compute a call graph
  --packages               Include a vertex for the package, with edges from it
                           to each module
  --dot                    Output in DOT graph format (default)
  --json                   Output JSON graph
  --show                   Output using the Show instance (debug only, format
                           subject to change without notice)
  --root DIR               Root directory of project. Optional, defaults to
                           entry file/directory.
  --exclude-dir DIR        Exclude a directory (e.g. vendor)
  --language ARG           The language for the analysis.
  --stdin                  Read a list of newline-separated paths to analyze
                           from stdin.

Language support

Priority Language Parse Assign Diff ToC Symbols Import graph Call graph Control flow graph
1 Ruby 🚧
2 JavaScript 🚧
3 TypeScript 🚧
4 Python 🚧
5 Go 🚧
PHP
Java 🔶
JSON N/A N/A N/A N/A
JSX 🔶
Haskell 🔶
Markdown 🔶 N/A N/A N/A  
  • — Supported
  • 🔶 — Partial support
  • 🚧 — Under development

Development

We use cabal's Nix-style local builds for development. To get started quickly:

git clone git@github.com:github/semantic.git
cd semantic
git submodule sync --recursive && git submodule update --init --recursive --force
cabal new-update
cabal new-build
cabal new-test
cabal new-run semantic -- --help

semantic requires at least GHC 8.6.4. We recommend using ghcup to sandbox GHC versions. Our version bounds are based on Stackage LTS versions. The current LTS version is 13.13. stack as a build tool is not officially supported; there is an unofficial stack.yaml available, though we cannot make guarantees as to its stability.

Technology and architecture

Architecturally, semantic:

  1. Reads blobs.
  2. Generates parse trees for those blobs with tree-sitter (an incremental parsing system for programmings tools).
  3. Assigns those trees into a generalized representation of syntax.
  4. Performs analysis, computes diffs, or just returns parse trees.
  5. Renders output in one of many supported formats.

Semantic leverages a number of interesting algorithms and techniques:

Contributions

Contributions are welcome! Please see our contribution guidelines and our code of conduct for details on how to participate in our community.

Licensing

Semantic is licensed under the MIT license.