codeanalyzer-java
The codeanalyzer-java backend is the JVM-based static analysis engine that provides Java analysis for the CLDK Python SDK. It combines WALA (T.J. Watson Libraries for Analysis) for semantic analysis with Javaparser for syntactic extraction, producing a unified JSON schema that the Python SDK deserializes into typed models.
Overview
Section titled “Overview”codeanalyzer-java is a standalone JAR tool that takes a Java project (or a source string) and emits a JSON graph containing:
- Symbol table: All types (classes, interfaces, enums, records), their fields, methods/constructors, and imports
- Call graph (optional, at analysis level 2): Edges between callers and callees, computed via WALA’s interprocedural analysis
- Type hierarchy: Extends/implements relationships, nested types, parent-child relationships
- CRUD operations: Database access patterns (INSERT, SELECT, UPDATE, DELETE) in enterprise code
- Comments & Javadoc: Extracted and positioned for each entity
- Entry points: Main methods and framework-identified entry points (REST endpoints, Struts actions)
The Python SDK invokes this backend, parses the JSON, and wraps it in JavaAnalysis, so callers interact with an analysis object rather than the backend directly. The backend is a JVM-free binary that ships with the packaged codeanalyzer-java PyPI dependency and is run via python -m codeanalyzer_java; there is no separate JAR download or analysis_backend_path override.
Architecture
Section titled “Architecture”Analysis pipeline
Section titled “Analysis pipeline”The backend proceeds through the following stages:
graph LR
A["Java source files"] --> B["Javaparser<br/>+ Symbol Solver"]
B --> C["Symbol Table"]
C --> D["Type & Method<br/>Extraction"]
D --> E["JSON Serialization"]
E --> F["analysis.json"]
G["Compiled binaries<br/>jar/ear/war"] --> H["WALA<br/>ClassHierarchy"]
H --> I["Call Graph<br/>Construction"]
I --> J["Call Graph JSON"]
J --> F
Key stages:
- Javaparser + Symbol Solver: Parses
.javasource into an AST, resolves types against available libraries - Symbol Table Extraction: Walks the AST to collect classes, methods, fields, comments, imports
- WALA Analysis (level 2+): Builds class hierarchy and interprocedural call graph from compiled binaries or sources
- JSON Export: Serializes all entities into the canonical shape (symbol table + call graph edges)
Package structure
Section titled “Package structure”com.ibm.cldk├── CodeAnalyzer.java # CLI entry point, orchestrates analysis├── SymbolTable.java # Javaparser-based symbol extraction├── SystemDependencyGraph.java # WALA-based call graph construction├── entities/ # Output data model classes│ ├── JavaCompilationUnit.java # A single .java file: types + imports│ ├── Type.java # Class/interface/enum/record│ ├── Callable.java # Method/constructor│ ├── Field.java # Member field│ ├── Comment.java # Javadoc/inline comment│ ├── Import.java # Import declaration│ ├── CallableVertex.java # Call graph node (method)│ ├── CRUDOperation.java # Database operation marker│ └── ...├── javaee/ # Framework-specific finders│ ├── EntrypointsFinderFactory # Detects main, REST, Struts entry points│ ├── CRUDFinderFactory # JDBC/JPA/Hibernate CRUD detection│ └── spring/, struts/, ... # Framework integrations└── utils/ ├── BuildProject.java # Maven/Gradle build invocation ├── ScopeUtils.java # WALA scope setup └── AnalysisUtils.java # Helpers for type resolutionCore dependencies:
- WALA 1.6.7: Interprocedural call graph, class hierarchy, points-to analysis
- Javaparser: Source code parsing, type resolution
- Picocli: Command-line interface
- Gson: JSON serialization
Output schema
Section titled “Output schema”The backend outputs a consolidated JSON with this structure:
{ "version": "2.3.7", "symbol_table": { "/absolute/path/to/File.java": { "filePath": "/absolute/path/to/File.java", "packageName": "com.example", "comments": [ ... ], "imports": [ ... ], "typeDeclarations": { "ClassName": { ... } } } }, "call_graph": [ ... ]}Symbol table structure
Section titled “Symbol table structure”Compilation unit (JavaCompilationUnit)
Section titled “Compilation unit (JavaCompilationUnit)”A single .java source file:
{ filePath: string // Absolute path packageName: string // Package declaration comments: JComment[] // File-level comments imports: JImport[] // All import declarations typeDeclarations: { [typeName: string]: JType // Map of top-level types } isModified?: boolean // Flag for incremental updates}Type (JType)
Section titled “Type (JType)”A class, interface, enum, or record:
{ isClassOrInterfaceDeclaration: boolean isEnumDeclaration: boolean isAnnotationDeclaration: boolean isRecordDeclaration: boolean isInterface: boolean isNestedType: boolean isInnerClass: boolean isLocalClass: boolean
modifiers: string[] // "public", "abstract", etc. annotations: string[] // "@Override", "@Deprecated", etc.
extendsList: string[] // Superclass names (fully qualified) implementsList: string[] // Interface names parentType: string | null // For nested/inner types nestedTypeDeclarations: string[] // Names of inner types
fieldDeclarations: JField[] // All fields callableDeclarations: { [signature: string]: JCallable // Methods + constructors } enumConstants: JEnumConstant[] // For enums recordComponents: JRecordComponent[] // For records initializationBlocks: JInitializationBlock[] comments: JComment[]
isEntrypointClass: boolean // true for main(String[]) classes}Callable (JCallable)
Section titled “Callable (JCallable)”A method or constructor:
{ signature: string // "methodName(Type1, Type2)" declaration: string // Full declaration with modifiers
modifiers: string[] // "public", "static", "final", etc. annotations: string[] returnType: string | null // null for constructors thrownExceptions: string[]
parameters: JCallableParameter[] // Method parameters comments: JComment[]
code: string // Method body source filePath: string startLine: number // Location in source endLine: number codeStartLine: number // Where body starts
callSites: JCallSite[] // Calls made within this method referencedTypes: string[] // Types referenced in body accessedFields: string[] // Fields read/written variableDeclarations: JVariableDeclaration[]
crudOperations: JCRUDOperation[] // DB operations detected crudQueries: JCRUDQuery[]
cyclomaticComplexity: number isConstructor: boolean isImplicit: boolean // Generated (e.g., default constructor) isEntrypoint: boolean // main or framework entry point}Call graph edges
Section titled “Call graph edges”At analysis level 2, a call_graph array of edges:
{ source: { // Caller filePath: string typeDeclaration: string signature: string callableDeclaration: string } target: { // Callee filePath: string typeDeclaration: string signature: string callableDeclaration: string } type: string // "CALL" | "INVOKE_SPECIAL", etc. weight: string // Call count (usually "1")}Comment (JComment)
Section titled “Comment (JComment)”{ content: string // Comment text startLine: number endLine: number startColumn: number endColumn: number isJavadoc: boolean // true for /** ... */}Import (JImport)
Section titled “Import (JImport)”{ path: string // Fully qualified name or wildcard isStatic: boolean isWildcard: boolean // true for "import ....*"}CLI interface
Section titled “CLI interface”The jar is invoked via java -jar codeanalyzer-*.jar with these options:
Usage: java -jar codeanalyzer.jar [-hvV] [--no-build] [-a=<analysisLevel>] [-b=<build>] [-i=<input>] [-o=<output>] [-s=<sourceAnalysis>]
Convert a Java project into a system dependency graph.
-i, --input=<input> Path to the project root directory. -s, --source-analysis=<sourceAnalysis> Analyze a single string of java source code instead of the project. -o, --output=<output> Destination directory to save the output graphs. By default, the SDG formatted as a JSON will be printed to the console. -b, --build-cmd=<build> Custom build command. Defaults to auto build. --no-build Do not build your application. Use this option if you have already built your application. -a, --analysis-level=<analysisLevel> Level of analysis to perform. Options: 1 (for just symbol table) or 2 (for call graph). Default: 1 -v, --verbose Print logs to console. -t, --target-files=<targetFiles> For each file, perform source analysis on top of existing analysis.json -h, --help Show this help message and exit. -V, --version Print version information and exit.Key parameters
Section titled “Key parameters”| Flag | Purpose | Example |
|---|---|---|
-i, --input | Project root directory | -i /path/to/commons-cli |
-s, --source-analysis | Single Java source string (no project needed) | -s "public class Test {}" |
-o, --output | Output directory for analysis.json | -o ./analysis_output |
-a, --analysis-level | 1 (symbol table only) or 2 (+ call graph) | -a 2 |
-b, --build-cmd | Custom build command (Maven/Gradle) | -b "mvn clean install" |
--no-build | Skip building; use pre-compiled binaries | --no-build |
-v, --verbose | Print debug logs | -v |
-t, --target-files | Incremental analysis on specific files | -t src/Main.java src/Helper.java |
Examples
Section titled “Examples”Analyze a project at symbol-table level (local files only):
java -jar codeanalyzer-2.3.7.jar \ -i /path/to/commons-cli \ -a 1 \ -o ./outputFull analysis with call graph (build is automatic by default):
java -jar codeanalyzer-2.3.7.jar \ -i /path/to/commons-cli \ -a 2 \ -o ./output \ -vAnalyze a single source string (no build):
java -jar codeanalyzer-2.3.7.jar \ -s "public class HelloWorld { public static void main(String[] args) {} }" \ -a 1Incremental analysis on specific files:
java -jar codeanalyzer-2.3.7.jar \ -i /path/to/commons-cli \ -t src/main/java/org/apache/commons/cli/Option.java \ -o ./outputHow the Python SDK uses it
Section titled “How the Python SDK uses it”The Python SDK (JavaAnalysis) automates backend invocation:
- Backend discovery: The JVM-free backend ships with the packaged
codeanalyzer-javaPyPI dependency and is run viapython -m codeanalyzer_java. There is noanalysis_backend_pathoverride anymore. - Invocation: Calls the backend with
-i <project> -a <level> -o <cache_dir>(or reads from stdout) - JSON parsing: Deserializes the output into Pydantic models (
JApplication,JType,JCallable, etc.) - Facade: Wraps the models in
JavaAnalysis, exposing query methods likeget_classes(),get_call_graph(),get_callers()
from cldk import CLDKfrom cldk.analysis import AnalysisLevel
# Behind the scenes:# 1. CLDK.java(...) selects the codeanalyzer-java backend (default CodeAnalyzerConfig)# 2. Runs the packaged backend: python -m codeanalyzer_java -i commons-cli -a 2 -o <cache_dir># 3. Parses JSON -> JApplication (symbol_table + call_graph)# 4. Returns JavaAnalysis
analysis = CLDK.java( project_path="commons-cli", analysis_level=AnalysisLevel.call_graph,)The old CLDK(language="java").analysis(...) form still works but is deprecated; prefer the CLDK.java(...) factory shown above. The from cldk import CLDK import is unchanged.
To control where analysis artifacts are cached, pass a backend config:
from cldk import CLDKfrom cldk.analysis import AnalysisLevelfrom cldk.analysis.commons.backend_config import CodeAnalyzerConfig
analysis = CLDK.java( project_path="my_project", analysis_level=AnalysisLevel.call_graph, backend=CodeAnalyzerConfig(cache_dir="/tmp/analysis-cache"),)Keyword arguments
Section titled “Keyword arguments”CLDK.java(...) accepts project_path, analysis_level, target_files, and eager. The backend is selected by the type of the backend= config; for Java the only backend is the in-memory codeanalyzer (CodeAnalyzerConfig), so omit backend= for the default. Pass backend=CodeAnalyzerConfig(cache_dir=...) only to override where artifacts are cached. Caching is on by default; the cache root defaults to <project>/.codeanalyzer and artifacts are written under a language-keyed subdirectory (<cache_dir>/java/).
Java also accepts source_code=... for analyzing a single Java source string, but this is deprecated; prefer project_path.
analysis = CLDK.java(source_code="public class Test {}") # deprecated; prefer project_pathImport the config objects from:
from cldk.analysis.commons.backend_config import CodeAnalyzerConfigBuilding & testing
Section titled “Building & testing”To build codeanalyzer-java from source:
-
Clone the repository
Terminal window git clone https://github.com/IBM/codeanalyzer-javacd codeanalyzer-java -
Install Java 11+
Terminal window sdk install java 17.0.10-sem # Or your preferred JDK -
Build the JAR
build/libs/codeanalyzer-2.3.7.jar ./gradlew fatJar -
Test on a sample project
Terminal window java -jar build/libs/codeanalyzer-2.3.7.jar \-i src/test/resources/test-applications/call-graph-test \-a 2 -v
Schema stability
Section titled “Schema stability”The JSON schema emitted by codeanalyzer-java is versioned. Each output includes a version field (for example, "2.3.7"). The Python SDK’s Pydantic models (JApplication, JType, and others) are locked to a compatible schema version. On incompatibility, the SDK logs a warning or error.
When integrating codeanalyzer-java directly rather than through the Python SDK, ensure the consumer can handle the schema for the version in use.
Troubleshooting
Section titled “Troubleshooting”| Symptom | Cause | Fix |
|---|---|---|
java: command not found | No JDK on PATH | Install Java 11+, add to PATH |
Cannot find symbol type X | Missing library dependencies | Use --no-build if pre-compiled; ensure dependencies are on classpath |
analysis.json is corrupt | Incomplete write or killed process | Check disk space; re-run analysis |
symbol table uses legacy import schema | Running old JAR against new analysis.json | Regenerate with latest JAR (v2.3.7+) |
WALA call graph is empty | No entry point found for analysis | Verify project has a main(String[]) method or frameworks detected |
References
Section titled “References”- Source repository: IBM/codeanalyzer-java
- WALA documentation: watson.ibm.com/wala
- Javaparser: javaparser.org
- Related: codeanalyzer-python, codeanalyzer-ts
- How to: Add a language backend
To report a limitation, open an issue with details. See Contributing for guidance on extending the backend.