CLI and library implementation of [COCOMO] (Constructive Cost Model) estimates using [tokei] as a library to calculate total SLOC and [scc] as reference
See also [tokei#359].
```test $ cocomo -h COCOMO (Constructive Cost Model) CLI utility and library
https://crates.io/crates/cocomo / https://github.com/qtfkwk/cocomo
See also: https://en.wikipedia.org/wiki/COCOMO
Usage: cocomo [OPTIONS] [PATH]...
Arguments: [PATH]... Files / Directories [default: .]
Options:
--sloc
Use [tokei] CLI to count lines of code in a given directory
```text
BASH 4 48 30 10 8 JSON 1 1706 1706 0 0 Shell 1 49 38 1 10
HTML 1 12 9 1 2 |- JavaScript 1 15 11 4 0
Markdown 5 1518 0 1211 307 |- JSON 1 47 47 0 0 |- Rust 1 7 4 3 0 |- Shell 1 16 14 0 2
Rust 23 4385 3680 130 575 |- Markdown 13 374 5 318 51
```
Use [cocomo] to calculate COCOMO estimates
text
$ cocomo ~/github.com/XAMPPRocky/tokei
Description | Value
---------------------------|---------------------------------
Total Source Lines of Code | 5,567
Estimated Cost to Develop | $163,886.77
Estimated Schedule Effort | 6.92 months
Estimated People Required | 2.10
Add -o sloccount
to use the SLOCCount-style output format
text
$ cocomo ~/github.com/XAMPPRocky/tokei -o sloccount
Total Physical Source Lines of Code (SLOC) = 5,567
Development Effort Estimate, Person-Years (Person-Months) = 1.21 (14.56)
(Basic COCOMO model, Person-Months = 2.40*(KSLOC**1.05)*1.00)
Schedule Estimate, Years (Months) = 0.58 (6.92)
(Basic COCOMO model, Months = 2.50*(person-months**0.38))
Estimated Average Number of Developers (Effort/Schedule) = 2.10
Total Estimated Cost to Develop = $163,887
(average salary = $56,286/year, overhead = 2.40)
Pass --sloc N
to calculate COCOMO estimates for a given number of lines of
code (without counting SLOC in any files or directories)
text
$ cocomo --sloc 5567
Description | Value
---------------------------|---------------------------------
Total Source Lines of Code | 5,567
Estimated Cost to Develop | $163,886.77
Estimated Schedule Effort | 6.92 months
Estimated People Required | 2.10