eventmachine/eventmachine

View on GitHub

Showing 121 of 147 total issues

Method eventable_write has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def eventable_write
      # coalesce the outbound array here, perhaps
      @last_activity = Reactor.instance.current_loop_time
      while data = @outbound_q.shift do
        begin
Severity: Minor
Found in lib/em/pure_ruby.rb - 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

Method receive_header_line has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

        def receive_header_line ln
          if ln.length == 0
            if @header_lines.length > 0
              process_header
            else
Severity: Minor
Found in lib/em/protocols/httpclient2.rb - 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

Method run has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def run
      raise Error.new( "already running" ) if @running
      @running = true

      begin
Severity: Minor
Found in lib/em/pure_ruby.rb - 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

Method writeOutboundData has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public boolean writeOutboundData() throws IOException {
        ByteBuffer[] bufs = new ByteBuffer[64];
        int i;
        long written, toWrite;
        while (!outboundQ.isEmpty()) {
Severity: Minor
Found in java/src/com/rubyeventmachine/EventableSocketChannel.java - About 1 hr to fix

    Method process_rcpt_to has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def process_rcpt_to rcpt
            unless @state.include?(:mail_from)
              send_data "503 MAIL is required before RCPT\r\n"
            else
              succeeded = proc {
    Severity: Minor
    Found in lib/em/protocols/smtpserver.rb - About 1 hr to fix

      Method consume_line has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              def consume_line line
                if @state == :precommand
                  unless line =~ /\A\s*\Z/
                    @command = line
                    @state = :headers
      Severity: Minor
      Found in lib/em/protocols/stomp.rb - About 1 hr to fix

        Method nameservers has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def self.nameservers
                return @nameservers if @nameservers
        
                if windows?
                  _, ns = Win32::Resolv.get_resolv_info
        Severity: Minor
        Found in lib/em/resolver.rb - 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

        Method invoke_rcpt_to has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def invoke_rcpt_to
                @rcpt_responses ||= []
                l = @rcpt_responses.length
                to = @args[:to].is_a?(Array) ? @args[:to] : [@args[:to].to_s]
                if l < to.length
        Severity: Minor
        Found in lib/em/protocols/smtpclient.rb - 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

        Method dispatch_conn_message has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def dispatch_conn_message msg
                case msg
                when AuthentificationClearTextPassword
                  raise ArgumentError, "no password specified" if @password.nil?
                  send_data PasswordMessage.new(@password).dump
        Severity: Minor
        Found in lib/em/protocols/postgres3.rb - 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

        Method process_data has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def process_data
                unless @state.include?(:rcpt)
                  send_data "503 Operation sequence error\r\n"
                else
                  succeeded = proc {
        Severity: Minor
        Found in lib/em/protocols/smtpserver.rb - 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

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

          def handle_direct_message(input)
            username, message = parse_direct_message(input)
        
            if connection = @@connected_clients.find { |c| c.username == username }
              puts "[dm] @#{@username} => @#{username}"
        examples/guides/getting_started/03_simple_chat_server.rb on lines 86..93

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

        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

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

          def handle_direct_message(input)
            username, message = parse_direct_message(input)
        
            if connection = @@connected_clients.find { |c| c.username == username }
              puts "[dm] @#{@username} => @#{username}"
        Severity: Minor
        Found in examples/guides/getting_started/03_simple_chat_server.rb and 1 other location - About 55 mins to fix
        examples/guides/getting_started/08_simple_chat_server_step_five.rb on lines 86..93

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

        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

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

          if CONFIG['CC'] == 'cc' && (
             `cc -flags 2>&1` =~ /Sun/ || # detect SUNWspro compiler
             `cc -V 2>&1` =~ /Sun/        # detect Solaris Studio compiler
            )
            # SUN CHAIN
        Severity: Minor
        Found in ext/extconf.rb and 1 other location - About 45 mins to fix
        ext/fastfilereader/extconf.rb on lines 65..80

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

        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

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

          if CONFIG['CC'] == 'cc' && (
             `cc -flags 2>&1` =~ /Sun/ || # detect SUNWspro compiler
             `cc -V 2>&1` =~ /Sun/        # detect Solaris Studio compiler
            )
            # SUN CHAIN
        Severity: Minor
        Found in ext/fastfilereader/extconf.rb and 1 other location - About 45 mins to fix
        ext/extconf.rb on lines 185..200

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

        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

        Method dispatchInboundData has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public ByteBuffer dispatchInboundData (ByteBuffer bb) throws SSLException {
                if (sslEngine != null) {
                    if (true) throw new RuntimeException ("TLS currently unimplemented");
                    System.setProperty("javax.net.debug", "all");
                    ByteBuffer w = ByteBuffer.allocate(32*1024); // TODO, WRONG, preallocate this buffer.
        Severity: Minor
        Found in java/src/com/rubyeventmachine/EventableSocketChannel.java - 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

        Method start_server has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          def self.start_server server, port=nil, handler=nil, *args, &block
            begin
              port = Integer(port)
            rescue ArgumentError, TypeError
              # there was no port, so server must be a unix domain socket
        Severity: Minor
        Found in lib/eventmachine.rb - 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

        Method close has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public void close() {
                if (channelKey != null) {
                    channelKey.cancel();
                    channelKey = null;
                }
        Severity: Minor
        Found in java/src/com/rubyeventmachine/EventableSocketChannel.java - 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

        Method scheduleOutboundData has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public void scheduleOutboundData (ByteBuffer bb) {
                if (!bCloseScheduled && bb.remaining() > 0) {
                    if (sslEngine != null) {
                        try {
                            ByteBuffer b = ByteBuffer.allocate(32*1024); // TODO, preallocate this buffer.
        Severity: Minor
        Found in java/src/com/rubyeventmachine/EventableSocketChannel.java - 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

        Method invoke_auth has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

              def invoke_auth
                if @args[:auth]
                  if @args[:auth][:type] == :plain
                    psw = @args[:auth][:password]
                    if psw.respond_to?(:call)
        Severity: Minor
        Found in lib/em/protocols/smtpclient.rb - 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

        Method isReadable has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            void isReadable (SelectionKey k) {
                EventableChannel ec = (EventableChannel) k.attachment();
                long b = ec.getBinding();
        
                if (ec.isWatchOnly()) {
        Severity: Minor
        Found in java/src/com/rubyeventmachine/EmReactor.java - 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

        Severity
        Category
        Status
        Source
        Language