jnidzwetzki/bboxdb

View on GitHub

Showing 586 of 966 total issues

File QueryWindow.java has 619 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*******************************************************************************
 *
 *    Copyright (C) 2015-2022 the BBoxDB project
 *  
 *    Licensed under the Apache License, Version 2.0 (the "License");

    Method addActionListener has 248 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private void addActionListener(final JComboBox<String> queryTypeBox, final JComboBox<String> predefinedQueriesBox,
                final JComboBox<String> table1Field, final JComboBox<String> table1ColorField, 
                final JComboBox<String> table2Field, final JComboBox<String> table2ColorField, 
                final JButton executeButton, final JTextField udfNameField, final JTextField udfValueField,
                final JComboBox<String> receiveWatermarksField, final JComboBox<String> receiveInvalidationsField) {

      File BBoxDBConnection.java has 462 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      /*******************************************************************************
       *
       *    Copyright (C) 2015-2022 the BBoxDB project
       *
       *    Licensed under the Apache License, Version 2.0 (the "License");

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

            @Override
            public boolean equals(Object obj) {
                if (this == obj)
                    return true;
                if (obj == null)
        Severity: Minor
        Found in bboxdb-server/src/main/java/org/bboxdb/query/ContinuousQueryPlan.java - About 4 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

        BBoxDBConnection has 34 methods (exceeds 20 allowed). Consider refactoring.
        Open

        public class BBoxDBConnection {
        
            /**
             * The sequence number generator
             */

          OperationFutureImpl has 30 methods (exceeds 20 allowed). Consider refactoring.
          Open

          public class OperationFutureImpl<T> implements OperationFuture, FutureErrorCallback {
          
              /**
               * The tuple send delayer
               */

            Method runThread has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
            Open

                @Override
                protected void runThread() throws Exception {
                
                    logger.info("New worker thread for a continuous query has started");
                    queryResult = connection.queryContinuous(qp);

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

                private void prepartition(final CommandLine line) {
                    final List<String> requiredArgs = Arrays.asList(CLIParameter.FILE,
                            CLIParameter.FORMAT, CLIParameter.DISTRIBUTION_GROUP, CLIParameter.PARTITIONS);
            
                    checkRequiredArgs(requiredArgs);
            Severity: Major
            Found in bboxdb-tools/src/main/java/org/bboxdb/tools/cli/CLI.java - About 2 hrs to fix

              Method mouseMoved has 70 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  @Override
                  public void mouseMoved(final MouseEvent e) {
              
                      if(renderedElements == null) {
                          return;

                File OperationFutureImpl.java has 282 lines of code (exceeds 250 allowed). Consider refactoring.
                Open

                /*******************************************************************************
                 *
                 *    Copyright (C) 2015-2022 the BBoxDB project
                 *
                 *    Licensed under the Apache License, Version 2.0 (the "License");

                  Method updateRegistration has 69 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      private void updateRegistration() throws BBoxDBException {
                  
                          try {
                              double maxEnlargementAbsolute = 0;
                              double maxEnlargementFactor = 1;

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

                        private void prepartition(final CommandLine line) {
                            final List<String> requiredArgs = Arrays.asList(CLIParameter.FILE,
                                    CLIParameter.FORMAT, CLIParameter.DISTRIBUTION_GROUP, CLIParameter.PARTITIONS);
                    
                            checkRequiredArgs(requiredArgs);
                    Severity: Minor
                    Found in bboxdb-tools/src/main/java/org/bboxdb/tools/cli/CLI.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

                    NetworkOperationFutureMultiImpl has 24 methods (exceeds 20 allowed). Consider refactoring.
                    Open

                    public class NetworkOperationFutureMultiImpl implements NetworkOperationFuture {
                        
                        /**
                         * The futures
                         */

                      Method setupProducer has 65 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public void setupProducer(final int resultId) {
                      
                              logger.debug("Starting producer for {}", resultId);
                      
                              final Runnable producer = new Runnable() {

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

                            @Override
                            public boolean equals(Object obj) {
                                if (this == obj)
                                    return true;
                                if (!super.equals(obj))

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

                            public boolean isCovering(final Hyperrectangle otherBox) {
                                if(this == FULL_SPACE || otherBox == FULL_SPACE) {
                                    return true;
                                }
                        
                        

                        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

                        NetworkOperationFutureImpl has 23 methods (exceeds 20 allowed). Consider refactoring.
                        Open

                        public class NetworkOperationFutureImpl implements NetworkOperationFuture {
                        
                            /**
                             * The id of the operation
                             */

                          Method buildTableModel has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              private AbstractTableModel buildTableModel() {
                                  
                                  final AbstractTableModel tableModel = new AbstractTableModel() {
                                      
                                      /**

                            Method drawOnGui has 59 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                public void drawOnGui(final Graphics2D graphicsContext, final JXMapViewer map, final boolean drawReally) {
                                    
                                    final List<Point2D> pointList = getPointsToDrawOnGui();
                                    final Color color = isSelected() ? Color.GRAY : getColor();
                                    final Stroke oldStroke = graphicsContext.getStroke();

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

                              public class TupleStoreMetaData {
                                  
                                  /**
                                   * The amount of tuples
                                   */
                                Severity
                                Category
                                Status
                                Source
                                Language