ivmartel/dwv

View on GitHub

Showing 386 of 386 total issues

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

export function getSpatialCoordinate(dataElements) {
  const scoord = new SpatialCoordinate();

  if (typeof dataElements[TagKeys.GraphicData] !== 'undefined') {
    scoord.graphicData = dataElements[TagKeys.GraphicData].value;
Severity: Major
Found in src/dicom/dicomSpatialCoordinate.js and 1 other location - About 1 day to fix
src/dicom/dicomSpatialCoordinate3D.js on lines 59..77

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

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

export function getSpatialCoordinate3D(dataElements) {
  const scoord = new SpatialCoordinate3D();

  if (typeof dataElements[TagKeys.GraphicData] !== 'undefined') {
    scoord.graphicData = dataElements[TagKeys.GraphicData].value;
Severity: Major
Found in src/dicom/dicomSpatialCoordinate3D.js and 1 other location - About 1 day to fix
src/dicom/dicomSpatialCoordinate.js on lines 78..95

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

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

Function getElementAsString has a Cognitive Complexity of 57 (exceeds 5 allowed). Consider refactoring.
Open

function getElementAsString(tag, dicomElement, prefix) {
  // default prefix
  prefix = prefix || '';

  // get tag anme from dictionary
Severity: Minor
Found in src/dicom/dicomElementsWrapper.js - 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 decode has 213 lines of code (exceeds 25 allowed). Consider refactoring.
Open

jpeg.lossless.Decoder.prototype.decode = function (buffer, offset, length, numBytes) {
    /*jslint bitwise: true */

    var current, scanNum = 0, pred = [], i, compN, temp = [], index = [], mcuNum;

Severity: Major
Found in decoders/rii-mango/lossless.js - About 1 day to fix

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

      '0002': {
        '0000': ['UL', '1', 'FileMetaInformationGroupLength'],
        '0001': ['OB', '1', 'FileMetaInformationVersion'],
        '0002': ['UI', '1', 'MediaStorageSOPClassUID'],
        '0003': ['UI', '1', 'MediaStorageSOPInstanceUID'],
    Severity: Major
    Found in src/dicom/dictionary.js and 2 other locations - About 1 day to fix
    src/dicom/dictionary.js on lines 3054..3077
    src/dicom/dictionary.js on lines 3802..3825

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

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

      '0062': {
        '0000': ['UL', '1', 'GenericGroupLength'],
        '0001': ['CS', '1', 'SegmentationType'],
        '0002': ['SQ', '1', 'SegmentSequence'],
        '0003': ['SQ', '1', 'SegmentedPropertyCategoryCodeSequence'],
    Severity: Major
    Found in src/dicom/dictionary.js and 2 other locations - About 1 day to fix
    src/dicom/dictionary.js on lines 71..94
    src/dicom/dictionary.js on lines 3802..3825

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

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

      '2000': {
        '0000': ['UL', '1', 'GenericGroupLength'],
        '0010': ['IS', '1', 'NumberOfCopies'],
        '001E': ['SQ', '1', 'PrinterConfigurationSequence'],
        '0020': ['CS', '1', 'PrintPriority'],
    Severity: Major
    Found in src/dicom/dictionary.js and 2 other locations - About 1 day to fix
    src/dicom/dictionary.js on lines 71..94
    src/dicom/dictionary.js on lines 3054..3077

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

    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

    },{"./data-stream.js":2,"./utils.js":10}],8:[function(require,module,exports){
    /*
     * Copyright (C) 2015 Michael Martinez
     * Changes: Added support for selection values 2-7, fixed minor bugs &
     * warnings, split into multiple class files, and general clean up.
    Severity: Major
    Found in decoders/rii-mango/lossless.js and 1 other location - About 7 hrs to fix
    decoders/rii-mango/lossless.js on lines 1..57

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

    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

    (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.jpeg = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
    /*
     * Copyright (C) 2015 Michael Martinez
     * Changes: Added support for selection values 2-7, fixed minor bugs &
     * warnings, split into multiple class files, and general clean up.
    Severity: Major
    Found in decoders/rii-mango/lossless.js and 1 other location - About 7 hrs to fix
    decoders/rii-mango/lossless.js on lines 1492..1549

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

    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

    File iterator.js has 462 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import {Index} from '../math/index';
    import {Point2D} from '../math/point';
    
    // doc imports
    /* eslint-disable no-unused-vars */
    Severity: Minor
    Found in src/image/iterator.js - About 7 hrs to fix

      Function parseTilePackets has 176 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function parseTilePackets(context, data, offset, dataLength) {
          var position = 0;
          var buffer, bufferSize = 0, skipNextBit = false;
          function readBits(count) {
            while (bufferSize < count) {
      Severity: Major
      Found in decoders/pdfjs/jpx.js - About 7 hrs to fix

        Function decode has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring.
        Open

        dwvdecoder.RleDecoder.prototype.decode = function (buffer,
          bitsAllocated, isSigned, sliceSize, samplesPerPixel, planarConfiguration) {
        
          // bytes per element
          var bpe = bitsAllocated / 8;
        Severity: Minor
        Found in decoders/dwv/rle.js - About 6 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 getElementAsString has 159 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function getElementAsString(tag, dicomElement, prefix) {
          // default prefix
          prefix = prefix || '';
        
          // get tag anme from dictionary
        Severity: Major
        Found in src/dicom/dicomElementsWrapper.js - About 6 hrs to fix

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

            '006A': {
              '0000': ['UL', '1', 'GenericGroupLength'],
              '0001': ['CS', '1', 'AnnotationCoordinateType'],
              '0002': ['SQ', '1', 'AnnotationGroupSequence'],
              '0003': ['UI', '1', 'AnnotationGroupUID'],
          Severity: Major
          Found in src/dicom/dictionary.js and 1 other location - About 6 hrs to fix
          src/dicom/dictionary.js on lines 3933..3951

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

          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

            '2200': {
              '0000': ['UL', '1', 'GenericGroupLength'],
              '0001': ['CS', '1', 'LabelUsingInformationExtractedFromInstances'],
              '0002': ['UT', '1', 'LabelText'],
              '0003': ['CS', '1', 'LabelStyleSelection'],
          Severity: Major
          Found in src/dicom/dictionary.js and 1 other location - About 6 hrs to fix
          src/dicom/dictionary.js on lines 3238..3256

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

          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

          Function UtilClosure has 150 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          var Util = PDFJS.Util = (function UtilClosure() {
            function Util() {}
          
            var rgbBuf = ['rgb(', 0, ',', 0, ',', 0, ')'];
          
          
          Severity: Major
          Found in decoders/pdfjs/util.js - About 6 hrs to fix

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

            export function getDicomSpatialCoordinate3DItem(scoord) {
              // dicom item (tags are in group/element order)
              const item = {};
            
              if (typeof scoord.graphicData !== 'undefined') {
            Severity: Major
            Found in src/dicom/dicomSpatialCoordinate3D.js and 1 other location - About 6 hrs to fix
            src/dicom/dicomSpatialCoordinate.js on lines 103..122

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

            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

            export function getDicomSpatialCoordinateItem(scoord) {
              // dicom item (tags are in group/element order)
              const item = {};
            
              if (typeof scoord.pixelOriginInterpretation !== 'undefined') {
            Severity: Major
            Found in src/dicom/dicomSpatialCoordinate.js and 1 other location - About 6 hrs to fix
            src/dicom/dicomSpatialCoordinate3D.js on lines 85..105

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

            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

            Function getDecayedDose has 149 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function getDecayedDose(elements) {
              let warning = '';
              let warn;
            
              // SeriesDate (type1)
            Severity: Major
            Found in src/dicom/dicomElementsWrapper.js - About 5 hrs to fix

              Function ArithmeticDecoderClosure has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
              Open

              var ArithmeticDecoder = (function ArithmeticDecoderClosure() {
                // Table C-2
                var QeTable = [
                  {qe: 0x5601, nmps: 1, nlps: 1, switchFlag: 1},
                  {qe: 0x3401, nmps: 2, nlps: 6, switchFlag: 0},
              Severity: Minor
              Found in decoders/pdfjs/arithmetic_decoder.js - 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

              Severity
              Category
              Status
              Source
              Language