anthropics / s5cmd
Source Code Overview

Analysis scope, overview of main, test, generated, deployment, build, and other code.

Source Code Analysis Scope
Files includes and excluded from analyses
mod
  • 8 extensions are included in analyses: go, yaml, py, md, mod, gitignore, txt, json
  • 1 criterion is used to exclude files from analysis:
    • exclude files with path like ".*/testdata/.*" (Test data) (1 file).
Overview of Analyzed Files
Basic stats on analyzed files
Intro
For analysis purposes we separate files in scope into several categories: main, test, generated, deployment and build, and other.

  • The main category contains all manually created source code files that are being used in the production.
  • Files in the main category are used as input for other analyses: logical decomposition, concerns, duplication, file size, unit size, and conditional complexity.
  • Test source code files are used only for testing of the product. These files are normally not deployed to production.
  • Build and deployment source code files are used to configure or support build and deployment process.
  • Generated source code files are automatically generated files that have not been manually changed after generation.
  • While a source code folder may contain a number of files, we are primarily interested in the source code files that are being written and maintained by developers.
  • Files containing binaries, documentation, or third-party libraries, for instance, are excluded from analysis. The exception are third-party libraries that have been changed by developers.

main8617 LOC (35%) 48 files
test14515 LOC (60%) 38 files
generated73 LOC (<1%) 1 file
build and deployment55 LOC (<1%) 2 files
other929 LOC (3%) 4 files
Main Code
All manually created or maintained source code that defines logic of the product that is run in a production environment.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*".
  • 48 files match defined criteria (8,617 LOC, 100.0% vs. main code):
    • 45 *.go files (7,705 LOC)
    • 3 *.py files (912 LOC)
  • " *.go" is biggest, containing 89.42% of LOC.
  • " *.py" is smallest, containing 10.58% of LOC.


*.go7705 LOC (89%) 45 files
*.py912 LOC (10%) 3 files
Test Code
Used only for testing of the product. Normally not deployed in a production environment.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*_test[.].*".
    • files with paths like ".*/e2e/.*".
    • files with paths like ".*/test_.*".
  • 38 files match defined criteria (14,515 LOC, 168.4% vs. main code):
    • 37 *.go files (14,486 LOC)
    • 1 *.py files (29 LOC)
  • " *.go" is biggest, containing 99.8% of LOC.
  • " *.py" is smallest, containing 0.2% of LOC.


*.go14486 LOC (99%) 37 files
*.py29 LOC (<1%) 1 file
Generated Code
Automatically generated files, not manually changed after generation.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with any line of content like "//[ ]*Generated by .*".
  • 1 file matches defined criteria (73 LOC, 0.8% vs. main code). All matches are in *.go files.


*.go73 LOC (100%) 1 file
Build and Deployment Code
Source code used to configure or support build and deployment process.
mod
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]git[a-z]+".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*/go[.]mod".
  • 2 files match defined criteria (55 LOC, 0.6% vs. main code):
    • 1 *.mod files (48 LOC)
    • 1 *.gitignore files (7 LOC)
  • " *.mod" is biggest, containing 87.27% of LOC.
  • " *.gitignore" is smallest, containing 12.73% of LOC.


*.mod48 LOC (87%) 1 file
*.gitignore7 LOC (12%) 1 file
Other Code
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]json".
    • files with paths like ".*[.]md".
    • files with paths like ".*/README[.][a-z0-9]+".
  • 4 files match defined criteria (929 LOC, 10.8% vs. main code). All matches are in *.md files.


*.md929 LOC (100%) 4 files
Analyzers
Info about analyzers used for source code examinations.
  • *.go files are analyzed with GoLangAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • Unit size analysis
    • Conditional complexity analysis
    • Basic heuristic dependency analysis
  • *.py files are analyzed with PythonAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • Unit size analysis
    • Conditional complexity analysis
    • Basic heuristic dependency analysis


2026-06-24 10:43