ruby-concurrency/concurrent-ruby

View on GitHub
ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java

Summary

Maintainability
A
2 hrs
Test Coverage

Method defineClass has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

            Ruby runtime,
            RubyModule namespace,
            String parentName,
            String name,
            Class javaImplementation,
Severity: Minor
Found in ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java - About 45 mins to fix

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

            @JRubyMethod(name = "ns_wait", optional = 1, visibility = Visibility.PROTECTED)
            public IRubyObject nsWait(ThreadContext context, IRubyObject[] args) {
                Ruby runtime = context.runtime;
                if (args.length > 1) {
                    throw runtime.newArgumentError(args.length, 1);
    Severity: Minor
    Found in ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.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 InstanceVariableSetVolatile has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

                    ThreadContext context,
                    IRubyObject module,
                    IRubyObject self,
                    IRubyObject name,
                    IRubyObject value) {
    Severity: Minor
    Found in ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java - About 35 mins to fix

      Method supportsFences has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          private static boolean supportsFences() {
              if (UNSAFE == null) {
                  return false;
              } else {
                  try {
      Severity: Minor
      Found in ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java - 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

      There are no issues that match your filters.

      Category
      Status