influxdata/influxdb-java

View on GitHub

Showing 88 of 114 total issues

Method query has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

  public void query(Query query, int chunkSize, BiConsumer<Cancellable, QueryResult> onNext, Runnable onComplete,
                    Consumer<Throwable> onFailure);
Severity: Minor
Found in src/main/java/org/influxdb/InfluxDB.java - About 35 mins to fix

    Method createRetentionPolicy has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      public void createRetentionPolicy(final String rpName, final String database, final String duration,
                                        final String shardDuration, final int replicationFactor) {
    Severity: Minor
    Found in src/main/java/org/influxdb/impl/InfluxDBImpl.java - About 35 mins to fix

      Method setFieldValue has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

        private static <T> void setFieldValue(final T object, final Field field, final Object value, final TimeUnit precision,
                                              final TypeMapper typeMapper)
      Severity: Minor
      Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 35 mins to fix

        Method query has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

          public void query(final Query query, final int chunkSize, final BiConsumer<Cancellable, QueryResult> onNext,
                            final Runnable onComplete, final Consumer<Throwable> onFailure) {
        Severity: Minor
        Found in src/main/java/org/influxdb/impl/InfluxDBImpl.java - About 35 mins to fix

          Method write has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

            public void write(final String database, final String retentionPolicy,
                    final ConsistencyLevel consistency, final TimeUnit precision, final List<String> records);
          Severity: Minor
          Found in src/main/java/org/influxdb/InfluxDB.java - About 35 mins to fix

            Method write has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

              public void write(final String database, final String retentionPolicy, final ConsistencyLevel consistency,
                      final TimeUnit precision, final List<String> records) {
            Severity: Minor
            Found in src/main/java/org/influxdb/impl/InfluxDBImpl.java - About 35 mins to fix

              Method adaptValue has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                private static Object adaptValue(final Class<?> fieldType, final Object value, final TimeUnit precision,
                                                 final String fieldName, final String className) {
              Severity: Minor
              Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 35 mins to fix

                Method writePoints has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                  public Call<ResponseBody> writePoints(@Query(DB) String database,
                      @Query(RP) String retentionPolicy, @Query(PRECISION) String precision,
                      @Query(CONSISTENCY) String consistency, @Body RequestBody batchPoints);
                Severity: Minor
                Found in src/main/java/org/influxdb/impl/InfluxDBService.java - About 35 mins to fix

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

                    void put(final AbstractBatchEntry batchEntry) {
                      try {
                          if (this.dropActionsOnQueueExhaustion) {
                            if (!this.queue.offer(batchEntry)) {
                              this.droppedActionHandler.accept(batchEntry.getPoint());
                  Severity: Minor
                  Found in src/main/java/org/influxdb/impl/BatchProcessor.java - About 35 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 field has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                  Open

                      @SuppressWarnings("checkstyle:finalparameters")
                      @Deprecated
                      public Builder field(final String field, Object value) {
                        if (value instanceof Number) {
                          if (value instanceof Byte) {
                  Severity: Minor
                  Found in src/main/java/org/influxdb/dto/Point.java - About 35 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

                  Avoid too many return statements within this method.
                  Open

                          return Boolean.valueOf(String.valueOf(value));
                  Severity: Major
                  Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                            return ((Double) value).longValue();
                    Severity: Major
                    Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                              return false;
                      Severity: Major
                      Found in src/main/java/org/influxdb/dto/Query.java - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                return false;
                        Severity: Major
                        Found in src/main/java/org/influxdb/dto/Query.java - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                  return Enum.valueOf((Class<Enum>) fieldType, String.valueOf(value));
                          Severity: Major
                          Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                    return value;
                            Severity: Major
                            Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                    return new AuthorizationFailedException(errorMessage);
                              Severity: Major
                              Found in src/main/java/org/influxdb/InfluxDBException.java - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                          return Instant.ofEpochMilli(toMillis(((Integer) value).longValue(), precision));
                                Severity: Major
                                Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                        return false;
                                  Severity: Major
                                  Found in src/main/java/org/influxdb/dto/Query.java - About 30 mins to fix

                                    Avoid too many return statements within this method.
                                    Open

                                        return true;
                                    Severity: Major
                                    Found in src/main/java/org/influxdb/dto/Query.java - About 30 mins to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language