Skip to content

Commit a582968

Browse files
committed
docs: renaming **jcdb** -> **jacodb**
1 parent 1254518 commit a582968

9 files changed

+53
-53
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
[![ci status](https://github.com/UnitTestBot/jcdb/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/UnitTestBot/jcdb/actions/workflows/build-and-test.yml)
1+
[![ci status](https://github.com/UnitTestBot/jacodb/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/UnitTestBot/jacodb/actions/workflows/build-and-test.yml)
22

33
## Overview
44

5-
`JCDB` is a pure Java library that allows you to get information about Java bytecode outside the JVM process and to store it in a database. While Java `Reflection` makes it possible to inspect code at runtime, `JCDB` does the same for bytecode stored in a file system.
5+
`JacoDB` is a pure Java library that allows you to get information about Java bytecode outside the JVM process and to store it in a database. While Java `Reflection` makes it possible to inspect code at runtime, `JacoDB` does the same for bytecode stored in a file system.
66

7-
`JCDB` uses [ASM](https://asm.ow2.io/) framework for reading and parsing java bytecode.
7+
`JacoDB` uses [ASM](https://asm.ow2.io/) framework for reading and parsing java bytecode.
88

99
Information about classes, hierarchies, annotations, methods, fields, and their usages is stored in SQLite database — either in-memory or persistent. Persisted data can be reused between restarts. Accessing the persistent storage from multiple processes simultaneously is not supported.
1010

@@ -27,7 +27,7 @@ suspend fun findNormalDistribution(): Any {
2727
val commonsMath32 = File("commons-math3-3.2.jar")
2828
val commonsMath36 = File("commons-math3-3.6.1.jar")
2929
val buildDir = File("my-project/build/classes/java/main")
30-
val database = jcdb {
30+
val database = jacodb {
3131
useProcessJRE()
3232
persistent("/tmp/compilation-db/${System.currentTimeMillis()}") // persist data
3333
}
@@ -55,7 +55,7 @@ Note: the `body` method returns `null` if the to-be-processed JAR-file was chang
5555
The database can watch for file system changes in the background and refresh the JAR-files explicitly:
5656

5757
```kotlin
58-
val database = jcdb {
58+
val database = jacodb {
5959
watchFileSystemChanges = true
6060
useProcessJRE()
6161
load(listOf(lib1, buildDir))
@@ -98,7 +98,7 @@ The instances of `JcClassOrInterface`, `JcMethod`, and `JcClasspath` are thread-
9898
`JcClasspath` represents an independent snapshot of classes, which cannot be modified since it is created. Removing or modifying library files does not affect `JcClasspath` instance structure. The `JcClasspath#close` method releases all snapshots and cleans up the persisted data if some libraries are outdated.
9999

100100
```kotlin
101-
val database = jcdb {
101+
val database = jacodb {
102102
watchFileSystemChanges()
103103
useProcessJavaRuntime()
104104
load(listOf(lib1, buildDir))
@@ -114,20 +114,20 @@ The instances of `JcClassOrInterface`, `JcMethod`, and `JcClasspath` are thread-
114114
If there is a request for a `JcClasspath` instance containing the libraries, which haven't been indexed yet, the indexing process is triggered and the new instance of the `JcClasspath` set is returned.
115115

116116
```kotlin
117-
val database = jcdb {
117+
val database = jacodb {
118118
load(listOf(lib1))
119119
persistent()
120120
}
121121

122122
val cp = database.classpath(buildDir) // database will automatically process buildDir
123123
```
124124

125-
`JCDB` is thread-safe. If one requests `JcClasspath` instance while loading JAR-files from another thread,
125+
`JacoDB` is thread-safe. If one requests `JcClasspath` instance while loading JAR-files from another thread,
126126
`JcClasspath` can represent only a consistent state of the JAR-files being loaded. It is the completely loaded
127127
JAR-file that appears in `JcClasspath`. Please note: there is no guarantee that all the JAR-files, submitted for loading, will be actually loaded.
128128

129129
```kotlin
130-
val db = jcdb {
130+
val db = jacodb {
131131
persistent()
132132
}
133133

@@ -149,7 +149,7 @@ Bytecode loading consists of two steps:
149149
* retrieving information about the class names from the JAR-files or build directories
150150
* reading **classes** bytecode from the JAR-files or build directories and processing it (persisting data, setting up `JcFeature` implementations, etc.)
151151

152-
`JCDB` or `JcClasspath` instances are returned right after the first step is performed. You retrieve the final representation of **classes** during the second step. It is possible that the `.class` files undergo changes at some moment between the first step and the second, and **classes** representation is affected accordingly.
152+
`JacoDB` or `JcClasspath` instances are returned right after the first step is performed. You retrieve the final representation of **classes** during the second step. It is possible that the `.class` files undergo changes at some moment between the first step and the second, and **classes** representation is affected accordingly.
153153

154154
Benchmarks results and comparison with Soot is [here](./benchmarks.md).
155155

api.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Settings
22

3-
JCDBSettings is used for creating instance of `JCDB` instance.
3+
JacoDBSettings is used for creating instance of `JacoDB` instance.
44

55
#### `useJavaRuntime(file)`
66

@@ -52,15 +52,15 @@ Which features jcdb will use
5252

5353
## Database
5454

55-
`JCDB` instance created based on settings. If instance is not needed yet then `close` method should be called.
55+
`JacoDB` instance created based on settings. If instance is not needed yet then `close` method should be called.
5656

5757
#### Properties
5858

5959
| property | type | description |
6060
|----------------|------------------------------|----------------------------------------------------------------|
6161
| locations | List of `JcByteCodeLocation` | List of locations processed by database |
6262
| persistence | `JCDBPersistence` | persistence which brings ability to read/write to database |
63-
| runtimeVersion | `JavaRuntimeVersion` | version of java runtime which is used for this `jcdb` instance |
63+
| runtimeVersion | `JavaRuntimeVersion` | version of java runtime which is used for this `JacoDB` instance |
6464

6565

6666
#### `classpath(dirOrJars)`
@@ -74,19 +74,19 @@ Creates classpath instances
7474

7575
#### `refresh()`
7676

77-
Refreshes state of `jcdb` instance and state of file systen. Should be called to clean up jars/folders that loaded versions are out of data and which are not used by any classpaths created by `jcdb` instance
77+
Refreshes state of `JacoDB` instance and state of file systen. Should be called to clean up jars/folders that loaded versions are out of data and which are not used by any classpaths created by `JacoDB` instance
7878

7979
#### `rebuildFeatures()`
8080

81-
Rebuild indexes for features installed in `jcdb`
81+
Rebuild indexes for features installed in `JacoDB`
8282

8383
#### `awaitBackgroundJobs()`
8484

8585
Await background jobs
8686

8787
#### `close()`
8888

89-
Is used to clean up resources used by `jcdb` instance
89+
Is used to clean up resources used by `JacoDB` instance
9090

9191
## Classpath
9292

@@ -98,7 +98,7 @@ Is used to clean up resources used by `jcdb` instance
9898
| property | type | description |
9999
|-----------|-------------------------------|-----------------------------------------|
100100
| locations | List of `JcByteCodeLocation` | List of locations attached to classpath |
101-
| db | `JCDB` | database instance |
101+
| db | `JacoDB` | database instance |
102102

103103

104104
findClassOrNull(name: String): JcClassOrInterface?
@@ -337,7 +337,7 @@ return new indexer for specific location
337337

338338
| property | type | description |
339339
|----------|----------------------|---------------------------------|
340-
| jcdb | `JCDB` | database |
340+
| jcdb | `JacoDB` | database |
341341
| location | `RegisteredLocation` | location that should be indexed |
342342

343343
#### `query(classpath, request)`
@@ -356,7 +356,7 @@ Indexer of bytecode.
356356

357357
#### `index(node)`
358358

359-
Called for each ClassNode processed by `jcdb`. **Bytecode locations are processed in parallel. There is no strict order of processing locations.**
359+
Called for each ClassNode processed by `JacoDB`. **Bytecode locations are processed in parallel. There is no strict order of processing locations.**
360360

361361
| property | type | description |
362362
|----------|-------------|-----------------------------------------|
@@ -398,11 +398,11 @@ Finds all methods in Classpath that override specified method
398398
find classes that implements `java.lang.Runnable`:
399399

400400
```kotlin
401-
val jcdb = jcdb {
401+
val db = jacodb {
402402
loadByteCode(allClasspath) // all classpath for current process
403403
installFeatures(InMemoryHierarchy) // without that line memory footprint will be low as well as performance
404404
}
405-
val classpath = jcdb.classpath(allClasspath)
405+
val classpath = db.classpath(allClasspath)
406406
val extension = classpath.hierarchyExtension()
407407
extension.findSubClasses("java.lang.Runnable", allHierarchy = true) // all classes that implements `Runnable`
408408

@@ -446,11 +446,11 @@ Finds all methods that instantiate instance of specified class
446446

447447
find usages of
448448
```kotlin
449-
val jcdb = jcdb {
449+
val db = jacodb {
450450
loadByteCode(allClasspath) // all classpath of current process
451451
installFeatures(Usages, InMemoryHierarchy) // without that line memory footprint will be low as well as performance
452452
}
453-
val classpath = jcdb.classpath(allClasspath)
453+
val classpath = db.classpath(allClasspath)
454454
val extension = classpath.usagesExtension()
455455

456456
val runMethod = classpath.findClassOrNull("java.lang.Runnable")!!.declaredMethods.first() // find run method

benchmarks.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010
Benchmark runs across different scopes of java bytecode with following meanings:
1111
- runtime - only java runtime without any additional dependencies
1212
- runtime + guava - java runtime with one jar for guava
13-
- runtime + project classpath - java runtime with all visible dependencies of `jcdb` project
13+
- runtime + project classpath - java runtime with all visible dependencies of `JacoDB` project
1414
- runtime + Idea community - java runtime with all visible dependencies of `IDEA community` project
1515

16-
`JCDB` benchmarks also include scheme when `Usages` feature is installed
16+
`JacoDB` benchmarks also include scheme when `Usages` feature is installed
1717

18-
### JCDB
18+
### JacoDB
1919

2020
```ssh
21-
./gradlew jcdbBenchmark
21+
./gradlew jacodbBenchmark
2222
```
2323

2424

2525
| Benchmark | Repeats | Avg time per operation |
2626
|-------------------------------------------------------------------------------------------------------------------------------------------|----------|-------------------------|
27-
| [runtime](../blob/main/jcdb-core/src/test/kotlin/org/utbot/jcdb/impl/performance/JcdbBenchmarks.kt#L36) | 5 | 741 ms |
27+
| [runtime](../blob/main/jacodb-core/src/test/kotlin/org/utbot/jacodb/impl/performance/JcdbBenchmarks.kt#L36) | 5 | 741 ms |
2828
| [runtime + guava](../blob/main/jcdb-core/src/test/kotlin/org/utbot/jcdb/impl/performance/JcdbBenchmarks.kt#L76) | 5 | 740 ms |
2929
| [runtime + project dependencies](../blob/main/jcdb-core/src/test/kotlin/org/utbot/jcdb/impl/performance/JcdbBenchmarks.kt#L55) | 5 | 1034 ms |
3030
| [runtime + IDEA community dependecies](../blob/main/jcdb-core/src/test/kotlin/org/utbot/jcdb/impl/performance/JcdbBenchmarks.kt#L97) | 5 | 2324 ms |

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
group 'org.utbot.jcdb'
1+
group 'org.utbot.jacodb'
22

33
if (project.hasProperty('semVer')) {
44
project.version = project.semVer

design.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ These are basic requirements for database implementation:
99
* bytecode processing and analyzing (starting with Java 1.8)
1010
* an ability to update bytecode from the given location while keeping the processed data intact
1111
* an ability to persist data on a disk and to reuse it after restarting the application
12-
* fast start-up: `JCDB` should balance between returning instance as soon as possible and querying data from database in the fastest way
12+
* fast start-up: `JacoDB` should balance between returning instance as soon as possible and querying data from database in the fastest way
1313

1414
## API basics
1515

@@ -184,6 +184,6 @@ All `JcFeature` extensions should be added at database start-up — it is imposs
184184

185185
## Hooks
186186

187-
One can extend `JCDB` with hooks. Hook is an environment extension which allows for implementing the remote API or calling the specific code during the database lifecycle.
187+
One can extend `JacoDB` with hooks. Hook is an environment extension which allows for implementing the remote API or calling the specific code during the database lifecycle.
188188

189189
Hook is called twice: when the database is created and initialized properly and when it is closed.

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ kmetadata_version=0.5.0
77
asm_version=9.3
88
jooq_version=3.14.16
99
intellij_community_url=https://download-cdn.jetbrains.com/idea/ideaIC-2022.2.3.win.zip
10-
#database_location=d:\\work\\jcdb\\jcdb.db
10+
#database_location=d:\\work\\jacodb\\jcdb.db

jc-features.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
## Overview
22

33
Feature is an interface which provide ability to store and query additional information based on bytecode. Feature can
4-
be installed only when instance of `JCDB` is created.
4+
be installed only when instance of `JacoDB` is created.
55

66
```kotlin
7-
val db = jcdb {
8-
useProcessJRE()
9-
persistent("/tmp/compilation-db/${System.currentTimeMillis()}") // persist data
10-
installFeatures(Usages, InMemoryHierarchy)
11-
}
7+
val db = jacodb {
8+
useProcessJRE()
9+
persistent("/tmp/compilation-db/${System.currentTimeMillis()}") // persist data
10+
installFeatures(Usages, InMemoryHierarchy)
11+
}
1212
```
1313

1414
### `InMemoryHierarchy` feature
1515

16-
By default `JCDB` stores information about class hierarchy in sql database (table `ClassHierarchies` with columns:
16+
By default `JacoDB` stores information about class hierarchy in sql database (table `ClassHierarchies` with columns:
1717
class_id, super_id, is_interface).
1818
This brings ability to retrieve whole hierarchy for particular class with recursive sql query. Recursive queries are
1919
quite common and quite slow.
@@ -31,18 +31,18 @@ Brings ability to find out places where methods and fields are used.
3131
It's recommended to install `InMemoryHierarchy` for performance purposes
3232

3333
```kotlin
34-
val db = jcdb {
35-
useProcessJRE()
36-
load(allClasspath)
37-
persistent("/tmp/compilation-db/${System.currentTimeMillis()}") // persist data
38-
installFeatures(Usages, InMemoryHierarchy)
39-
}
40-
val method = run // java.lang.Runnable#run method
41-
val field = field // java.lang.String#value field
42-
43-
val cp = db.classpath(allClasspath)
44-
cp.findUsages(method) // sequence of methods which calls `method`
45-
cp.findUsages(field, FieldUsageMode.READ) // sequence of fields which reads `field` value
34+
val db = jacodb {
35+
useProcessJRE()
36+
load(allClasspath)
37+
persistent("/tmp/compilation-db/${System.currentTimeMillis()}") // persist data
38+
installFeatures(Usages, InMemoryHierarchy)
39+
}
40+
val method = run // java.lang.Runnable#run method
41+
val field = field // java.lang.String#value field
42+
43+
val cp = db.classpath(allClasspath)
44+
cp.findUsages(method) // sequence of methods which calls `method`
45+
cp.findUsages(field, FieldUsageMode.READ) // sequence of fields which reads `field` value
4646
```
4747

4848
`Usages` indexer goes through all instructions and collect method calls or fields access and store it into table:

jcdb-http/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ RUN apt-get update && \
1212

1313
COPY ${JAR_FILE} .
1414

15-
ENTRYPOINT ["java","-jar","jcdb-http-demo.jar", "--api-prefix=/jcdb-demo" ]
15+
ENTRYPOINT ["java","-jar","jacodb-http-demo.jar", "--api-prefix=/jacodb-demo" ]

jcdb-http/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222

2323
}
2424

25-
def demoAppJar = "jcdb-http-demo.jar"
25+
def demoAppJar = "jacodb-http-demo.jar"
2626

2727
bootJar {
2828
archiveName= demoAppJar

0 commit comments

Comments
 (0)