Skip to content

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.

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.

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:

  1. Javaparser + Symbol Solver: Parses .java source into an AST, resolves types against available libraries
  2. Symbol Table Extraction: Walks the AST to collect classes, methods, fields, comments, imports
  3. WALA Analysis (level 2+): Builds class hierarchy and interprocedural call graph from compiled binaries or sources
  4. JSON Export: Serializes all entities into the canonical shape (symbol table + call graph edges)
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 resolution

Core 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

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": [ ... ]
}

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
}

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
}

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
}

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")
}
{
content: string // Comment text
startLine: number
endLine: number
startColumn: number
endColumn: number
isJavadoc: boolean // true for /** ... */
}
{
path: string // Fully qualified name or wildcard
isStatic: boolean
isWildcard: boolean // true for "import ....*"
}

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.
FlagPurposeExample
-i, --inputProject root directory-i /path/to/commons-cli
-s, --source-analysisSingle Java source string (no project needed)-s "public class Test {}"
-o, --outputOutput directory for analysis.json-o ./analysis_output
-a, --analysis-level1 (symbol table only) or 2 (+ call graph)-a 2
-b, --build-cmdCustom build command (Maven/Gradle)-b "mvn clean install"
--no-buildSkip building; use pre-compiled binaries--no-build
-v, --verbosePrint debug logs-v
-t, --target-filesIncremental analysis on specific files-t src/Main.java src/Helper.java

Analyze a project at symbol-table level (local files only):

Terminal window
java -jar codeanalyzer-2.3.7.jar \
-i /path/to/commons-cli \
-a 1 \
-o ./output

Full analysis with call graph (build is automatic by default):

Terminal window
java -jar codeanalyzer-2.3.7.jar \
-i /path/to/commons-cli \
-a 2 \
-o ./output \
-v

Analyze a single source string (no build):

Terminal window
java -jar codeanalyzer-2.3.7.jar \
-s "public class HelloWorld { public static void main(String[] args) {} }" \
-a 1

Incremental analysis on specific files:

Terminal window
java -jar codeanalyzer-2.3.7.jar \
-i /path/to/commons-cli \
-t src/main/java/org/apache/commons/cli/Option.java \
-o ./output

The Python SDK (JavaAnalysis) automates backend invocation:

  1. Backend discovery: The JVM-free backend ships with the packaged codeanalyzer-java PyPI dependency and is run via python -m codeanalyzer_java. There is no analysis_backend_path override anymore.
  2. Invocation: Calls the backend with -i <project> -a <level> -o <cache_dir> (or reads from stdout)
  3. JSON parsing: Deserializes the output into Pydantic models (JApplication, JType, JCallable, etc.)
  4. Facade: Wraps the models in JavaAnalysis, exposing query methods like get_classes(), get_call_graph(), get_callers()
from cldk import CLDK
from 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 CLDK
from cldk.analysis import AnalysisLevel
from 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"),
)

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_path

Import the config objects from:

from cldk.analysis.commons.backend_config import CodeAnalyzerConfig

To build codeanalyzer-java from source:

  1. Clone the repository

    Terminal window
    git clone https://github.com/IBM/codeanalyzer-java
    cd codeanalyzer-java
  2. Install Java 11+

    Terminal window
    sdk install java 17.0.10-sem # Or your preferred JDK
  3. Build the JAR

    build/libs/codeanalyzer-2.3.7.jar
    ./gradlew fatJar
  4. 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

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.

SymptomCauseFix
java: command not foundNo JDK on PATHInstall Java 11+, add to PATH
Cannot find symbol type XMissing library dependenciesUse --no-build if pre-compiled; ensure dependencies are on classpath
analysis.json is corruptIncomplete write or killed processCheck disk space; re-run analysis
symbol table uses legacy import schemaRunning old JAR against new analysis.jsonRegenerate with latest JAR (v2.3.7+)
WALA call graph is emptyNo entry point found for analysisVerify project has a main(String[]) method or frameworks detected

To report a limitation, open an issue with details. See Contributing for guidance on extending the backend.