NanoHttpd / nanohttpd

Tiny, easily embeddable HTTP server in Java.

Home Page:http://nanohttpd.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

library version inconsistency notice.

kaifeng-h opened this issue · comments

Hi. I have implemented a tool to detect library version inconsistencies. Your project have 2 inconsistent libraries and 1 false consistent library.

Take org.apache.httpcomponents:httpclient for example, this library is declared as version 4.4.1 in webserver, 4.2.5 in core and etc... Such version inconsistencies may cause unnecessary maintenance effort in the long run. For example, if two modules become inter-dependent, library version conflict may happen. It has already become a common issue and hinders development progress. Thus a version harmonization is necessary.

Provided we applied a version harmonization, I calculated the cost it may have to harmonize to all upper versions including an up-to-date one. The cost refers to POM config changes and API invocation changes. Take org.apache.httpcomponents:httpclient for example, if we harmonize all the library versions into 4.5. The concern is, how much should the project code adapt to the newer library version. We list an effort table to quantify the harmonization cost.

The effort table is listed below. It shows the overall harmonization effort by modules. The columns represents the number of library APIs and API calls(NA,NAC), deleted APIs and API calls(NDA,NDAC) as well as modified API and API calls(NMA,NMAC). Modified APIs refers to those APIs whose call graph is not the same as previous version. Take the first row for example, if upgrading the library into version 4.5. Given that 1 APIs is used in module nanolets, 0 of them is deleted in a recommended version(which will throw a NoMethodFoundError unless re-compiling the project), 1 of them is regarded as modified which could break the former API contract.

Index Module NA(NAC) NDA(NDAC) NMA(NMAC)
1 nanolets 1(12) 0(0) 1(12)
2 fileupload 1(4) 0(0) 1(4)
3 webserver 0(0) 0(0) 0(0)
4 .. .. .. ..

Also we provided another table to show the potential files that may be affected due to library API change, which could help to spot the concerned API usage and rerun the test cases. The table is listed below.

Module File Type API
nanolets nanolets/src/test/java/org/nanohttpd/junit/router/TestNanolets.java modify org.apache.http.impl.client.HttpClients.createDefault()
fileupload fileupload/src/test/java/org/nanohttpd/junit/fileupload/TestNanoFileUpLoad.java modify org.apache.http.impl.client.HttpClients.createDefault()

As for false consistency, take org.nanohttpd nanohttpd jar for example. The library is declared in version 2.3.2-SNAPSHOT in all modules. However they are declared differently. As components are developed in parallel, if one single library version is updated, which could become inconsistent as mentioned above, may cause above-mentioned inconsistency issues

If you are interested, you can have a more complete and detailed report in the attached PDF file.
NanoHttpd nanohttpd.pdf