torvalds/linux

View on GitHub
tools/perf/pmu-events/jevents.py

Summary

Maintainability
F
1 wk
Test Coverage

File jevents.py has 1088 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python3
# SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
"""Convert directories of JSON events to C code."""
import argparse
import csv
Severity: Major
Found in tools/perf/pmu-events/jevents.py - About 2 days to fix

    Function __init__ has a Cognitive Complexity of 63 (exceeds 5 allowed). Consider refactoring.
    Open

      def __init__(self, jd: dict):
        """Constructor passed the dictionary of parsed json values."""
    
        def llx(x: int) -> str:
          """Convert an int to a string similar to a printf modifier of %#llx."""
    Severity: Minor
    Found in tools/perf/pmu-events/jevents.py - About 1 day to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function main has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring.
    Open

    def main() -> None:
      global _args
    
      def dir_path(path: str) -> str:
        """Validate path is a directory for argparse."""
    Severity: Minor
    Found in tools/perf/pmu-events/jevents.py - About 5 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function print_mapping_table has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
    Open

    def print_mapping_table(archs: Sequence[str]) -> None:
      """Read the mapfile and generate the struct from cpuid string to event table."""
      _args.output_file.write("""
    /* Struct used to make the PMU event table implementation opaque to callers. */
    struct pmu_events_table {
    Severity: Minor
    Found in tools/perf/pmu-events/jevents.py - About 4 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function print_system_mapping_table has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    def print_system_mapping_table() -> None:
      """C struct mapping table array for tables from /sys directories."""
      _args.output_file.write("""
    struct pmu_sys_events {
    \tconst char *name;
    Severity: Minor
    Found in tools/perf/pmu-events/jevents.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function compute has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

      def compute(self) -> None:
        """Called once all strings are added to compute the string and offsets."""
    
        folded_strings = {}
        # Determine if two strings can be folded, ie. let 1 string use the
    Severity: Minor
    Found in tools/perf/pmu-events/jevents.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function build_c_string has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

      def build_c_string(self, metric: bool) -> str:
        s = ''
        for attr in _json_metric_attributes if metric else _json_event_attributes:
          x = getattr(self, attr)
          if metric and x and attr == 'metric_expr':
    Severity: Minor
    Found in tools/perf/pmu-events/jevents.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function __init__ has 49 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def __init__(self, jd: dict):
        """Constructor passed the dictionary of parsed json values."""
    
        def llx(x: int) -> str:
          """Convert an int to a string similar to a printf modifier of %#llx."""
    Severity: Minor
    Found in tools/perf/pmu-events/jevents.py - About 1 hr to fix

      Function preprocess_arch_std_files has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

      def preprocess_arch_std_files(archpath: str) -> None:
        """Read in all architecture standard events."""
        global _arch_std_events
        for item in os.scandir(archpath):
          if item.is_file() and item.name.endswith('.json'):
      Severity: Minor
      Found in tools/perf/pmu-events/jevents.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function print_pending_events has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      def print_pending_events() -> None:
        """Optionally close events table."""
      
        def event_cmp_key(j: JsonEvent) -> Tuple[str, str, bool, str, str]:
          def fix_none(s: Optional[str]) -> str:
      Severity: Minor
      Found in tools/perf/pmu-events/jevents.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function print_pending_metrics has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      def print_pending_metrics() -> None:
        """Optionally close metrics table."""
      
        def metric_cmp_key(j: JsonEvent) -> Tuple[bool, str, str]:
          def fix_none(s: Optional[str]) -> str:
      Severity: Minor
      Found in tools/perf/pmu-events/jevents.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function preprocess_one_file has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

      def preprocess_one_file(parents: Sequence[str], item: os.DirEntry) -> None:
      
        if item.is_dir():
          return
      
      
      Severity: Minor
      Found in tools/perf/pmu-events/jevents.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function process_one_file has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

      def process_one_file(parents: Sequence[str], item: os.DirEntry) -> None:
        """Process a JSON file during the main walk."""
        def is_leaf_dir(path: str) -> bool:
          for item in os.scandir(path):
            if item.is_dir():
      Severity: Minor
      Found in tools/perf/pmu-events/jevents.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function read_json_events has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

      def read_json_events(path: str, topic: str) -> Sequence[JsonEvent]:
        """Read json events from the specified file."""
        try:
          events = json.load(open(path), object_hook=JsonEvent)
        except BaseException as err:
      Severity: Minor
      Found in tools/perf/pmu-events/jevents.py - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Avoid deeply nested control flow statements.
      Open

                if not first and len(row) > 0 and not row[0].startswith('#'):
                  event_tblname = file_name_to_table_name('pmu_events_', [], row[2].replace('/', '_'))
                  if event_tblname in _event_tables:
                    event_size = f'ARRAY_SIZE({event_tblname})'
                  else:
      Severity: Major
      Found in tools/perf/pmu-events/jevents.py - About 45 mins to fix

        There are no issues that match your filters.

        Category
        Status