ivmartel/dwv

View on GitHub

Showing 386 of 386 total issues

Function create has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  create(dataElements, image) {
    // view
    const view = new View(image);

    // default color map
Severity: Minor
Found in src/image/viewFactory.js - About 1 hr to fix

    Function Decoder has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    jpeg.lossless.Decoder = jpeg.lossless.Decoder || function (buffer, numBytes) {
        this.buffer = buffer;
        this.frame = new jpeg.lossless.FrameHeader();
        this.huffTable = new jpeg.lossless.HuffmanTable();
        this.quantTable = new jpeg.lossless.QuantizationTable();
    Severity: Minor
    Found in decoders/rii-mango/lossless.js - About 1 hr to fix

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

        if (event.data.meta.bitsAllocated === 8) {
          if (event.data.meta.isSigned) {
            res = new Int8Array(decoded.buffer);
          } else {
            res = new Uint8Array(decoded.buffer);
      Severity: Major
      Found in decoders/rii-mango/decode-jpegloss.js and 1 other location - About 1 hr to fix
      decoders/rii-mango/decode-jpegloss.js on lines 25..31

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

      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

          if (abs.getX() > threshold &&
            abs.getX() > abs.getY() &&
            abs.getX() > abs.getZ()) {
            orientation += orientationX;
            abs = new Vector3D(0, abs.getY(), abs.getZ());
      Severity: Major
      Found in src/math/orientation.js and 2 other locations - About 1 hr to fix
      src/math/orientation.js on lines 131..143
      src/math/orientation.js on lines 136..143

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

      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

                    if (context.mainHeader) {
                      context.COD = cod;
                    } else {
                      context.currentTile.COD = cod;
                      context.currentTile.COC = [];
      Severity: Major
      Found in decoders/pdfjs/jpx.js and 1 other location - About 1 hr to fix
      decoders/pdfjs/jpx.js on lines 228..233

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

      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

          } else if (abs.getY() > threshold &&
            abs.getY() > abs.getX() &&
            abs.getY() > abs.getZ()) {
            orientation += orientationY;
            abs = new Vector3D(abs.getX(), 0, abs.getZ());
      Severity: Major
      Found in src/math/orientation.js and 2 other locations - About 1 hr to fix
      src/math/orientation.js on lines 126..143
      src/math/orientation.js on lines 136..143

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

      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

                    if (context.mainHeader) {
                      context.QCD = qcd;
                    } else {
                      context.currentTile.QCD = qcd;
                      context.currentTile.QCC = [];
      Severity: Major
      Found in decoders/pdfjs/jpx.js and 1 other location - About 1 hr to fix
      decoders/pdfjs/jpx.js on lines 342..347

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

      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

          } else if (abs.getZ() > threshold &&
            abs.getZ() > abs.getX() &&
            abs.getZ() > abs.getY()) {
            orientation += orientationZ;
            abs = new Vector3D(abs.getX(), abs.getY(), 0);
      Severity: Major
      Found in src/math/orientation.js and 2 other locations - About 1 hr to fix
      src/math/orientation.js on lines 126..143
      src/math/orientation.js on lines 131..143

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

      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

        } else if (event.data.meta.bitsAllocated === 16) {
          if (event.data.meta.isSigned) {
            res = new Int16Array(decoded.buffer);
          } else {
            res = new Uint16Array(decoded.buffer);
      Severity: Major
      Found in decoders/rii-mango/decode-jpegloss.js and 1 other location - About 1 hr to fix
      decoders/rii-mango/decode-jpegloss.js on lines 19..31

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

      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 stringToPDFString has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

      function stringToPDFString(str) {
        var i, n = str.length, strBuf = [];
        if (str[0] === '\xFE' && str[1] === '\xFF') {
          // UTF16BE BOM
          for (i = 2; i < n; i += 2) {
      Severity: Minor
      Found in decoders/pdfjs/util.js - About 1 hr to fix

      Cognitive Complexity

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

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

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

      Further reading

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

      export function isEqualSegment(seg1, seg2) {
        // basics
        if (typeof seg1 === 'undefined' ||
          typeof seg2 === 'undefined' ||
          seg1 === null ||
      Severity: Minor
      Found in src/dicom/dicomSegment.js - About 1 hr to fix

      Cognitive Complexity

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

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

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

      Further reading

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

      PDFJS.createObjectURL = (function createObjectURLClosure() {
        // Blob/createObjectURL is not available, falling back to data schema.
        var digits =
          'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
      
      
      Severity: Minor
      Found in decoders/pdfjs/util.js - About 1 hr to fix

      Cognitive Complexity

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

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

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

      Further reading

      Function replaceFlags has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export function replaceFlags(inputStr, values) {
        let res = '';
        // check input string
        if (inputStr === null || typeof inputStr === 'undefined') {
          return res;
      Severity: Minor
      Found in src/utils/string.js - About 1 hr to fix

        Function range has 8 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        export function range(dataAccessor, start, maxIter, increment,
          blockMaxIter, blockIncrement, reverse1, reverse2) {
        Severity: Major
        Found in src/image/iterator.js - About 1 hr to fix

          Function copyCoefficients has 8 arguments (exceeds 4 allowed). Consider refactoring.
          Open

            function copyCoefficients(coefficients, levelWidth, levelHeight, subband,
                                      delta, mb, reversible, segmentationSymbolUsed) {
          Severity: Major
          Found in decoders/pdfjs/jpx.js - About 1 hr to fix

            Function getRange has 8 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                dataAccessor, start, maxIter, increment,
                blockMaxIter, blockIncrement, reverse1, reverse2) {
            Severity: Major
            Found in src/image/iterator.js - About 1 hr to fix

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

              export function getPixelUnit(elements) {
                let unit;
                // 1. RescaleType
                // 2. Units (for PET)
                const keys = ['00281054', '00541001'];
              Severity: Minor
              Found in src/dicom/dicomElementsWrapper.js - 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 isSimilarSegment has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

              export function isSimilarSegment(seg1, seg2) {
                // basics
                if (typeof seg1 === 'undefined' ||
                  typeof seg2 === 'undefined' ||
                  seg1 === null ||
              Severity: Minor
              Found in src/dicom/dicomSegment.js - 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 getCode has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

              export function getCode(dataElements) {
                // meaning -> CodeMeaning (type1)
                const code = new DicomCode(dataElements[TagKeys.CodeMeaning].value[0]);
                // value -> CodeValue (type1C)
                // longValue -> LongCodeValue (type1C)
              Severity: Minor
              Found in src/dicom/dicomCode.js - 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 getSegment has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

              export function getSegment(dataElements) {
                // number -> SegmentNumber (type1)
                // label -> SegmentLabel (type1)
                // algorithmType -> SegmentAlgorithmType (type1)
                const segment = new MaskSegment(
              Severity: Minor
              Found in src/dicom/dicomSegment.js - 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

              Severity
              Category
              Status
              Source
              Language