sparklemotion/nokogiri

View on GitHub

Showing 533 of 533 total issues

Method relink_namespace has 55 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  public void
  relink_namespace(ThreadContext context)
  {
    if (!(node instanceof Element)) {
      return;
Severity: Major
Found in ext/java/nokogiri/XmlNode.java - About 2 hrs to fix

    File xpath_visitor.rb has 258 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module Nokogiri
      module CSS
        # When translating CSS selectors to XPath queries with Nokogiri::CSS.xpath_for, the XPathVisitor
        # class allows for changing some of the behaviors related to builtin xpath functions and quirks
        # of HTML5.
    Severity: Minor
    Found in lib/nokogiri/css/xpath_visitor.rb - About 2 hrs to fix

      XmlSaxParserContext has 21 methods (exceeds 20 allowed). Consider refactoring.
      Open

      @JRubyClass(name = "Nokogiri::XML::SAX::ParserContext")
      public class XmlSaxParserContext extends ParserContext
      {
        private static final long serialVersionUID = 1L;
      
      
      Severity: Minor
      Found in ext/java/nokogiri/XmlSaxParserContext.java - About 2 hrs to fix

        Method node_type has 54 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          @JRubyMethod(name = {"node_type", "type"})
          public IRubyObject
          node_type(ThreadContext context)
          {
            String type;
        Severity: Major
        Found in ext/java/nokogiri/XmlNode.java - About 2 hrs to fix

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

                  if (output.length() == 0) {
                    output.append("/");
                  } else if (output.toString().endsWith("../")) {
                    output.append("..");
                  } else if (output.toString().endsWith("..")) {
          Severity: Major
          Found in ext/java/nokogiri/internals/c14n/Canonicalizer11.java and 1 other location - About 2 hrs to fix
          ext/java/nokogiri/internals/c14n/Canonicalizer11.java on lines 581..597

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

          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 (output.length() == 0) {
                    output.append("/");
                  } else if (output.toString().endsWith("../")) {
                    output.append("..");
                  } else if (output.toString().endsWith("..")) {
          Severity: Major
          Found in ext/java/nokogiri/internals/c14n/Canonicalizer11.java and 1 other location - About 2 hrs to fix
          ext/java/nokogiri/internals/c14n/Canonicalizer11.java on lines 560..576

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

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

            @Override
            protected void
            handleParent(Element e, NameSpaceSymbTable ns)
            {
              if (!e.hasAttributes() && e.getNamespaceURI() == null) {
          Severity: Minor
          Found in ext/java/nokogiri/internals/c14n/Canonicalizer11.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 logicalNextDOMTextNode has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

            private Node
            logicalNextDOMTextNode(Node n)
            {
              Node p = n.getNextSibling();
              if (p == null) {
          Severity: Minor
          Found in ext/java/nokogiri/internals/dom2dtm/DOM2DTM.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 writeStringToUtf8 has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

            public static void
            writeStringToUtf8(
              final String str,
              final OutputStream out
            ) throws IOException
          Severity: Minor
          Found in ext/java/nokogiri/internals/c14n/UtfHelpper.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 getAttributesWithPropagated has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

            private void
            getAttributesWithPropagated(List<Attr> attributes, Attr attr)
            {
              boolean newAttribute = true;
              Iterator<Attr[]> iter = c14nAttrStack.iterator();
          Severity: Minor
          Found in ext/java/nokogiri/internals/SaveContextVisitor.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 nth has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

                def nth(node, options = {})
                  unless node.value.size == 4
                    raise(ArgumentError, "expected an+b node to contain 4 tokens, but is #{node.value.inspect}")
                  end
          
          
          Severity: Minor
          Found in lib/nokogiri/css/xpath_visitor.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 adoptAs has 52 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            protected IRubyObject
            adoptAs(ThreadContext context, AdoptScheme scheme, IRubyObject other_)
            {
              final XmlNode other = asXmlNode(context, other_);
              // this.doc might be null since this node can be empty node.
          Severity: Major
          Found in ext/java/nokogiri/XmlNode.java - About 2 hrs to fix

            Method getStringInUtf8 has 51 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              public static byte[]
              getStringInUtf8(final String str)
              {
                final int length = str.length();
                boolean expanded = false;
            Severity: Major
            Found in ext/java/nokogiri/internals/c14n/UtfHelpper.java - About 2 hrs to fix

              Method circumventBug2650internal has 50 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                @SuppressWarnings("fallthrough")
                private static void
                circumventBug2650internal(Node node)
                {
                  Node parent = null;
              Severity: Minor
              Found in ext/java/nokogiri/internals/c14n/XMLUtils.java - About 2 hrs to fix

                Method createXmlModule has 50 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  private RubyClass
                  createXmlModule(Ruby ruby, RubyModule xmlModule)
                  {
                    RubyClass node = xmlModule.defineClassUnder("Node", ruby.getObject(), XML_NODE_ALLOCATOR);
                    node.defineAnnotatedMethods(XmlNode.class);
                Severity: Minor
                Found in ext/java/nokogiri/NokogiriService.java - About 2 hrs to fix

                  Method lookupNamespaceURI has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    public String
                    lookupNamespaceURI(String specifiedPrefix)
                    {
                      short type = this.getNodeType();
                      switch (type) {

                    Method canonicalize has 48 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      @JRubyMethod(optional = 3)
                      public IRubyObject
                      canonicalize(ThreadContext context, IRubyObject[] args, Block block)
                      {
                        int mode = 0;
                    Severity: Minor
                    Found in ext/java/nokogiri/XmlDocument.java - About 1 hr to fix

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

                        @Override
                        protected void
                        handleParent(Element e, NameSpaceSymbTable ns)
                        {
                          if (!e.hasAttributes() && e.getNamespaceURI() == null) {
                      Severity: Minor
                      Found in ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java - 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 adoptAs has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                      Open

                        protected IRubyObject
                        adoptAs(ThreadContext context, AdoptScheme scheme, IRubyObject other_)
                        {
                          final XmlNode other = asXmlNode(context, other_);
                          // this.doc might be null since this node can be empty node.
                      Severity: Minor
                      Found in ext/java/nokogiri/XmlNode.java - 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 compare has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                      Open

                        public int
                        compare(Attr attr0, Attr attr1)
                        {
                          String namespaceURI0 = attr0.getNamespaceURI();
                          String namespaceURI1 = attr1.getNamespaceURI();
                      Severity: Minor
                      Found in ext/java/nokogiri/internals/c14n/AttrCompare.java - 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