README.md 26.4 KB
Newer Older
P
Phodal Huang 已提交
1
# Coca - toolbox for system refactoring and analysis
P
Phodal HUANG 已提交
2

P
Phodal Huang 已提交
3
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/phodal/coca)
P
Phodal Huang 已提交
4
[![Build Status](https://travis-ci.org/phodal/coca.svg?branch=master)](https://travis-ci.org/phodal/coca)
P
Phodal Huang 已提交
5 6
[![Maintainability](https://api.codeclimate.com/v1/badges/d5a5e060522403b1f79b/maintainability)](https://codeclimate.com/github/phodal/coca/maintainability)
[![codecov](https://codecov.io/gh/phodal/coca/branch/master/graph/badge.svg)](https://codecov.io/gh/phodal/coca)
P
Phodal Huang 已提交
7
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/phodal/coca)
P
Phodal Huang 已提交
8
![Go](https://github.com/phodal/coca/workflows/Go/badge.svg)
P
Phodal Huang 已提交
9

10 11
> [Coca](https://coca.migration.ink/) is a toolbox which is design for legacy system refactoring and analysis, includes call graph, concept analysis, api tree, design patterns suggest.
[Coca](https://coca.migration.ink/) 是一个用于系统重构、系统迁移和系统分析的瑞士军刀。它可以分析代码中的 badsmell,行数统计,分析调用与依赖,进行 Git 分析,以及自动化重构等。
P
Phodal Huang 已提交
12

P
Phodal Huang 已提交
13 14
Migration Guide (Chinese Version): 《[系统重构与迁移指南](https://github.com/phodal/migration)

P
Phodal Huang 已提交
15 16
Inspired by: [newlee](https://github.com/newlee) & [Tequila](https://github.com/newlee/tequila)

P
Phodal Huang 已提交
17 18
Ant To Maven: [Merry](https://github.com/phodal/merry)

P
Phodal Huang 已提交
19
Refactoring Modeling:
P
Phodal Huang 已提交
20

P
Phodal Huang 已提交
21
![Refactoring Modeling](docs/images/model.svg)
P
Phodal Huang 已提交
22

23 24 25 26 27 28
 - [ ] Languages Support
    - [x] Java (full features)
    - [x] Golang (support: analysis, todo, concept, git, suggest)
    - [x] TypeScript (antlr4 performance issue)
    - [x] Python (support: analysis, todo, concept, git, suggest)

29
Features List:
P
Phodal Huang 已提交
30 31

```
P
Phodal Huang 已提交
32
Available Commands:
P
Phodal Huang 已提交
33 34 35 36 37 38 39 40
  analysis    analysis code
  api         scan HTTP api from annotation
  arch        project package visualization
  bs          generate bad smell list and suggestions
  call        show call graph with specific method
  cloc        count lines of code with complexity estimation
  concept     build domain concept from source code
  count       count most refs function
P
Phodal Huang 已提交
41
  deps        evaluate dependencies
P
Phodal Huang 已提交
42 43
  evaluate    evaluate code situation and refactor effort
  git         analysis git commit history for revs count, summary and suggest
P
Phodal Huang 已提交
44
  help        Help about any command
P
Phodal Huang 已提交
45
  rcall       reverse call graph visualization
P
Phodal Huang 已提交
46
  refactor    auto refactor code
P
Phodal Huang 已提交
47 48 49 50 51 52
  suggest     find usable Design Patterns from code
  tbs         generate tests bad smell
  todo        scan all todo, and list with time
  version     version
```

P
Phodal Huang 已提交
53 54 55 56
Requirements:

1. [graphviz](https://www.graphviz.org/) for dot file to images (such as svg, png)

P
Phodal Huang 已提交
57
## Usage
P
Phodal Huang 已提交
58

P
Phodal Huang 已提交
59
install
P
Phodal Huang 已提交
60

P
Phodal Huang 已提交
61 62
```bash
go get -u github.com/phodal/coca
P
Phodal Huang 已提交
63 64
```

P
Phodal Huang 已提交
65 66 67
1. Run `coca analysis`
2. Run Command

P
Phodal Huang 已提交
68
### Analysis
P
Phodal Huang 已提交
69 70

```
P
Phodal Huang 已提交
71
coca analysis
P
Phodal Huang 已提交
72 73
```

P
Phodal Huang 已提交
74 75 76 77 78 79
### Arch

```
coca arch
```

P
Phodal Huang 已提交
80
Android Studio Gradle DSL Module (merge header)
P
Phodal Huang 已提交
81

P
Phodal Huang 已提交
82
command: `coca arch -x "com.android.tools.idea.gradle.dsl" -H true`
P
Phodal Huang 已提交
83

P
Phodal Huang 已提交
84
![Gradle Demo](showcases/android-gradle-dsl.svg)
P
Phodal Huang 已提交
85

P
Phodal Huang 已提交
86
Android Studio Gradle DSL Module Elements Part:
P
Phodal Huang 已提交
87

P
Phodal Huang 已提交
88
command: `coca arch -x "com.android.tools.idea.gradle.dsl.parser.elements"`
P
Phodal Huang 已提交
89

P
Phodal Huang 已提交
90
![Gradle Demo](showcases/android-gradle-elements.svg)
P
Phodal Huang 已提交
91

P
Phodal Huang 已提交
92 93
### Find Bad Smells

P
Phodal Huang 已提交
94
```bash
P
Phodal Huang 已提交
95
coca bs -s type
P
Phodal Huang 已提交
96 97
```

P
Phodal Huang 已提交
98 99
Examples Result:

P
Phodal Huang 已提交
100
```json
P
Phodal Huang 已提交
101
{
P
Phodal Huang 已提交
102 103 104 105 106 107 108 109 110 111 112 113
   "dataClass": [
      {
         "File": "examples/api/BookController.java",
         "BS": "dataClass"
      }
   ],
   "lazyElement": [
      {
         "File": "examples/api/model/BookRepresentaion.java",
         "BS": "lazyElement"
      }
   ]
P
Phodal Huang 已提交
114 115 116
}
```

P
Phodal Huang 已提交
117 118 119
### Code Line Count

```
P
Phodal Huang 已提交
120
coca cloc
P
Phodal Huang 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
```

Results:

```
───────────────────────────────────────────────────────────────────────────────
Language                 Files     Lines   Blanks  Comments     Code Complexity
───────────────────────────────────────────────────────────────────────────────
Go                          58     31763     7132       890    23741       2847
Java                        44       971      208        21      742         62
Markdown                     8       238       75         0      163          0
Gherkin Specificati…         2        32        2        16       14          0
Document Type Defin…         1       293       36         0      257          0
License                      1       201       32         0      169          0
SQL                          1         2        0         0        2          0
SVG                          1       199        0        34      165          0
Shell                        1         3        1         1        1          0
XML                          1        13        0         0       13          0
gitignore                    1        61        8         4       49          0
───────────────────────────────────────────────────────────────────────────────
Total                      119     33776     7494       966    25316       2909
───────────────────────────────────────────────────────────────────────────────
Estimated Cost to Develop $803,822
Estimated Schedule Effort 14.120551 months
Estimated People Required 6.743156
P
Phodal Huang 已提交
146
───────────────────────────────────────────────────────────────────────────────
P
Phodal Huang 已提交
147 148
```

P
Phodal Huang 已提交
149 150 151 152 153 154
Results to json

```
coca cloc --by-file --format json
```

P
Phodal Huang 已提交
155 156 157
### Build Deps Tree

```
P
Phodal Huang 已提交
158
coca call -c com.phodal.pholedge.book.BookController.createBook -r com.phodal.pholedge.
P
Phodal Huang 已提交
159 160
```

P
Phodal Huang 已提交
161 162
Examples Results:

P
Phodal Huang 已提交
163 164 165 166 167
![Call Demo](docs/sample/call_demo.svg)

### Identify Spring API

```
P
Phodal Huang 已提交
168
coca api -f
P
Phodal Huang 已提交
169 170
```

P
Phodal Huang 已提交
171 172
![API Demo](docs/sample/api.svg)

P
Phodal Huang 已提交
173 174 175
With Count

```
P
Phodal Huang 已提交
176
coca api -r com.phodal.pholedge. -c 
P
Phodal Huang 已提交
177 178
``` 

P
Phodal Huang 已提交
179 180
or multi package:

P
Phodal Huang 已提交
181
`coca api  -r com.macro.mall.demo.controller.,com.zheng.cms.admin.,com.phodal.pholedge -c` 
P
Phodal Huang 已提交
182

P
Phodal Huang 已提交
183
```bash
P
Phodal Huang 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196
+------+--------+------------------------------------------------+------------------------------------------------------------------------+
| SIZE | METHOD |                      URI                       |                                 CALLER                                 |
+------+--------+------------------------------------------------+------------------------------------------------------------------------+
|   36 | GET    | /aliyun/oss/policy                             | controller.OssController.policy                                        |
|   21 | POST   | /aliyun/osscallback                            | controller.OssController.callback                                      |
|   17 | GET    | /subject/list                                  | controller.CmsSubjectController.getList                                |
|   17 | GET    | /esProduct/search                              | search.controller.EsProductController.search                           |
|   17 | GET    | /order/list                                    | controller.OmsOrderController.list                                     |
|   17 | GET    | /productAttribute/list/{cid}                   | controller.PmsProductAttributeController.getList                       |
|   17 | GET    | /productCategory/list/{parentId}               | controller.PmsProductCategoryController.getList                        |
|   17 | GET    | /brand/list                                    | controller.PmsBrandController.getList                                  |
|   17 | GET    | /esProduct/search/simple                       | search.controller.EsProductController.search                           |
+------+--------+------------------------------------------------+------------------------------------------------------------------------+
P
Phodal Huang 已提交
197 198
```

P
Phodal Huang 已提交
199 200 201
### Git Analysis

```
P
Phodal Huang 已提交
202
coca git -t
P
Phodal Huang 已提交
203 204
```

P
Phodal Huang 已提交
205 206 207
Results: 

```bash
P
Phodal Huang 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
+---------------------------------------------------------------------------------------------------------------------+-----------+-------------+
|                                                     ENTITYNAME                                                      | REVSCOUNT | AUTHORCOUNT |
+---------------------------------------------------------------------------------------------------------------------+-----------+-------------+
| build.gradle                                                                                                        |      1326 |          36 |
| src/asciidoc/index.adoc                                                                                             |       239 |          20 |
| build-spring-framework/resources/changelog.txt                                                                      |       187 |          10 |
| spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java                                  |       170 |          10 |
| spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java                |       159 |          15 |
| src/docs/asciidoc/web/webmvc.adoc                                                                                   |       121 |          24 |
| spring-context/src/main/java/org/springframework/context/annotation/ConfigurationClassParser.java                   |       118 |           9 |
| src/dist/changelog.txt                                                                                              |       118 |           9 |
| spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupport.java       |       116 |          15 |
| spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory.java        |       113 |          15 |
| spring-web/src/main/java/org/springframework/http/HttpHeaders.java                                                  |       111 |          18 |
| src/docs/asciidoc/web/webflux.adoc                                                                                  |       108 |          21 |
| spring-core/src/main/java/org/springframework/core/annotation/AnnotatedElementUtils.java                            |       107 |           9 |
| spring-test/spring-test.gradle                                                                                      |       105 |           7 |
| spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter.java |       105 |          13 |
| spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/StompBrokerRelayMessageHandler.java         |       101 |          12 |
| spring-web/src/main/java/org/springframework/web/client/RestTemplate.java                                           |        98 |          17 |
| spring-webmvc/src/main/java/org/springframework/web/servlet/resource/ResourceHttpRequestHandler.java                |        96 |          14 |
| org.springframework.core/src/main/java/org/springframework/core/convert/TypeDescriptor.java                         |        93 |           4 |
| spring-core/src/main/java/org/springframework/core/ResolvableType.java                                              |        92 |          10 |
+---------------------------------------------------------------------------------------------------------------------+-----------+-------------+
P
Phodal Huang 已提交
232 233
```

P
Phodal Huang 已提交
234 235 236
### Concept Analyser

```
P
Phodal Huang 已提交
237
coca concept
P
Phodal Huang 已提交
238 239 240 241 242
```

Results Examples:

```
P
Phodal Huang 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
+------------------+--------+
|      WORDS       | COUNTS |
+------------------+--------+
| context          |    590 |
| resolve          |    531 |
| path             |    501 |
| content          |    423 |
| code             |    416 |
| resource         |    373 |
| property         |    372 |
| session          |    364 |
| attribute        |    349 |
| properties       |    343 |
| headers          |    330 |
+------------------+--------+
P
Phodal Huang 已提交
258 259
```

P
Phodal Huang 已提交
260 261 262
### Count Refs

```
P
Phodal Huang 已提交
263
coca count
P
Phodal Huang 已提交
264 265 266 267 268
```

Results:

```
P
Phodal Huang 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
+------------+--------------------------------------------------------------------------+
| REFS COUNT |                                  METHOD                                  |
+------------+--------------------------------------------------------------------------+
|          2 | com.phodal.pholedge.book.BookRepository.byId                             |
|          2 | com.phodal.pholedge.book.model.Book.toRepresentation                     |
|          2 | com.phodal.pholedge.book.BookRepository.save                             |
|          2 | com.phodal.coca.analysis.JavaCallApp.parse                               |
|          2 | com.phodal.pholedge.book.BookRepository.save                             |
|          2 | com.phodal.coca.analysis.JavaCallApp.parse                               |
|          1 | com.phodal.pholedge.book.model.Book.save                                 |
|          1 | evolution.analysis.jv.calls.JavaCallVisitor.parseNewType                 |
|          1 | evolution.analysis.jv.calls.JavaCallVisitor.isNotSpecialNewWord          |
|          1 | com.phodal.pholedge.book.BookMapper.byId                                 |
|          1 | com.phodal.pholedge.book.BookService.updateBook                          |
|          1 | com.phodal.pholedge.book.BookService.getBooksLists                       |
|          1 | com.phodal.pholedge.book.BookService.getBookById                         |
|          1 | com.phodal.pholedge.book.BookMapper.doSave                               |
|          1 | com.phodal.pholedge.book.BookMapper.list                                 |
|          1 | com.phodal.pholedge.book.BookService.createBook                          |
|          1 | com.phodal.pholedge.book.BookFactory.create                              |
|          1 | com.phodal.pholedge.book.BookRepository.list                             |
|          1 | com.phodal.pholedge.book.model.Book.create                               |
+------------+--------------------------------------------------------------------------+
P
Phodal Huang 已提交
292 293
```

P
Phodal Huang 已提交
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
### Reverse Call Graph

```
coca rcall -c org.bytedeco.javacpp.tools.TokenIndexer.get
```

Results:

```
digraph G { 
edge [dir="back"];

"org.bytedeco.javacpp.tools.Parser.extern" -> "org.bytedeco.javacpp.tools.Parser.declarations";
"org.bytedeco.javacpp.tools.Parser.declarations" -> "org.bytedeco.javacpp.tools.Parser.extern";
...
}
```

![RCall Demo](docs/sample/rcall.svg)

P
Phodal Huang 已提交
314
### Auto Refactor
P
Phodal Huang 已提交
315 316 317 318 319 320 321

support: 

 - rename
 - move
 - remove unused import
 - remove unused class
P
Phodal Huang 已提交
322 323

```
P
Phodal Huang 已提交
324
coca refactor -R rename.coca -p src/main
P
Phodal Huang 已提交
325 326 327
coca refactor -m move.config -p .
```

P
Phodal Huang 已提交
328 329 330 331 332 333
### Evaluate

```
coca evaluate
```

P
Phodal Huang 已提交
334 335
Arduino Results:

P
Phodal Huang 已提交
336
```
P
Phodal Huang 已提交
337 338 339
+--------------------------------+-------+-----------------------+-------+-----------+
|              TYPE              | COUNT |         LEVEL         | TOTAL |   RATE    |
+--------------------------------+-------+-----------------------+-------+-----------+
P
Phodal Huang 已提交
340 341 342 343 344 345 346
| Nullable / Return Null         |     0 | Method                |  1615 | 0.00%     |
| Utils                          |     7 | Class                 |   252 | 2.78%     |
| Static Method                  |     0 | Method                |  1615 | 0.43%     |
| Average Method Num.            |  1615 | Method/Class          |   252 |  6.408730 |
| Method Num. Std Dev / 标准差   |  1615 | Class                 | -     |  7.344917 |
| Average Method Length          | 13654 | Without Getter/Setter |  1100 | 12.412727 |
| Method Length Std Dev / 标准差 |  1615 | Method                | -     | 20.047092 |
P
Phodal Huang 已提交
347
+--------------------------------+-------+-----------------------+-------+-----------+
P
Phodal Huang 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
```

Evaluate.json examples

```json
{
	"Nullable": {
		"Items": [
			"nonnull.Name.testNull",
			"nonnull.Name.orElseNull",
			"org.ofbiz.base.util.UtilURL.fromResource",
			"org.ofbiz.base.util.UtilURL.getOfbizHomeRelativeLocationFromFilePath",
			"study.huhao.demo.adapters.outbound.persistence.blog.BlogPO.toDomainModel",
			"study.huhao.demo.adapters.outbound.persistence.blog.BlogPO.toDomainModel",
			"study.huhao.demo.adapters.outbound.persistence.blog.BlogPO.of",
			"study.huhao.demo.infrastructure.persistence.blog.BlogPO.convertDomain"
		]
	},
	"ServiceSummary": {
		"LifecycleMap": null,
		"ReturnTypeMap": {
			"BookRepresentaion": [
				"com.phodal.pholedge.book.BookService.getBookById",
				"com.phodal.pholedge.book.BookService.updateBook"
			]
		},
		"RelatedMethod": null
	},
	"UtilsSummary": {},
	"Summary": {
		"UtilsCount": 1,
		"ClassCount": 64,
		"MethodCount": 161,
		"StaticMethodCount": 19
	}
}
P
Phodal Huang 已提交
384 385
```

P
Phodal Huang 已提交
386 387 388 389 390 391 392 393 394
### Todo

```
coca todo
```

results:

```
P
Phodal Huang 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
+------------+-----------------+--------------------------------+--------------------------------------------------------------------------------------+------+
|    DATE    |     AUTHOR      |            MESSAGES            |                                       FILENAME                                       | LINE |
+------------+-----------------+--------------------------------+--------------------------------------------------------------------------------------+------+
| 2019-12-09 | Cristian Maglie | happens on macosx, don't know  | app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCellJPanel.java |  118 |
|            |                 | why                            |                                                                                      |      |
| 2019-12-09 | Cristian Maglie | Make this a method of Theme    | app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCellJPanel.java |  233 |
| 2019-12-09 | Cristian Maglie | Do a better job in refreshing  | app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java                  |  241 |
|            |                 | only the needed element        |                                                                                      |      |
| 2019-12-09 | Cristian Maglie | Do a better job in refreshing  | app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java                  |  273 |
|            |                 | only the needed element        |                                                                                      |      |
| 2019-12-09 | Cristian Maglie | Make this a method of Theme    | app/src/cc/arduino/contributions/libraries/ui/MultiLibraryInstallDialog.java         |  149 |
| 2019-12-09 | Cristian Maglie | happens on macosx, don't know  | app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCellJPanel.java |  183 |
|            |                 | why                            |                                                                                      |      |
| 2019-12-09 | Cristian Maglie | show error                     | app/src/processing/app/Base.java                                                     | 1440 |
| 2019-12-09 | Cristian Maglie | error when importing. ignoring | app/src/processing/app/Base.java                                                     | 2423 |
|            |                 | :(                             |                                                                                      |      |
| 2019-12-09 | Cristian Maglie | Improve / move error handling  | app/src/processing/app/Editor.java                                                   | 1541 |
| 2019-12-09 | Cristian Maglie | Should be a Theme value?       | app/src/processing/app/EditorHeader.java                                             |   78 |
| 2019-12-09 | Cristian Maglie | Should be a Theme value?       | app/src/processing/app/EditorStatus.java                                             |   73 |
| 2019-12-09 | Cristian Maglie | Improve decoupling             | app/src/processing/app/EditorTab.java                                                |  465 |
+------------+-----------------+--------------------------------+--------------------------------------------------------------------------------------+------+```
P
Phodal Huang 已提交
416
```
P
Phodal Huang 已提交
417

P
Phodal Huang 已提交
418 419 420 421 422 423 424 425 426
### Suggest

```
coca suggest
```

results:

```
P
Phodal Huang 已提交
427 428 429 430 431 432 433 434
+--------+------------------+--------------------------------+
| CLASS  |     PATTERN      |             REASON             |
+--------+------------------+--------------------------------+
| Insect | factory          | too many constructor           |
| Bee    | factory, builder | complex constructor, too       |
|        |                  | many constructor, too many     |
|        |                  | parameters                     |
+--------+------------------+--------------------------------+
P
Phodal Huang 已提交
435
```
P
Phodal Huang 已提交
436

P
Phodal Huang 已提交
437 438 439 440 441 442 443 444
### Test Bad Smells

```
coca tbs
``` 

results

P
Phodal Huang 已提交
445
```bash
P
Phodal Huang 已提交
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
+---------------------+---------------------------------------------------------------+------+
|        TYPE         |                           FILENAME                            | LINE |
+---------------------+---------------------------------------------------------------+------+
| DuplicateAssertTest | app/test/cc/arduino/i18n/ExternalProcessOutputParserTest.java |  107 |
| DuplicateAssertTest | app/test/cc/arduino/i18n/ExternalProcessOutputParserTest.java |   41 |
| DuplicateAssertTest | app/test/cc/arduino/i18n/ExternalProcessOutputParserTest.java |   63 |
| RedundantPrintTest  | app/test/cc/arduino/i18n/I18NTest.java                        |   71 |
| RedundantPrintTest  | app/test/cc/arduino/i18n/I18NTest.java                        |   72 |
| RedundantPrintTest  | app/test/cc/arduino/i18n/I18NTest.java                        |   77 |
| DuplicateAssertTest | app/test/cc/arduino/net/PACSupportMethodsTest.java            |   19 |
| DuplicateAssertTest | app/test/processing/app/macosx/SystemProfilerParserTest.java  |   51 |
| DuplicateAssertTest | app/test/processing/app/syntax/PdeKeywordsTest.java           |   41 |
| DuplicateAssertTest | app/test/processing/app/tools/ZipDeflaterTest.java            |   57 |
| DuplicateAssertTest | app/test/processing/app/tools/ZipDeflaterTest.java            |   83 |
| DuplicateAssertTest | app/test/processing/app/tools/ZipDeflaterTest.java            |  109 |
+---------------------+---------------------------------------------------------------+------+
P
Phodal Huang 已提交
462 463
```

P
Phodal Huang 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
### Find unused deps

```
coca  deps -p _fixtures/deps/maven_sample
```

results:

```
+---------------------------+----------------------------------------+---------+
|          GROUPID          |               ARTIFACTID               |  SCOPE  |
+---------------------------+----------------------------------------+---------+
| org.flywaydb              | flyway-core                            |         |
| mysql                     | mysql-connector-java                   | runtime |
| org.springframework.cloud | spring-cloud-starter-contract-verifier | test    |
+---------------------------+----------------------------------------+---------+
```

P
Phodal Huang 已提交
482 483 484 485
## Showcases

Android Studio Analysis Examples

P
Phodal Huang 已提交
486
![Call Examples](showcases/android-studio-call.svg)
P
Phodal Huang 已提交
487

P
Phodal Huang 已提交
488
## Roadmap
P
Phodal Huang 已提交
489

P
Phodal Huang 已提交
490
 - bad smell support
P
Phodal Huang 已提交
491
   - [x] sort method size
P
Phodal Huang 已提交
492 493 494 495 496 497 498 499 500 501
   - type
     - [x] longParameterList
     - [x] longMethod
     - [x] repeatedSwitches
     - [x] complexIf
     - [x] largeClass
     - [x] refusedBequest
     - [x] dataClass
 - CLOC
 - HTTP API Visualization
P
Phodal Huang 已提交
502 503 504
    - [x] Spring Support
    - [x] @Service Support
    - [x] API Call Size
P
Phodal Huang 已提交
505
 - Git
P
Phodal Huang 已提交
506 507
    - [x] Revs Counts
    - [x] Summary
P
Phodal Huang 已提交
508
    - [ ] [git-quick-stats](https://github.com/arzzen/git-quick-stats)
P
Phodal Huang 已提交
509 510 511 512
 - Concept
    - [x] words NLP
    - [ ] to domain        
 - Call & rcall graph
P
Phodal Huang 已提交
513
    - [x] Count Refs
P
Phodal Huang 已提交
514
 - AutoRefactor
P
Phodal Huang 已提交
515 516
   - [x] remove unused
   - [x] move files
P
Phodal Huang 已提交
517
 - Evaluate
P
Phodal Huang 已提交
518 519 520
   - [x] nullable count
   - [x] static count
   - [x] method num /length count
P
Phodal Huang 已提交
521
 - Todo Summary
P
Phodal Huang 已提交
522
    - [x] Todo with History & Author   
P
Phodal Huang 已提交
523
 - Suggest API for Design Patterns
P
Phodal Huang 已提交
524 525 526 527
   - [x] factory pattern
   - [x] strategy 
   - [x] builder
   - [ ] cycle-deps -> adapter / agency
528 529
   - [ ] bad patterns
       - [ ] singleton
P
Phodal Huang 已提交
530 531 532 533 534
 -  Evaluate API
    - [x] Average Method Length
    - [x] Average Class Method Count
 - Tests
    - [ ] Testable?
P
Phodal Huang 已提交
535
    - [x] Test badsmell -> list [https://testsmells.github.io/pages/testsmells.html]
P
Phodal Huang 已提交
536 537 538 539 540 541 542 543 544 545
      - [x] IgnoreTest: @Ingore
      - [x] EmptyTest: not call in test
      - [x] RedundantPrintTest: system.out.println
      - [x] SleepyTest: Time.sleep
      - [x] RedundantAssertionTest: assertTrue(True) 
      - [x] UnknownTest: not assert
      - [x] DuplicateAssertTest: assert > 5
      - [ ] TestersOnly: method only call by test
      - [ ] CrossBorderTest: test method which not in system
      - [ ] General Fixture: JUnit classes having at least one method not using the entire test fixture defined in the setUp() method
P
Phodal Huang 已提交
546 547 548 549
 - Arch
    - [x] Architecture Visualization
    - [ ] Architecture Guard
      - [ ] DSL Design
P
Phodal Huang 已提交
550 551 552 553 554
 - Tech Debt from Source Code
    - [ ] auto create story
 - TBD
    - Comment Analysis
      - [ ] incorrect comment ? http://das.encs.concordia.ca/uploads/2018/02/Maldonado_thesis.pdf
P
Phodal Huang 已提交
555 556 557 558 559 560
 - ~~Online Code Analysis~~
    - [x] ~~WASM support~~
    - [ ] ~~expose WASM API~~
    - [ ] ~~GitHub search code~~
 - [ ] ~~Pluggable~~
    - [ ] ~~plugin support (Windows Issues)~~
P
Phodal Huang 已提交
561
 - [x] Dependence Analysis
P
Phodal Huang 已提交
562
    - [ ] Deps Related Counts
P
Phodal Huang 已提交
563 564 565
    - [x] 3rd-party analysis XML or Groovy Scripts
    - [x] Groovy Support
      - [x] migrate to Golang Styles
P
Phodal Huang 已提交
566
 - [ ] Story Cmd
P
Phodal Huang 已提交
567
    - [ ] Auto create refactor story
P
Phodal Huang 已提交
568 569
 - [ ] Clean Code Suggest
    - [ ] JavaScript Version [clean-code-javascript](https://github.com/ryanmcdermott/clean-code-javascript)
P
Phodal Huang 已提交
570 571
 - [ ] More CodeSmells
    - [ ] Source [DesigniteJava](https://github.com/tushartushar/DesigniteJava)
P
Phodal Huang 已提交
572

P
Phodal Huang 已提交
573 574 575 576 577 578 579 580 581
Documents Todo:

 - [ ] Docs
    - [ ] Lifecycle for new projects: evaluate (cloc, bad smell, api, git, todo) -> design -> patterns (suggest) -> refactoring ()
 - Date Collections
    - [ ] monolithic
    - [ ] microservice 
    - [ ] big data

P
Phodal Huang 已提交
582 583
Tech Debt

P
Phodal Huang 已提交
584
 - Test for Windows
P
Phodal Huang 已提交
585 586
 - Duplicate Code
   - cmd/ -> user builder to refactoring
P
Phodal Huang 已提交
587

P
Phodal HUANG 已提交
588 589
## Dev

P
Phodal Huang 已提交
590
Install Go
P
Phodal HUANG 已提交
591 592 593 594 595

```bash
brew install go
```

P
Phodal Huang 已提交
596
Env
P
Phodal HUANG 已提交
597 598 599 600 601 602 603

```bash
export GOROOT=/usr/local/opt/go/libexec
export GOPATH=$HOME/.go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
```

P
Phodal Huang 已提交
604
clone
P
Phodal HUANG 已提交
605 606

```
P
Phodal Huang 已提交
607
git clone https://github.com/phodal/coca
P
Phodal HUANG 已提交
608 609
```

P
Phodal Huang 已提交
610
Test Frameworks
P
Phodal HUANG 已提交
611 612 613 614

```
go get github.com/onsi/ginkgo
go get github.com/onsi/gomega
P
Phodal HUANG 已提交
615 616
```

P
Phodal Huang 已提交
617 618 619
License
---

P
Phodal Huang 已提交
620 621 622 623
Arch based on [Tequila](https://github.com/newlee/tequila)

Git Analysis inspired by [Code Maat](https://github.com/adamtornhill/code-maat)

P
Phodal Huang 已提交
624 625
Test bad smells inspired by [Test Smell Examples](https://testsmells.github.io/pages/testsmellexamples.html)

P
Phodal Huang 已提交
626 627
[![Phodal's Idea](http://brand.phodal.com/shields/idea-small.svg)](http://ideas.phodal.com/)

P
Phodal Huang 已提交
628
@ 2019 A [Phodal Huang](https://www.phodal.com)'s [Idea](http://github.com/phodal/ideas).  This code is distributed under the MPL license. See `LICENSE` in this directory.