zxing-js/library

View on GitHub
src/core/qrcode/encoder/Encoder.ts

Summary

Maintainability
F
3 days
Test Coverage
A
93%

File Encoder.ts has 405 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*
 * Copyright 2008 ZXing authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
Severity: Minor
Found in src/core/qrcode/encoder/Encoder.ts - About 5 hrs to fix

    Encoder has 25 functions (exceeds 20 allowed). Consider refactoring.
    Open

    export default class Encoder {
    
        // The original table is defined in the table 5 of JISX0510:2004 (p.19).
        private static ALPHANUMERIC_TABLE = Int32Array.from([
            -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  // 0x00-0x0f
    Severity: Minor
    Found in src/core/qrcode/encoder/Encoder.ts - About 2 hrs to fix

      Function interleaveWithECBytes has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          public static interleaveWithECBytes(bits: BitArray,
              numTotalBytes: number /*int*/,
              numDataBytes: number /*int*/,
              numRSBlocks: number /*int*/): BitArray /*throws WriterException*/ {
      
      
      Severity: Minor
      Found in src/core/qrcode/encoder/Encoder.ts - 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 encode has 50 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static encode(content: string,
              ecLevel: ErrorCorrectionLevel,
              hints: Map<EncodeHintType, any> = null): QRCode /*throws WriterException*/ {
      
              // Determine what character encoding has been specified by the caller, if any
      Severity: Minor
      Found in src/core/qrcode/encoder/Encoder.ts - About 2 hrs to fix

        Function interleaveWithECBytes has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static interleaveWithECBytes(bits: BitArray,
                numTotalBytes: number /*int*/,
                numDataBytes: number /*int*/,
                numRSBlocks: number /*int*/): BitArray /*throws WriterException*/ {
        
        
        Severity: Minor
        Found in src/core/qrcode/encoder/Encoder.ts - About 1 hr to fix

          Function encode has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

              public static encode(content: string,
                  ecLevel: ErrorCorrectionLevel,
                  hints: Map<EncodeHintType, any> = null): QRCode /*throws WriterException*/ {
          
                  // Determine what character encoding has been specified by the caller, if any
          Severity: Minor
          Found in src/core/qrcode/encoder/Encoder.ts - 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 getNumDataBytesAndNumECBytesForBlockID has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public static getNumDataBytesAndNumECBytesForBlockID(numTotalBytes: number /*int*/,
                  numDataBytes: number /*int*/,
                  numRSBlocks: number /*int*/,
                  blockID: number /*int*/,
                  numDataBytesInBlock: Int32Array,
          Severity: Minor
          Found in src/core/qrcode/encoder/Encoder.ts - About 1 hr to fix

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

                public static terminateBits(numDataBytes: number /*int*/, bits: BitArray): void /*throws WriterException*/ {
                    const capacity = numDataBytes * 8;
                    if (bits.getSize() > capacity) {
                        throw new WriterException('data bits cannot fit in the QR Code' + bits.getSize() + ' > ' +
                            capacity);
            Severity: Minor
            Found in src/core/qrcode/encoder/Encoder.ts - 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 appendAlphanumericBytes has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public static appendAlphanumericBytes(content: string, bits: BitArray): void /*throws WriterException*/ {
                    const length = content.length;
                    let i = 0;
                    while (i < length) {
                        const code1 = Encoder.getAlphanumericCode(content.charCodeAt(i));
            Severity: Minor
            Found in src/core/qrcode/encoder/Encoder.ts - 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 isOnlyDoubleByteKanji has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                private static isOnlyDoubleByteKanji(content: string): boolean {
                    let bytes: Uint8Array;
                    try {
                        bytes = StringEncoding.encode(content, CharacterSetECI.SJIS); // content.getBytes("Shift_JIS"))
                    } catch (ignored/*: UnsupportedEncodingException*/) {
            Severity: Minor
            Found in src/core/qrcode/encoder/Encoder.ts - About 45 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 chooseMode has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                public static chooseMode(content: string, encoding: string = null): Mode {
                    if (CharacterSetECI.SJIS.getName() === encoding && this.isOnlyDoubleByteKanji(content)) {
                        // Choose Kanji mode if all input are double-byte characters
                        return Mode.KANJI;
                    }
            Severity: Minor
            Found in src/core/qrcode/encoder/Encoder.ts - About 45 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 appendKanjiBytes has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public static appendKanjiBytes(content: string, bits: BitArray): void /*throws */ {
            
                    let bytes: Uint8Array;
            
                    try {
            Severity: Minor
            Found in src/core/qrcode/encoder/Encoder.ts - About 35 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

            Avoid too many return statements within this function.
            Open

                    return Mode.BYTE;
            Severity: Major
            Found in src/core/qrcode/encoder/Encoder.ts - About 30 mins to fix

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

                  public static getNumDataBytesAndNumECBytesForBlockID(numTotalBytes: number /*int*/,
                      numDataBytes: number /*int*/,
                      numRSBlocks: number /*int*/,
                      blockID: number /*int*/,
                      numDataBytesInBlock: Int32Array,
              Severity: Minor
              Found in src/core/qrcode/encoder/Encoder.ts - 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

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

                      for (let i = 0; i < maxNumEcBytes; ++i) {
                          for (const block of blocks) {
                              const ecBytes = block.getErrorCorrectionBytes();
                              if (i < ecBytes.length) {
                                  result.appendBits(ecBytes[i], 8);
              Severity: Major
              Found in src/core/qrcode/encoder/Encoder.ts and 1 other location - About 1 hr to fix
              src/core/qrcode/encoder/Encoder.ts on lines 441..448

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

              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

                      for (let i = 0; i < maxNumDataBytes; ++i) {
                          for (const block of blocks) {
                              const dataBytes = block.getDataBytes();
                              if (i < dataBytes.length) {
                                  result.appendBits(dataBytes[i], 8);
              Severity: Major
              Found in src/core/qrcode/encoder/Encoder.ts and 1 other location - About 1 hr to fix
              src/core/qrcode/encoder/Encoder.ts on lines 450..457

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

              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