{"id":46087321,"url":"https://github.com/lisa-analyzer/jlisa","last_synced_at":"2026-03-04T11:03:15.505Z","repository":{"id":319241346,"uuid":"966015751","full_name":"lisa-analyzer/jlisa","owner":"lisa-analyzer","description":"Java frontend for LiSA","archived":false,"fork":false,"pushed_at":"2026-02-23T10:27:10.000Z","size":16778,"stargazers_count":25,"open_issues_count":18,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-02-23T19:06:01.443Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lisa-analyzer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-14T09:15:29.000Z","updated_at":"2026-02-23T10:27:27.000Z","dependencies_parsed_at":"2025-10-18T15:04:35.720Z","dependency_job_id":"bc3ed8e2-9ea6-448c-92b2-4db716da82c0","html_url":"https://github.com/lisa-analyzer/jlisa","commit_stats":null,"previous_names":["lisa-analyzer/jlisa"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/lisa-analyzer/jlisa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lisa-analyzer%2Fjlisa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lisa-analyzer%2Fjlisa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lisa-analyzer%2Fjlisa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lisa-analyzer%2Fjlisa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lisa-analyzer","download_url":"https://codeload.github.com/lisa-analyzer/jlisa/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lisa-analyzer%2Fjlisa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30078418,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T08:01:56.766Z","status":"ssl_error","status_checked_at":"2026-03-04T08:00:42.919Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-03-01T17:00:47.765Z","updated_at":"2026-03-04T11:03:15.488Z","avatar_url":"https://github.com/lisa-analyzer.png","language":"Java","funding_links":[],"categories":["Programming Languages"],"sub_categories":[],"readme":"# jlisa\n\n`jlisa` is a static analysis tool built upon the [LiSA](https://github.com/lisa-analyzer/lisa) framework. It provides a frontend for analyzing Java source code using configurable abstract domains and analysis strategies.\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Command Line Options](#command-line-options)\n- [Architecture](#architecture)\n- [Development](#development)\n- [License](#license)\n\n## Overview\n\nThis tool parses Java source code, analyzes it using abstract interpretation, and generates analysis results in a specified output directory. It is built on top of the LiSA framework, providing support for heap analysis, numeric analysis, and type inference.\n\n## Installation\n\nClone the repository:\n\n```bash\ngit clone https://github.com/lisa-analyzer/jlisa.git\ncd jlisa\n```\n\nBuild with Gradle:\n\n```bash\n./gradlew clean build\n```\n\n## Usage\n\nTo analyze Java source files:\n```bash\n./gradlew distZip\n```\n\n```bash\n./build/distributions/jlisa-0.1/bin/jlisa -s path/to/File.java -o out/ -n ConstantPropagation\n```\n\n## Command Line Options\n\n| Option | Long Option | Argument | Description |\n|--------|-------------|----------|-------------|\n| `-h`   | `--help`    | None     | Print help message |\n| `-s`   | `--source`  | Files    | Java source files to analyze |\n| `-o`   | `--outdir`  | Path     | Output directory for results |\n| `-l`   | `--log-level` | Level | Logging level (e.g., INFO, DEBUG, ERROR) |\n| `-v`   | `--version` | None | Version of current jlisa's implementation |\n| `N/A`   | `--no-html` | None | Disable html output |\n\n## Architecture\n\nThe main execution flow is handled by the `Main` class:\n\n1. Parses command line arguments using Apache Commons CLI.\n2. Parses Java source files using the `JavaFrontend`.\n3. Builds a LiSA `Program` from the parsed files.\n4. Configures analysis parameters (`LiSAConfiguration`).\n5. Executes the analysis and writes results.\n\n### Default Abstract State\n\nThe default abstract state consists of:\n\n- `FieldSensitivePointBasedHeap` for heap abstraction\n- `IntegerConstantPropagation` for numeric analysis\n- `InferredTypes` for type inference\n\n## Development\n\nMake sure to have the following prerequisites:\n\n- Java 17 or later\n- Maven 3.6+\n\nTo run locally using Gradle:\n\n```bash\n./gradlew run --args=\"-s path/to/File.java -o out/ -n ConstantPropagation\"\n```\n\n## License\n\nThis project is licensed under the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flisa-analyzer%2Fjlisa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flisa-analyzer%2Fjlisa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flisa-analyzer%2Fjlisa/lists"}