EventGhost/EventGhost

View on GitHub

Showing 1,842 of 2,440 total issues

Function RemoveSongFromPlaylist has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

    def RemoveSongFromPlaylist(self, plString, skip, now_pl):
        if self.isRunning():
            Player = self.MM.Player
            idSong=Player.CurrentSong.ID
            IDPlaylist=self.MM.PlaylistByTitle(plString).ID
Severity: Minor
Found in plugins/MediaMonkey/__init__.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 HandleReceive has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

    def HandleReceive(self, serial):
        byte = ord(serial.Read(1))
        if byte == 6:
            if self.lastActionEvent:
                self.lastActionEvent.set()
Severity: Minor
Found in plugins/AIRT/__init__.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 __call__ has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

    def __call__(
        self,
        command = '',
        waitForCompletion = True,
        triggerEvent = False,
Severity: Minor
Found in plugins/System/Command.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 __call__ has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

    def __call__(
        self,
        pathname='',
        arguments='',
        winState=0,
Severity: Minor
Found in plugins/System/Execute.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 run has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

    def run(self):
        atexit.register(self.Stop)

        def start_sock():
            try:
Severity: Minor
Found in eg/LoopbackSocket.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 Configure has 97 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def Configure(self, args = [
        "00:03:00",
        "SchedulGhost",
        None,
        "",
Severity: Major
Found in plugins/SchedulGhost/__init__.py - About 3 hrs to fix

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

        def __init__(self):
            self.AddEvents(*EVENT_LIST)
    
            group = self.AddGroup("DVBViewer program actions", "DVBViewer program management")
            group.AddAction(Start)
    Severity: Major
    Found in plugins/DVBViewer/__init__.py - About 3 hrs to fix

      File __init__.py has 328 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      # -*- coding: utf-8 -*-
      #
      # Plugins/Speech/__init__.py
      #
      # Copyright (C) 2006 MonsterMagnet
      Severity: Minor
      Found in plugins/Speech/__init__.py - About 3 hrs to fix

        Scheduler has 31 functions (exceeds 20 allowed). Consider refactoring.
        Open

        class Scheduler(eg.PluginClass):
            text = Text
        
            def __init__(self):
                self.AddAction(SchedulerAction)
        Severity: Minor
        Found in plugins/Scheduler/__init__.py - About 3 hrs to fix

          Cyclomatic complexity is too high in method __call__. (33)
          Open

          
              def __call__(
                  self,
                  rangeName,
                  iTimeAhead,
          Severity: Minor
          Found in plugins/SunTracker/__init__.py by radon

          Cyclomatic Complexity

          Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

          Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

          Construct Effect on CC Reasoning
          if +1 An if statement is a single decision.
          elif +1 The elif statement adds another decision.
          else +0 The else statement does not cause a new decision. The decision is at the if.
          for +1 There is a decision at the start of the loop.
          while +1 There is a decision at the while statement.
          except +1 Each except branch adds a new conditional path of execution.
          finally +0 The finally block is unconditionally executed.
          with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
          assert +1 The assert statement internally roughly equals a conditional statement.
          Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
          Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

          Source: http://radon.readthedocs.org/en/latest/intro.html

          Function Configure has 95 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              def Configure(
                  self,
                  choices="",
                  fore = (75, 75, 75),
                  back = (180, 180, 180),
          Severity: Major
          Found in plugins/OSM/__init__.py - About 3 hrs to fix

            Function Configure has 95 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                def Configure(
                    self,
                    fore = (75, 75, 75),
                    back = (180, 180, 180),
                    faceFont = "Courier New",
            Severity: Major
            Found in plugins/MediaPlayerClassic/__init__.py - About 3 hrs to fix

              Function Multitapper has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def Multitapper(self,config,keys):
                      self.timer.cancel()
                      try:
                          indx = [n[0] for n in self.configs].index(config)
                          item = self.configs[indx]
              Severity: Minor
              Found in plugins/Multitap/__init__.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 send has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def send(self, method, params = ""):
                      request = urllib2.Request('http://'+self.ip+':'+self.port+'/xbmcCmds/xbmcHttp?command='+method+'('+urllib2.quote(eg.ParseString(params), ':\\')+')')
                      request.add_header("Authorization", "Basic %s" % self.base64string)
                      try:
                          responce = urllib2.urlopen(request).readlines()
              Severity: Minor
              Found in plugins/XBMCRepeat/__init__.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 Configure has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def Configure(self, action = 0, value = 0):
                      """ this panel uses to controls
                          one for setting and one for changing the value
                          the right one is chosen depending on the value of the radiobuttons
                      """
              Severity: Minor
              Found in plugins/ffdshow/__init__.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 Configure has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def Configure(self, menuData=[]):
                      menuData = self.Compile(menuData)
                      panel = eg.ConfigPanel(resizable=True)
                      text = self.text
              
              
              Severity: Minor
              Found in plugins/SysTrayMenu/__init__.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 __init__ has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def __init__(self, text, plugin):
                      self.plugin = plugin
                      wx.Frame.__init__(
                          self,
                          None,
              Severity: Minor
              Found in plugins/SchedulGhost/__init__.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 StopPeriodicTasks has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def StopPeriodicTasks(self, kind, taskName = ""):
                      heap = list(eg.scheduler.__dict__['heap'])
                      for t in heap:
                          if hasattr(t, "__len__") and hasattr(t[2], "__len__") and len(t[2]) > 2 and hasattr(t[2][-1], "__self__"):
                              try:
              Severity: Minor
              Found in plugins/Webserver/__init__.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 Decode has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def Decode(self, data, length=-1):
                      if length < 3:
                          return
              
                      #print dataLen, repr(data)
              Severity: Minor
              Found in eg/Classes/IrDecoder/__init__.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 OnCmdFindNext has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
              Open

                  def OnCmdFindNext(self, dummyEvent=None, currentId=None):
                      tree = self.tree
                      if currentId is None:
                          currentId = tree.GetSelection()
                      treeId = currentId
              Severity: Minor
              Found in eg/Classes/LanguageEditor.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

              Severity
              Category
              Status
              Source
              Language