nfroidure/midifile

View on GitHub

Showing 17 of 109 total issues

Function getEvents has a Cognitive Complexity of 84 (exceeds 5 allowed). Consider refactoring.
Open

MIDIFile.prototype.getEvents = function(type, subtype) {
  var events;
  var event;
  var playTime = 0;
  var filteredEvents = [];
Severity: Minor
Found in src/MIDIFile.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 getEvents has 90 lines of code (exceeds 25 allowed). Consider refactoring.
Open

MIDIFile.prototype.getEvents = function(type, subtype) {
  var events;
  var event;
  var playTime = 0;
  var filteredEvents = [];
Severity: Major
Found in src/MIDIFile.js - About 3 hrs to fix

    Function MIDIFileTrack has 80 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function MIDIFileTrack(buffer, start) {
      let a;
      let trackLength;
    
      // no buffer, creating him
    Severity: Major
    Found in src/MIDIFileTrack.js - About 3 hrs to fix

      File MIDIFile.js has 282 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      'use strict';
      
      // MIDIFile : Read (and soon edit) a MIDI file in a given ArrayBuffer
      
      // Dependencies
      Severity: Minor
      Found in src/MIDIFile.js - About 2 hrs to fix

        Function getLyrics has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
        Open

        MIDIFile.prototype.getLyrics = function() {
          var events = this.getEvents(MIDIEvents.EVENT_META);
          var texts = [];
          var lyrics = [];
          var event;
        Severity: Minor
        Found in src/MIDIFile.js - 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 getLyrics has 44 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        MIDIFile.prototype.getLyrics = function() {
          var events = this.getEvents(MIDIEvents.EVENT_META);
          var texts = [];
          var lyrics = [];
          var event;
        Severity: Minor
        Found in src/MIDIFile.js - About 1 hr to fix

          Function MIDIFileTrack has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
          Open

          function MIDIFileTrack(buffer, start) {
            let a;
            let trackLength;
          
            // no buffer, creating him
          Severity: Minor
          Found in src/MIDIFileTrack.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 MIDIFile has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

          function MIDIFile(buffer, strictMode) {
            var track;
            var curIndex;
            var i;
            var j;
          Severity: Minor
          Found in src/MIDIFile.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 MIDIFileHeader has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function MIDIFileHeader(buffer) {
            let a;
            // No buffer creating him
            if (!buffer) {
              a = new Uint8Array(MIDIFileHeader.HEADER_LENGTH);
          Severity: Minor
          Found in src/MIDIFileHeader.js - About 1 hr to fix

            Function getContent has 33 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            MIDIFile.prototype.getContent = function() {
              var bufferLength;
              var destination;
              var origin;
              var i;
            Severity: Minor
            Found in src/MIDIFile.js - About 1 hr to fix

              Function MIDIFile has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function MIDIFile(buffer, strictMode) {
                var track;
                var curIndex;
                var i;
                var j;
              Severity: Minor
              Found in src/MIDIFile.js - About 1 hr to fix

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

                MIDIFileTrack.prototype.setTrackContent = function(dataView) {
                  let origin;
                  let destination;
                  let i;
                  let j;
                Severity: Minor
                Found in src/MIDIFileTrack.js - About 1 hr to fix

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

                  function MIDIFileHeader(buffer) {
                    let a;
                    // No buffer creating him
                    if (!buffer) {
                      a = new Uint8Array(MIDIFileHeader.HEADER_LENGTH);
                  Severity: Minor
                  Found in src/MIDIFileHeader.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

                  Avoid deeply nested control flow statements.
                  Open

                            if (event.subtype === MIDIEvents.EVENT_META_SET_TEMPO) {
                              tickResolution = this.header.getTickResolution(event.tempo);
                            }
                  Severity: Major
                  Found in src/MIDIFile.js - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                              if (event.subtype === MIDIEvents.EVENT_META_SET_TEMPO) {
                                tickResolution = this.header.getTickResolution(event.tempo);
                              }
                    Severity: Major
                    Found in src/MIDIFile.js - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                                if (
                                  -1 === smallestDelta ||
                                  trackParsers[i].curEvent.delta <
                                    trackParsers[smallestDelta].curEvent.delta
                                ) {
                      Severity: Major
                      Found in src/MIDIFile.js - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                  if (i !== smallestDelta && trackParsers[i].curEvent) {
                                    trackParsers[i].curEvent.delta -=
                                      trackParsers[smallestDelta].curEvent.delta;
                                  }
                        Severity: Major
                        Found in src/MIDIFile.js - About 45 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language