JetBrains / dekaf
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
txt
gitattributes
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.

main14756 LOC (59%) 321 files
test9442 LOC (38%) 224 files
generated0 LOC (0%) 0 files
build and deployment246 LOC (<1%) 3 files
other244 LOC (<1%) 5 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 ".*".
  • 321 files match defined criteria (14,756 LOC, 100.0% vs. main code):
    • 259 *.java files (11,522 LOC)
    • 56 *.kt files (2,569 LOC)
    • 6 *.xml files (665 LOC)
  • " *.java" is biggest, containing 78.08% of LOC.
  • " *.xml" is smallest, containing 4.51% of LOC.


*.java11522 LOC (78%) 259 files
*.kt2569 LOC (17%) 56 files
*.xml665 LOC (4%) 6 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 ".*/[Tt]ests/.*".
    • files with paths like ".*/[Tt]est/.*".
    • files with paths like ".*UnitTests[.][a-zA-Z0-9_]+".
    • files with paths like ".*[-]test[-].*".
    • files with paths like ".*[-]tests/.*".
  • 224 files match defined criteria (9,442 LOC, 64.0% vs. main code):
    • 186 *.java files (7,075 LOC)
    • 24 *.sql files (1,491 LOC)
    • 14 *.kt files (876 LOC)
  • " *.java" is biggest, containing 74.93% of LOC.
  • " *.kt" is smallest, containing 9.28% of LOC.


*.java7075 LOC (74%) 186 files
*.sql1491 LOC (15%) 24 files
*.kt876 LOC (9%) 14 files
Build and Deployment Code
Source code used to configure or support build and deployment process.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]sh".
    • files with paths like ".*[.]gradle".
    • files with paths like ".*[.]git[a-z]+".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*/[.]gitattributes".
  • 3 files match defined criteria (246 LOC, 1.7% vs. main code):
    • 2 *.gradle files (215 LOC)
    • 1 *.sh files (31 LOC)
  • " *.gradle" is biggest, containing 87.4% of LOC.
  • " *.sh" is smallest, containing 12.6% of LOC.


*.gradle215 LOC (87%) 2 files
*.sh31 LOC (12%) 1 file
Other Code
txt
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]md".
    • files with paths like ".*/README[.][a-z0-9]+".
    • files with paths like ".*[.]txt".
    • files with paths like ".*/LICENSE[.][a-z0-9]+".
    • files with paths like ".*/[.]gitignore".
  • 5 files match defined criteria (244 LOC, 1.7% vs. main code):
    • 2 *.txt files (151 LOC)
    • 3 *.md files (93 LOC)
  • " *.txt" is biggest, containing 61.89% of LOC.
  • " *.md" is smallest, containing 38.11% of LOC.


*.txt151 LOC (61%) 2 files
*.md93 LOC (38%) 3 files
Analyzers
Info about analyzers used for source code examinations.


2026-01-18 16:37