scitran/core

View on GitHub
api/placer.py

Summary

Maintainability
F
3 days
Test Coverage

File placer.py has 532 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import bson
import copy
import datetime
import dateutil
import os
Severity: Major
Found in api/placer.py - About 1 day to fix

    Function check has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

        def check(self):
            self.requireTarget()
    
            # Check that required state exists
            if self.context.get('job_id'):
    Severity: Minor
    Found in api/placer.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 process_file_field has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        def process_file_field(self, field, file_attrs):
            # Only create the hierarchy once
            if self.count == 0:
                # If not a superuser request, pass uid of user making the upload request
                targets = self.create_hierarchy(self.metadata, type_=self.match_type, user=self.context.get('uid'))
    Severity: Minor
    Found in api/placer.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 finalize has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        def finalize(self):
            job = None
            job_ticket = None
            success = True
    
    
    Severity: Minor
    Found in api/placer.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 finalize has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def finalize(self):
    
            paths = os.listdir(self.folder)
            total = len(paths)
    
    
    Severity: Minor
    Found in api/placer.py - About 1 hr to fix

      Function process_file_field has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def process_file_field(self, field, file_attrs):
              if self.metadata is not None:
                  file_mds = self.metadata.get(self.container_type, {}).get('files', [])
      
                  for file_md in file_mds:
      Severity: Minor
      Found in api/placer.py - About 55 mins 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 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def __init__(self, container_type, container, id_, metadata, timestamp, origin, context):
      Severity: Major
      Found in api/placer.py - About 50 mins to fix

        Function __init__ has 7 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(self, container_type, container, id_, metadata, timestamp, origin, context):
        Severity: Major
        Found in api/placer.py - About 50 mins to fix

          Function __init__ has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(self, container_type, container, id_, metadata, timestamp, origin, context):
          Severity: Major
          Found in api/placer.py - About 50 mins to fix

            Function __init__ has 7 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def __init__(self, container_type, container, id_, metadata, timestamp, origin, context):
            Severity: Major
            Found in api/placer.py - About 50 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                      if info:
                                          f['info'] = info
                                      if modality:
              Severity: Major
              Found in api/placer.py - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                        if modality:
                                            f['modality'] = modality
                
                
                Severity: Major
                Found in api/placer.py - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                          if measurement:
                                              f['measurements'] = [measurement]
                                          if info:
                  Severity: Major
                  Found in api/placer.py - About 45 mins to fix

                    Function process_file_field has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def process_file_field(self, field, file_attrs):
                            if self.metadata:
                                for fileinfo in self.metadata:
                                    if fileinfo['name'] == file_attrs['name']:
                                        file_attrs.update(fileinfo)
                    Severity: Minor
                    Found in api/placer.py - About 25 mins 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_file_field has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def process_file_field(self, field, file_attrs):
                            if self.metadata is not None:
                                file_mds = self.metadata.get('acquisition', {}).get('files', [])
                    
                                for file_md in file_mds:
                    Severity: Minor
                    Found in api/placer.py - About 25 mins 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

                    Identical blocks of code found in 2 locations. Consider refactoring.
                    Open

                                for file_md in file_mds:
                                    if file_md['name'] == file_attrs['name']:
                                        file_attrs.update(file_md)
                                        break
                    Severity: Major
                    Found in api/placer.py and 1 other location - About 1 hr to fix
                    api/placer.py on lines 311..314

                    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 38.

                    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

                    Identical blocks of code found in 2 locations. Consider refactoring.
                    Open

                                for file_md in file_mds:
                                    if file_md['name'] == file_attrs['name']:
                                        file_attrs.update(file_md)
                                        break
                    Severity: Major
                    Found in api/placer.py and 1 other location - About 1 hr to fix
                    api/placer.py on lines 741..744

                    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 38.

                    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

                    Identical blocks of code found in 2 locations. Consider refactoring.
                    Open

                            if 'timestamp' in insert_map:
                                insert_map['timestamp'] = dateutil.parser.parse(insert_map['timestamp'])
                    Severity: Minor
                    Found in api/placer.py and 1 other location - About 45 mins to fix
                    api/placer.py on lines 663..664

                    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 35.

                    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

                    Identical blocks of code found in 2 locations. Consider refactoring.
                    Open

                            if 'timestamp' in insert_map:
                                insert_map['timestamp'] = dateutil.parser.parse(insert_map['timestamp'])
                    Severity: Minor
                    Found in api/placer.py and 1 other location - About 45 mins to fix
                    api/placer.py on lines 625..626

                    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 35.

                    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 2 locations. Consider refactoring.
                    Open

                            session = config.db.sessions.find_one_and_update(
                                query, {
                                    '$set': updates,
                                    '$setOnInsert': insert_map
                                },
                    Severity: Minor
                    Found in api/placer.py and 1 other location - About 45 mins to fix
                    api/placer.py on lines 666..672

                    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 35.

                    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 2 locations. Consider refactoring.
                    Open

                            acquisition = config.db.acquisitions.find_one_and_update(
                                query, {
                                    '$set': updates,
                                    '$setOnInsert': insert_map
                                },
                    Severity: Minor
                    Found in api/placer.py and 1 other location - About 45 mins to fix
                    api/placer.py on lines 628..634

                    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 35.

                    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

                    There are no issues that match your filters.

                    Category
                    Status