fujaba/NetworkParser

View on GitHub
src/main/java/de/uniks/networkparser/ext/petaf/proxy/NodeProxyFileSystem.java

Summary

Maintainability
C
1 day
Test Coverage

Method load has a Cognitive Complexity of 47 (exceeds 5 allowed). Consider refactoring.
Open

    public BaseItem load(Object root) {
        BaseItem readBaseFile = FileBuffer.readBaseFile(this.fileName);
        if (this.space != null && readBaseFile != null) {
            IdMap map = space.getMap();
            if (map != null) {

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 load has 48 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public BaseItem load(Object root) {
        BaseItem readBaseFile = FileBuffer.readBaseFile(this.fileName);
        if (this.space != null && readBaseFile != null) {
            IdMap map = space.getMap();
            if (map != null) {

    Method sending has 30 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        @Override
        protected boolean sending(Message msg) {
            boolean result = super.sending(msg);
            if (this.space == null) {
                return false;

      Avoid deeply nested control flow statements.
      Open

                                  if (message instanceof ChangeMessage) {
                                      ChangeMessage changeMsg = (ChangeMessage) message;
                                      if (map.getObject(changeMsg.getId()) == null) {
                                          /* Try to Use old Root */
                                          Object entity = changeMsg.getEntity();

        Method sending has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            @Override
            protected boolean sending(Message msg) {
                boolean result = super.sending(msg);
                if (this.space == null) {
                    return false;

        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