librenms/librenms

View on GitHub
LibreNMS/OS/Shared/Cisco.php

Summary

Maintainability
F
4 days
Test Coverage

File Cisco.php has 440 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Cisco.php
 *
 * Base Cisco OS for Cisco based devices
Severity: Minor
Found in LibreNMS/OS/Shared/Cisco.php - About 6 hrs to fix

    Method pollSlas has 90 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function pollSlas($slas): void
        {
            $device = $this->getDeviceArray();
    
            $data = snmpwalk_group($device, 'rttMonLatestRttOperTable', 'CISCO-RTTMON-MIB');
    Severity: Major
    Found in LibreNMS/OS/Shared/Cisco.php - About 3 hrs to fix

      The class Cisco has an overall complexity of 87 which is very high. The configured complexity threshold is 50.
      Open

      class Cisco extends OS implements
          OSDiscovery,
          SlaDiscovery,
          StpInstanceDiscovery,
          ProcessorDiscovery,
      Severity: Minor
      Found in LibreNMS/OS/Shared/Cisco.php by phpmd

      Function discoverOS has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
      Open

          public function discoverOS(Device $device): void
          {
              // yaml discovery overrides this
              if ($this->hasYamlDiscovery('os')) {
                  $this->discoverYamlOS($device);
      Severity: Minor
      Found in LibreNMS/OS/Shared/Cisco.php - 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

      Method discoverProcessors has 75 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function discoverProcessors()
          {
              $processors_data = $this->getCacheTable('cpmCPUTotalTable', 'CISCO-PROCESS-MIB');
              $processors_data = snmpwalk_group($this->getDeviceArray(), 'cpmCoreTable', 'CISCO-PROCESS-MIB', 1, $processors_data);
              $processors = [];
      Severity: Major
      Found in LibreNMS/OS/Shared/Cisco.php - About 3 hrs to fix

        Function discoverProcessors has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            public function discoverProcessors()
            {
                $processors_data = $this->getCacheTable('cpmCPUTotalTable', 'CISCO-PROCESS-MIB');
                $processors_data = snmpwalk_group($this->getDeviceArray(), 'cpmCoreTable', 'CISCO-PROCESS-MIB', 1, $processors_data);
                $processors = [];
        Severity: Minor
        Found in LibreNMS/OS/Shared/Cisco.php - 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

        Method discoverMempools has 72 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function discoverMempools()
            {
                if ($this->hasYamlDiscovery('mempools')) {
                    return parent::discoverMempools(); // yaml
                }
        Severity: Major
        Found in LibreNMS/OS/Shared/Cisco.php - About 2 hrs to fix

          Method discoverOS has 56 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function discoverOS(Device $device): void
              {
                  // yaml discovery overrides this
                  if ($this->hasYamlDiscovery('os')) {
                      $this->discoverYamlOS($device);
          Severity: Major
          Found in LibreNMS/OS/Shared/Cisco.php - About 2 hrs to fix

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

                public function discoverMempools()
                {
                    if ($this->hasYamlDiscovery('mempools')) {
                        return parent::discoverMempools(); // yaml
                    }
            Severity: Minor
            Found in LibreNMS/OS/Shared/Cisco.php - 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

            Method pollNac has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function pollNac()
                {
                    $nac = new Collection();
            
                    $portAuthSessionEntry = snmpwalk_cache_oid($this->getDeviceArray(), 'cafSessionEntry', [], 'CISCO-AUTH-FRAMEWORK-MIB');
            Severity: Minor
            Found in LibreNMS/OS/Shared/Cisco.php - About 1 hr to fix

              Consider simplifying this complex logical expression.
              Open

                      if ((empty($hardware) || preg_match('/Switch System/', $hardware)) && ! empty($data[1000]['entPhysicalModelName'])) {
                          $hardware = $data[1000]['entPhysicalModelName'];
                      } elseif (empty($hardware) && ! empty($data[1000]['entPhysicalContainedIn'])) {
                          $hardware = $data[$data[1000]['entPhysicalContainedIn']]['entPhysicalName'];
                      } elseif ((preg_match('/stack/i', $hardware ?? '') || empty($hardware)) && ! empty($data[1001]['entPhysicalModelName'])) {
              Severity: Major
              Found in LibreNMS/OS/Shared/Cisco.php - About 1 hr to fix

                Avoid too many return statements within this method.
                Open

                                return '';
                Severity: Major
                Found in LibreNMS/OS/Shared/Cisco.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  return $tag;
                  Severity: Major
                  Found in LibreNMS/OS/Shared/Cisco.php - About 30 mins to fix

                    The method discoverOS() has an NPath complexity of 2640. The configured NPath complexity threshold is 200.
                    Open

                        public function discoverOS(Device $device): void
                        {
                            // yaml discovery overrides this
                            if ($this->hasYamlDiscovery('os')) {
                                $this->discoverYamlOS($device);
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    NPathComplexity

                    Since: 0.1

                    The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                    Example

                    class Foo {
                        function bar() {
                            // lots of complicated code
                        }
                    }

                    Source https://phpmd.org/rules/codesize.html#npathcomplexity

                    The method discoverProcessors() has an NPath complexity of 294. The configured NPath complexity threshold is 200.
                    Open

                        public function discoverProcessors()
                        {
                            $processors_data = $this->getCacheTable('cpmCPUTotalTable', 'CISCO-PROCESS-MIB');
                            $processors_data = snmpwalk_group($this->getDeviceArray(), 'cpmCoreTable', 'CISCO-PROCESS-MIB', 1, $processors_data);
                            $processors = [];
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    NPathComplexity

                    Since: 0.1

                    The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                    Example

                    class Foo {
                        function bar() {
                            // lots of complicated code
                        }
                    }

                    Source https://phpmd.org/rules/codesize.html#npathcomplexity

                    The method pollSlas() has 112 lines of code. Current threshold is set to 100. Avoid really long methods.
                    Open

                        public function pollSlas($slas): void
                        {
                            $device = $this->getDeviceArray();
                    
                            $data = snmpwalk_group($device, 'rttMonLatestRttOperTable', 'CISCO-RTTMON-MIB');
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    The method discoverMempools() has an NPath complexity of 6688. The configured NPath complexity threshold is 200.
                    Open

                        public function discoverMempools()
                        {
                            if ($this->hasYamlDiscovery('mempools')) {
                                return parent::discoverMempools(); // yaml
                            }
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    NPathComplexity

                    Since: 0.1

                    The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                    Example

                    class Foo {
                        function bar() {
                            // lots of complicated code
                        }
                    }

                    Source https://phpmd.org/rules/codesize.html#npathcomplexity

                    The method discoverMempools() has a Cyclomatic Complexity of 20. The configured cyclomatic complexity threshold is 10.
                    Open

                        public function discoverMempools()
                        {
                            if ($this->hasYamlDiscovery('mempools')) {
                                return parent::discoverMempools(); // yaml
                            }
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    CyclomaticComplexity

                    Since: 0.1

                    Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                    Example

                    // Cyclomatic Complexity = 11
                    class Foo {
                    1   public function example() {
                    2       if ($a == $b) {
                    3           if ($a1 == $b1) {
                                    fiddle();
                    4           } elseif ($a2 == $b2) {
                                    fiddle();
                                } else {
                                    fiddle();
                                }
                    5       } elseif ($c == $d) {
                    6           while ($c == $d) {
                                    fiddle();
                                }
                    7        } elseif ($e == $f) {
                    8           for ($n = 0; $n < $h; $n++) {
                                    fiddle();
                                }
                            } else {
                                switch ($z) {
                    9               case 1:
                                        fiddle();
                                        break;
                    10              case 2:
                                        fiddle();
                                        break;
                    11              case 3:
                                        fiddle();
                                        break;
                                    default:
                                        fiddle();
                                        break;
                                }
                            }
                        }
                    }

                    Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                    The method discoverProcessors() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10.
                    Open

                        public function discoverProcessors()
                        {
                            $processors_data = $this->getCacheTable('cpmCPUTotalTable', 'CISCO-PROCESS-MIB');
                            $processors_data = snmpwalk_group($this->getDeviceArray(), 'cpmCoreTable', 'CISCO-PROCESS-MIB', 1, $processors_data);
                            $processors = [];
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    CyclomaticComplexity

                    Since: 0.1

                    Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                    Example

                    // Cyclomatic Complexity = 11
                    class Foo {
                    1   public function example() {
                    2       if ($a == $b) {
                    3           if ($a1 == $b1) {
                                    fiddle();
                    4           } elseif ($a2 == $b2) {
                                    fiddle();
                                } else {
                                    fiddle();
                                }
                    5       } elseif ($c == $d) {
                    6           while ($c == $d) {
                                    fiddle();
                                }
                    7        } elseif ($e == $f) {
                    8           for ($n = 0; $n < $h; $n++) {
                                    fiddle();
                                }
                            } else {
                                switch ($z) {
                    9               case 1:
                                        fiddle();
                                        break;
                    10              case 2:
                                        fiddle();
                                        break;
                    11              case 3:
                                        fiddle();
                                        break;
                                    default:
                                        fiddle();
                                        break;
                                }
                            }
                        }
                    }

                    Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                    The method discoverOS() has a Cyclomatic Complexity of 23. The configured cyclomatic complexity threshold is 10.
                    Open

                        public function discoverOS(Device $device): void
                        {
                            // yaml discovery overrides this
                            if ($this->hasYamlDiscovery('os')) {
                                $this->discoverYamlOS($device);
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    CyclomaticComplexity

                    Since: 0.1

                    Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                    Example

                    // Cyclomatic Complexity = 11
                    class Foo {
                    1   public function example() {
                    2       if ($a == $b) {
                    3           if ($a1 == $b1) {
                                    fiddle();
                    4           } elseif ($a2 == $b2) {
                                    fiddle();
                                } else {
                                    fiddle();
                                }
                    5       } elseif ($c == $d) {
                    6           while ($c == $d) {
                                    fiddle();
                                }
                    7        } elseif ($e == $f) {
                    8           for ($n = 0; $n < $h; $n++) {
                                    fiddle();
                                }
                            } else {
                                switch ($z) {
                    9               case 1:
                                        fiddle();
                                        break;
                    10              case 2:
                                        fiddle();
                                        break;
                    11              case 3:
                                        fiddle();
                                        break;
                                    default:
                                        fiddle();
                                        break;
                                }
                            }
                        }
                    }

                    Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                    The method discoverProcessors uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                    Open

                                } else {
                                    continue; // skip bad data
                                }
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    ElseExpression

                    Since: 1.4.0

                    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                    Example

                    class Foo
                    {
                        public function bar($flag)
                        {
                            if ($flag) {
                                // one branch
                            } else {
                                // another branch
                            }
                        }
                    }

                    Source https://phpmd.org/rules/cleancode.html#elseexpression

                    The method discoverProcessors uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                    Open

                                } else {
                                    $processors[] = Processor::discover(
                                        'cpm',
                                        $this->getDeviceId(),
                                        $usage_oid,
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    ElseExpression

                    Since: 1.4.0

                    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                    Example

                    class Foo
                    {
                        public function bar($flag)
                        {
                            if ($flag) {
                                // one branch
                            } else {
                                // another branch
                            }
                        }
                    }

                    Source https://phpmd.org/rules/cleancode.html#elseexpression

                    Avoid unused local variables such as '$sla_id'.
                    Open

                                $sla_id = $sla->sla_id;
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    UnusedLocalVariable

                    Since: 0.2

                    Detects when a local variable is declared and/or assigned, but not used.

                    Example

                    class Foo {
                        public function doSomething()
                        {
                            $i = 5; // Unused
                        }
                    }

                    Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable

                    Similar blocks of code found in 19 locations. Consider refactoring.
                    Open

                                        $rrd_def = RrdDefinition::make()
                                            ->addDataset('PacketLossSD', 'GAUGE', 0)
                                            ->addDataset('PacketLossDS', 'GAUGE', 0)
                                            ->addDataset('PacketOutOfSequence', 'GAUGE', 0)
                                            ->addDataset('PacketMIA', 'GAUGE', 0)
                    Severity: Major
                    Found in LibreNMS/OS/Shared/Cisco.php and 18 other locations - About 3 hrs to fix
                    includes/polling/applications/cape.inc.php on lines 65..76
                    includes/polling/applications/cape.inc.php on lines 96..107
                    includes/polling/applications/cape.inc.php on lines 127..138
                    includes/polling/applications/cape.inc.php on lines 158..169
                    includes/polling/applications/cape.inc.php on lines 189..200
                    includes/polling/applications/cape.inc.php on lines 220..231
                    includes/polling/applications/cape.inc.php on lines 251..262
                    includes/polling/applications/cape.inc.php on lines 282..293
                    includes/polling/applications/cape.inc.php on lines 313..324
                    includes/polling/applications/cape.inc.php on lines 344..355
                    includes/polling/applications/cape.inc.php on lines 375..386
                    includes/polling/applications/cape.inc.php on lines 406..417
                    includes/polling/applications/cape.inc.php on lines 437..448
                    includes/polling/applications/cape.inc.php on lines 468..479
                    includes/polling/applications/hv-monitor.inc.php on lines 246..257
                    includes/polling/applications/opensearch.inc.php on lines 225..236
                    includes/polling/applications/pi-hole.inc.php on lines 28..39
                    includes/polling/applications/sdfsinfo.inc.php on lines 33..44

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 143.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Similar blocks of code found in 4 locations. Consider refactoring.
                    Open

                                        $rrd_def = RrdDefinition::make()
                                            ->addDataset('PacketLoss', 'GAUGE', 0)
                                            ->addDataset('PacketOosSD', 'GAUGE', 0)
                                            ->addDataset('PacketOosDS', 'GAUGE', 0)
                                            ->addDataset('PacketLateArrival', 'GAUGE', 0)
                    Severity: Major
                    Found in LibreNMS/OS/Shared/Cisco.php and 3 other locations - About 2 hrs to fix
                    includes/polling/applications/bind.inc.php on lines 34..44
                    includes/polling/applications/cape.inc.php on lines 501..511
                    includes/polling/applications/mojo_cape_submit.inc.php on lines 23..33

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 131.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Avoid excessively long variable names like $cafSessionMethodsInfoEntry. Keep variable name length under 20.
                    Open

                                $cafSessionMethodsInfoEntry = collect(snmpwalk_cache_oid($this->getDeviceArray(), 'cafSessionMethodsInfoEntry', [], 'CISCO-AUTH-FRAMEWORK-MIB'))->mapWithKeys(function ($item, $key) {
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    LongVariable

                    Since: 0.2

                    Detects when a field, formal or local variable is declared with a long name.

                    Example

                    class Something {
                        protected $reallyLongIntName = -3; // VIOLATION - Field
                        public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
                            $otherReallyLongName = -5; // VIOLATION - Local
                            for ($interestingIntIndex = 0; // VIOLATION - For
                                 $interestingIntIndex < 10;
                                 $interestingIntIndex++ ) {
                            }
                        }
                    }

                    Source https://phpmd.org/rules/naming.html#longvariable

                    Avoid excessively long variable names like $portAuthSessionEntryParameters. Keep variable name length under 20.
                    Open

                                foreach ($portAuthSessionEntry as $index => $portAuthSessionEntryParameters) {
                    Severity: Minor
                    Found in LibreNMS/OS/Shared/Cisco.php by phpmd

                    LongVariable

                    Since: 0.2

                    Detects when a field, formal or local variable is declared with a long name.

                    Example

                    class Something {
                        protected $reallyLongIntName = -3; // VIOLATION - Field
                        public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
                            $otherReallyLongName = -5; // VIOLATION - Local
                            for ($interestingIntIndex = 0; // VIOLATION - For
                                 $interestingIntIndex < 10;
                                 $interestingIntIndex++ ) {
                            }
                        }
                    }

                    Source https://phpmd.org/rules/naming.html#longvariable

                    There are no issues that match your filters.

                    Category
                    Status