netflix / genie
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
properties
snippet
editorconfig
proto
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.

main66222 LOC (51%) 834 files
test41285 LOC (32%) 451 files
generated9325 LOC (7%) 1 file
build and deployment1319 LOC (1%) 38 files
other9906 LOC (7%) 16 files
Main Code
All manually created or maintained source code that defines logic of the product that is run in a production environment.
proto
snippet
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*".
  • 834 files match defined criteria (66,222 LOC, 100.0% vs. main code):
    • 727 *.java files (52,440 LOC)
    • 24 *.xml files (5,944 LOC)
    • 31 *.sql files (4,220 LOC)
    • 32 *.js files (2,443 LOC)
    • 1 *.css files (475 LOC)
    • 1 *.proto files (301 LOC)
    • 9 *.py files (215 LOC)
    • 6 *.groovy files (152 LOC)
    • 2 *.snippet files (20 LOC)
    • 1 *.html files (12 LOC)
  • " *.java" is biggest, containing 79.19% of LOC.
  • " *.html" is smallest, containing 0.02% of LOC.


*.java52440 LOC (79%) 727 files
*.xml5944 LOC (8%) 24 files
*.sql4220 LOC (6%) 31 files
*.js2443 LOC (3%) 32 files
*.css475 LOC (<1%) 1 file
*.proto301 LOC (<1%) 1 file
*.py215 LOC (<1%) 9 files
*.groovy152 LOC (<1%) 6 files
*.snippet20 LOC (<1%) 2 files
*.html12 LOC (<1%) 1 file
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 ".*/[Tt]est/.*".
    • files with paths like ".*[.][Tt]est[.].*".
    • files with paths like ".*[.]test[.].*".
  • 451 files match defined criteria (41,285 LOC, 62.3% vs. main code):
    • 253 *.groovy files (27,731 LOC)
    • 190 *.java files (13,311 LOC)
    • 4 *.sh files (186 LOC)
    • 3 *.xml files (30 LOC)
    • 1 *.gradle files (27 LOC)
  • " *.groovy" is biggest, containing 67.17% of LOC.
  • " *.gradle" is smallest, containing 0.07% of LOC.


*.groovy27731 LOC (67%) 253 files
*.java13311 LOC (32%) 190 files
*.sh186 LOC (<1%) 4 files
*.xml30 LOC (<1%) 3 files
*.gradle27 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 paths like ".*/npm[-]shrinkwrap[.]json".
  • 1 file matches defined criteria (9,325 LOC, 14.1% vs. main code). All matches are in *.json files.


*.json9325 LOC (100%) 1 file
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 ".*[.]gradle".
    • files with paths like ".*[.]sh".
    • files with paths like ".*[.]git[a-z]+".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*[.]bat".
    • files with paths like ".*/package[.]json".
    • files with paths like ".*([.]|/)webpack([.]|/).*".
  • 38 files match defined criteria (1,319 LOC, 2.0% vs. main code):
    • 16 *.gradle files (1,066 LOC)
    • 20 *.sh files (142 LOC)
    • 1 *.bat files (71 LOC)
    • 1 *.js files (40 LOC)
  • " *.gradle" is biggest, containing 80.82% of LOC.
  • " *.js" is smallest, containing 3.03% of LOC.


*.gradle1066 LOC (80%) 16 files
*.sh142 LOC (10%) 20 files
*.bat71 LOC (5%) 1 file
*.js40 LOC (3%) 1 file
Other Code
txt
properties
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]properties".
    • files with paths like ".*[.]md".
    • files with paths like ".*/README[.][a-z0-9]+".
    • files with paths like ".*/config/checkstyle/.*".
    • files with paths like ".*/checkstyle[.]xml".
    • files with paths like ".*/checkstyle.*".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*[.]json".
    • files with paths like ".*[.]adoc".
    • files with paths like ".*/asciidoc/.*".
    • files with paths like ".*[.]txt".
    • files with paths like ".*[.]editorconfig".
  • 16 files match defined criteria (9,906 LOC, 15.0% vs. main code):
    • 2 *.json files (9,389 LOC)
    • 4 *.txt files (162 LOC)
    • 4 *.md files (147 LOC)
    • 2 *.xml files (136 LOC)
    • 4 *.properties files (72 LOC)
  • " *.json" is biggest, containing 94.78% of LOC.
  • " *.properties" is smallest, containing 0.73% of LOC.


*.json9389 LOC (94%) 2 files
*.txt162 LOC (1%) 4 files
*.md147 LOC (1%) 4 files
*.xml136 LOC (1%) 2 files
*.properties72 LOC (<1%) 4 files
Analyzers
Info about analyzers used for source code examinations.


2025-05-02 23:42