openai / harmony
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
mjs
  • 14 extensions are included in analyses: txt, rs, tsx, md, json, gitignore, py, toml, sh, yaml, ts, css, svg, mjs
  • 3 criteria are used to exclude files from analysis:
    • exclude files with path like ".*/git[-]history[.]txt" (Git history) (1 file).
    • exclude files with path like ".*/git[-][a-zA-Z0-9_]+[.]txt" (Git data exports for sokrates analyses) (0 files).
    • exclude files with path like ".*/docs/.*" (Documentation) (3 files).
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.

main4751 LOC (39%) 11 files
test971 LOC (8%) 2 files
generated2376 LOC (19%) 1 file
build and deployment140 LOC (1%) 4 files
other3797 LOC (31%) 45 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 ".*".
  • 11 files match defined criteria (4,751 LOC, 100.0% vs. main code):
    • 10 *.rs files (4,279 LOC)
    • 1 *.py files (472 LOC)
  • " *.rs" is biggest, containing 90.07% of LOC.
  • " *.py" is smallest, containing 9.93% of LOC.


*.rs4279 LOC (90%) 10 files
*.py472 LOC (9%) 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 ".*/test[-]data/.*".
    • files with paths like ".*/[Tt]ests/.*".
  • 2 files match defined criteria (971 LOC, 20.4% vs. main code):
    • 1 *.py files (966 LOC)
    • 1 *.sh files (5 LOC)
  • " *.py" is biggest, containing 99.49% of LOC.
  • " *.sh" is smallest, containing 0.51% of LOC.


*.py966 LOC (99%) 1 file
*.sh5 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 ".*/package[-]lock[.]json".
  • 1 file matches defined criteria (2,376 LOC, 50.0% vs. main code). All matches are in *.json files.


*.json2376 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 ".*/pyproject[.]toml".
    • files with paths like ".*[.]sh".
    • files with paths like ".*/package[.]json".
    • files with paths like ".*/Cargo[.]toml".
    • files with paths like ".*[.]git[a-z]+".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*/package[-]lock[.]json".
  • 4 files match defined criteria (140 LOC, 2.9% vs. main code):
    • 2 *.toml files (76 LOC)
    • 1 *.gitignore files (60 LOC)
    • 1 *.sh files (4 LOC)
  • " *.toml" is biggest, containing 54.29% of LOC.
  • " *.sh" is smallest, containing 2.86% of LOC.


*.toml76 LOC (54%) 2 files
*.gitignore60 LOC (42%) 1 file
*.sh4 LOC (2%) 1 file
Other Code
mjs
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]md".
    • files with paths like ".*[.]json".
    • files with paths like ".*/README[.][a-z0-9]+".
    • files with paths like ".*[.]txt".
    • files with paths like ".*/[Dd]emos?/.*".
  • 45 files match defined criteria (3,797 LOC, 79.9% vs. main code):
    • 5 *.json files (2,472 LOC)
    • 8 *.tsx files (646 LOC)
    • 23 *.txt files (240 LOC)
    • 4 *.md files (200 LOC)
    • 1 *.css files (183 LOC)
    • 1 *.gitignore files (34 LOC)
    • 2 *.ts files (18 LOC)
    • 1 *.mjs files (4 LOC)
  • " *.json" is biggest, containing 65.1% of LOC.
  • " *.mjs" is smallest, containing 0.11% of LOC.


*.json2472 LOC (65%) 5 files
*.tsx646 LOC (17%) 8 files
*.txt240 LOC (6%) 23 files
*.md200 LOC (5%) 4 files
*.css183 LOC (4%) 1 file
*.gitignore34 LOC (<1%) 1 file
*.ts18 LOC (<1%) 2 files
*.mjs4 LOC (<1%) 1 file
Analyzers
Info about analyzers used for source code examinations.
  • *.rs files are analyzed with RustAnalyzer:
    • 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
    • No 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:39