influxdata/influxdb-java

View on GitHub

Showing 88 of 114 total issues

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

public final class BatchOptions implements Cloneable {

  // default values here are consistent with Telegraf
  public static final int DEFAULT_BATCH_ACTIONS_LIMIT = 1000;
  public static final int DEFAULT_BATCH_INTERVAL_DURATION = 1000;
Severity: Minor
Found in src/main/java/org/influxdb/BatchOptions.java - About 2 hrs to fix

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

    public class BatchPoints {
      private String database;
      private String retentionPolicy;
      private Map<String, String> tags;
      private List<Point> points;
    Severity: Minor
    Found in src/main/java/org/influxdb/dto/BatchPoints.java - About 2 hrs to fix

      Method buildQueryString has 53 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        @Override
        public StringBuilder buildQueryString(final StringBuilder builder) {
          builder.append("SELECT ");
      
          if (isDistinct) {
      Severity: Major
      Found in src/main/java/org/influxdb/querybuilder/SelectCoreImpl.java - About 2 hrs to fix

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

          public static StringBuilder appendName(final Object name, final StringBuilder stringBuilder) {
            if (name instanceof String) {
              appendName((String) name, stringBuilder);
            } else if (name instanceof Column) {
              appendName(((Column) name).getName(), stringBuilder);
        Severity: Minor
        Found in src/main/java/org/influxdb/querybuilder/Appender.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 setField has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
        Open

            private void setField(
                    final Class<?> fieldType,
                    final String columnName,
                    final Object value) {
              if (boolean.class.isAssignableFrom(fieldType) || Boolean.class.isAssignableFrom(fieldType)) {
        Severity: Minor
        Found in src/main/java/org/influxdb/dto/Point.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 write has 46 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          void write() {
            List<Point> currentBatch = null;
            try {
              if (this.queue.isEmpty()) {
                BatchProcessor.this.batchWriter.write(Collections.emptyList());
        Severity: Minor
        Found in src/main/java/org/influxdb/impl/BatchProcessor.java - About 1 hr to fix

          Method concatenatedFields has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
          Open

            private int concatenatedFields(final StringBuilder sb) {
              int fieldCount = 0;
              for (Entry<String, Object> field : this.fields.entrySet()) {
                Object value = field.getValue();
                if (value == null || isNotFinite(value)) {
          Severity: Minor
          Found in src/main/java/org/influxdb/dto/Point.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 adaptValue has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            private static Object adaptValue(final Class<?> fieldType, final Object value, final TimeUnit precision,
                                             final String fieldName, final String className) {
              try {
                if (String.class.isAssignableFrom(fieldType)) {
                  return String.valueOf(value);
          Severity: Minor
          Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 1 hr to fix

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

              @SuppressWarnings("checkstyle:needbraces")
              @Override
              public boolean equals(final Object obj) {
                if (this == obj)
                  return true;
            Severity: Minor
            Found in src/main/java/org/influxdb/dto/Query.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 addFieldsFromPOJO has 36 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public Builder addFieldsFromPOJO(final Object pojo) {
            
                  Class<?> clazz = pojo.getClass();
                  Measurement measurement = clazz.getAnnotation(Measurement.class);
                  boolean allFields = measurement != null && measurement.allFields();
            Severity: Minor
            Found in src/main/java/org/influxdb/dto/Point.java - About 1 hr to fix

              Method addFieldByAttribute has 36 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  private void addFieldByAttribute(final Object pojo, final Field field, final boolean tag,
                                                   final String fieldName, final TypeMapper typeMapper) {
                    try {
                      Object fieldValue = field.get(pojo);
              
              
              Severity: Minor
              Found in src/main/java/org/influxdb/dto/Point.java - About 1 hr to fix

                Method appendValue has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                Open

                  public static StringBuilder appendValue(final Object value, final StringBuilder stringBuilder) {
                    if (value instanceof Appendable) {
                      Appendable appendable = (Appendable) value;
                      appendable.appendTo(stringBuilder);
                    } else if (value instanceof Function) {
                Severity: Minor
                Found in src/main/java/org/influxdb/querybuilder/Appender.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 write has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  @Override
                  public synchronized void write(final Collection<BatchPoints> collection) {
                    // empty the cached data first
                    ListIterator<BatchPoints> batchQueueIterator = batchQueue.listIterator();
                    while (batchQueueIterator.hasNext()) {
                Severity: Minor
                Found in src/main/java/org/influxdb/impl/RetryCapableBatchWriter.java - About 1 hr to fix

                  Method cacheMeasurementClass has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    void cacheMeasurementClass(final Class<?>... classVarAgrs) {
                      for (Class<?> clazz : classVarAgrs) {
                        if (CLASS_INFO_CACHE.containsKey(clazz.getName())) {
                          continue;
                        }
                  Severity: Minor
                  Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 1 hr to fix

                    Method formatedTime has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                      private void formatedTime(final StringBuilder sb, final TimeUnit precision) {
                        if (this.time == null) {
                          return;
                        }
                        TimeUnit converterPrecision = precision;
                    Severity: Minor
                    Found in src/main/java/org/influxdb/dto/Point.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 parseSeriesAs has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      <T> List<T> parseSeriesAs(final QueryResult.Series series, final Class<T> clazz, final List<T> result,
                                                final TimeUnit precision) {
                        int columnSize = series.getColumns().size();
                    
                        ClassInfo classInfo = CLASS_INFO_CACHE.get(clazz.getName());
                    Severity: Minor
                    Found in src/main/java/org/influxdb/impl/InfluxDBResultMapper.java - About 1 hr to fix

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

                        private void formatedTime(final StringBuilder sb, final TimeUnit precision) {
                          if (this.time == null) {
                            return;
                          }
                          TimeUnit converterPrecision = precision;
                      Severity: Minor
                      Found in src/main/java/org/influxdb/dto/Point.java - About 1 hr to fix

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

                          @Override
                          public void query(final Query query, final Consumer<QueryResult> onSuccess, final Consumer<Throwable> onFailure) {
                            final Call<QueryResult> call = callQuery(query);
                            call.enqueue(new Callback<QueryResult>() {
                              @Override
                        Severity: Minor
                        Found in src/main/java/org/influxdb/impl/InfluxDBImpl.java - About 1 hr to fix

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

                            private int concatenatedFields(final StringBuilder sb) {
                              int fieldCount = 0;
                              for (Entry<String, Object> field : this.fields.entrySet()) {
                                Object value = field.getValue();
                                if (value == null || isNotFinite(value)) {
                          Severity: Minor
                          Found in src/main/java/org/influxdb/dto/Point.java - About 1 hr to fix

                            Method appendName has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                              public static StringBuilder appendName(final Object name, final StringBuilder stringBuilder) {
                                if (name instanceof String) {
                                  appendName((String) name, stringBuilder);
                                } else if (name instanceof Column) {
                                  appendName(((Column) name).getName(), stringBuilder);
                            Severity: Minor
                            Found in src/main/java/org/influxdb/querybuilder/Appender.java - About 1 hr to fix
                              Severity
                              Category
                              Status
                              Source
                              Language