ruby-concurrency/thread_safe

View on GitHub

Showing 181 of 329 total issues

Method internalPut has 82 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private final Object internalPut(Object k, Object v) {
        int h = spread(k.hashCode());
        int count = 0;
        for (AtomicReferenceArray<Node> tab = table;;) {
            int i; Node f; int fh; Object fk;

    Method retryUpdate has 73 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        final void retryUpdate(long x, HashCode hc, boolean wasUncontended) {
            int h = hc.code;
            boolean collide = false;                // True if last slot nonempty
            for (;;) {
                Cell[] as; Cell a; int n; long v;
    Severity: Major
    Found in ext/org/jruby/ext/thread_safe/jsr166e/Striped64.java - About 2 hrs to fix

      Method retryUpdate has 73 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          final void retryUpdate(long x, HashCode hc, boolean wasUncontended) {
              int h = hc.code;
              boolean collide = false;                // True if last slot nonempty
              for (;;) {
                  Cell[] as; Cell a; int n; long v;
      Severity: Major
      Found in ext/org/jruby/ext/thread_safe/jsr166e/nounsafe/Striped64.java - About 2 hrs to fix

        Method tryPresize has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            private final void tryPresize(int size) {
                int c = (size >= (MAXIMUM_CAPACITY >>> 1)) ? MAXIMUM_CAPACITY :
                        tableSizeFor(size + (size >>> 1) + 1);
                int sc;
                while ((sc = sizeCtl) >= 0) {

        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 tryPresize has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            private final void tryPresize(int size) {
                int c = (size >= (MAXIMUM_CAPACITY >>> 1)) ? MAXIMUM_CAPACITY :
                        tableSizeFor(size + (size >>> 1) + 1);
                int sc;
                while ((sc = sizeCtl) >= 0) {
        Severity: Minor
        Found in ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java - 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

        Method internal_compute has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            def internal_compute(key, &block)
              hash          = key_hash(key)
              current_table = table || initialize_table
              while true
                if !(node = current_table.volatile_get(i = current_table.hash_to_index(hash)))
        Severity: Minor
        Found in lib/thread_safe/atomic_reference_cache_backend.rb - 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

        Method readObject has 71 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            @SuppressWarnings("unchecked") private void readObject(java.io.ObjectInputStream s)
                    throws java.io.IOException, ClassNotFoundException {
                s.defaultReadObject();
                this.segments = null; // unneeded
                // initialize transient final field

          Method readObject has 71 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              @SuppressWarnings("unchecked") private void readObject(java.io.ObjectInputStream s)
                      throws java.io.IOException, ClassNotFoundException {
                  s.defaultReadObject();
                  this.segments = null; // unneeded
                  // initialize transient final field
          Severity: Major
          Found in ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java - About 2 hrs to fix

            Method attempt_compute has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
            Open

                def attempt_compute(key, hash, current_table, i, node, node_hash)
                  added = false
                  current_table.try_lock_via_hash(i, node, node_hash) do
                    predecessor_node = nil
                    while true
            Severity: Minor
            Found in lib/thread_safe/atomic_reference_cache_backend.rb - 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

            Method equals has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
            Open

                public boolean equals(Object o) {
                    if (o != this) {
                        if (!(o instanceof Map))
                            return false;
                        Map<?,?> m = (Map<?,?>) o;
            Severity: Minor
            Found in ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java - 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

            Method internalGet has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
            Open

                private final Object internalGet(Object k) {
                    int h = spread(k.hashCode());
                    retry: for (AtomicReferenceArray<Node> tab = table; tab != null;) {
                        Node e, p; Object ek, ev; int eh;      // locals to read fields once
                        for (e = tabAt(tab, (tab.length() - 1) & h); e != null; e = e.next) {

            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 equals has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
            Open

                public boolean equals(Object o) {
                    if (o != this) {
                        if (!(o instanceof Map))
                            return false;
                        Map<?,?> m = (Map<?,?>) o;

            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 internalGet has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
            Open

                private final Object internalGet(Object k) {
                    int h = spread(k.hashCode());
                    retry: for (Node[] tab = table; tab != null;) {
                        Node e, p; Object ek, ev; int eh;      // locals to read fields once
                        for (e = tabAt(tab, (tab.length - 1) & h); e != null; e = e.next) {
            Severity: Minor
            Found in ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java - 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

            Method try_await_lock has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
            Open

                  def try_await_lock(table, i)
                    if table && i >= 0 && i < table.size # bounds check, TODO: why are we bounds checking?
                      spins = SPIN_LOCK_ATTEMPTS
                      randomizer = base_randomizer = Util::XorShiftRandom.get
                      while equal?(table.volatile_get(i)) && self.class.locked_hash?(my_hash = hash)
            Severity: Minor
            Found in lib/thread_safe/atomic_reference_cache_backend.rb - 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

            Class NonConcurrentCacheBackend has 22 methods (exceeds 20 allowed). Consider refactoring.
            Open

              class NonConcurrentCacheBackend
                # WARNING: all public methods of the class must operate on the @backend
                # directly without calling each other. This is important because of the
                # SynchronizedCacheBackend which uses a non-reentrant mutex for perfomance
                # reasons.
            Severity: Minor
            Found in lib/thread_safe/non_concurrent_cache_backend.rb - About 2 hrs to fix

              Method internalClear has 58 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private final void internalClear() {
                      long delta = 0L; // negative number of deletions
                      int i = 0;
                      Node[] tab = table;
                      while (tab != null && i < tab.length) {
              Severity: Major
              Found in ext/org/jruby/ext/thread_safe/jsr166e/ConcurrentHashMapV8.java - About 2 hrs to fix

                Method internalClear has 58 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    private final void internalClear() {
                        long delta = 0L; // negative number of deletions
                        int i = 0;
                        AtomicReferenceArray<Node> tab = table;
                        while (tab != null && i < tab.length()) {

                  Method each_pair has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def each_pair
                        return self unless current_table = table
                        current_table_size = base_size = current_table.size
                        i = base_index = 0
                        while base_index < base_size
                  Severity: Minor
                  Found in lib/thread_safe/atomic_reference_cache_backend.rb - 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

                  Method attempt_get_and_set has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def attempt_get_and_set(key, value, hash, current_table, i, node, node_hash)
                        node_nesting = nil
                        current_table.try_lock_via_hash(i, node, node_hash) do
                          node_nesting    = 1
                          old_value       = nil
                  Severity: Minor
                  Found in lib/thread_safe/atomic_reference_cache_backend.rb - 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

                  Method get_and_set has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def get_and_set(key, value) # internalPut in the original CHMV8
                        hash          = key_hash(key)
                        current_table = table || initialize_table
                        while true
                          if !(node = current_table.volatile_get(i = current_table.hash_to_index(hash)))
                  Severity: Minor
                  Found in lib/thread_safe/atomic_reference_cache_backend.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

                  Severity
                  Category
                  Status
                  Source
                  Language