ivmartel/dwv

View on GitHub

Showing 218 of 386 total issues

Function getData has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    getData: function getData(width, height, forceRGBoutput) {
      if (this.numComponents > 4) {
        throw 'Unsupported color mode';
      }
      // type of data: Uint8Array(width * height * numComponents)
Severity: Minor
Found in decoders/pdfjs/jpg.js - About 1 hr to fix

    Function range3d has 9 arguments (exceeds 4 allowed). Consider refactoring.
    Open

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

      Function decodeScan has 9 arguments (exceeds 4 allowed). Consider refactoring.
      Open

        function decodeScan(data, offset, frame, components, resetInterval,
                            spectralStart, spectralEnd, successivePrev, successive) {
      Severity: Major
      Found in decoders/pdfjs/jpg.js - About 1 hr to fix

        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

            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

                    Function create has a Cognitive Complexity of 9 (exceeds 5 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 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 rangeRegions has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                    Open

                    export function rangeRegions(
                      dataAccessor, start, end, increment, regions) {
                      let nextIndex = start;
                      let regionCount = 0;
                      let regionElementCount = 0;
                    Severity: Minor
                    Found in src/image/iterator.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 toStringId has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                    Open

                    export function toStringId(arr, dims) {
                      // use all dims if not as input
                      if (typeof dims === 'undefined') {
                        dims = [];
                        for (let i = 0; i < arr.length; ++i) {
                    Severity: Minor
                    Found in src/utils/array.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 buildMultipart has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                    Open

                    export function buildMultipart(parts, boundary) {
                      const lineBreak = '\r\n';
                      // build headers and calculate size
                      let partsSize = 0;
                      const headers = [];
                    Severity: Minor
                    Found in src/utils/array.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