]> source.dussan.org Git - sonarqube.git/commitdiff
Remove issue attributes from batch
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Tue, 6 Oct 2015 08:25:34 +0000 (10:25 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Wed, 7 Oct 2015 10:23:03 +0000 (12:23 +0200)
server/sonar-server/src/main/java/org/sonar/server/computation/issue/TrackerRawInputFactory.java
sonar-batch-protocol/src/main/gen-java/org/sonar/batch/protocol/output/BatchReport.java
sonar-batch-protocol/src/main/protobuf/batch_report.proto
sonar-batch/src/main/java/org/sonar/batch/issue/DeprecatedIssueWrapper.java
sonar-batch/src/main/java/org/sonar/batch/issue/IssueFilters.java
sonar-batch/src/main/java/org/sonar/batch/issue/ModuleIssues.java
sonar-batch/src/main/java/org/sonar/batch/issue/tracking/IssueTransition.java
sonar-batch/src/main/java/org/sonar/batch/issue/tracking/LocalIssueTracking.java
sonar-plugin-api/src/main/java/org/sonar/api/issue/Issue.java

index a72039023449aa94384705f0a6addfb98a63626a..d9c32c5d46664b121b26668180ee620a0bd70dd9 100644 (file)
@@ -129,9 +129,6 @@ public class TrackerRawInputFactory {
       if (reportIssue.hasEffortToFix()) {
         issue.setEffortToFix(reportIssue.getEffortToFix());
       }
-      if (reportIssue.hasAttributes()) {
-        issue.setAttributes(KeyValueFormat.parse(reportIssue.getAttributes()));
-      }
       DbIssues.Locations.Builder dbLocationsBuilder = DbIssues.Locations.newBuilder();
       if (reportIssue.hasTextRange()) {
         dbLocationsBuilder.setTextRange(convertTextRange(reportIssue.getTextRange()));
index f270f91192c459c26373322e4f7e52f591587695..deaa30b4aa8c3a25c23d3adf620a0776bbc81feb 100644 (file)
@@ -6557,21 +6557,7 @@ public final class BatchReport {
     double getEffortToFix();
 
     /**
-     * <code>optional string attributes = 7;</code>
-     */
-    boolean hasAttributes();
-    /**
-     * <code>optional string attributes = 7;</code>
-     */
-    java.lang.String getAttributes();
-    /**
-     * <code>optional string attributes = 7;</code>
-     */
-    com.google.protobuf.ByteString
-        getAttributesBytes();
-
-    /**
-     * <code>optional .TextRange text_range = 9;</code>
+     * <code>optional .TextRange text_range = 7;</code>
      *
      * <pre>
      * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -6579,7 +6565,7 @@ public final class BatchReport {
      */
     boolean hasTextRange();
     /**
-     * <code>optional .TextRange text_range = 9;</code>
+     * <code>optional .TextRange text_range = 7;</code>
      *
      * <pre>
      * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -6587,7 +6573,7 @@ public final class BatchReport {
      */
     org.sonar.batch.protocol.output.BatchReport.TextRange getTextRange();
     /**
-     * <code>optional .TextRange text_range = 9;</code>
+     * <code>optional .TextRange text_range = 7;</code>
      *
      * <pre>
      * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -6596,25 +6582,25 @@ public final class BatchReport {
     org.sonar.batch.protocol.output.BatchReport.TextRangeOrBuilder getTextRangeOrBuilder();
 
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     java.util.List<org.sonar.batch.protocol.output.BatchReport.Flow> 
         getFlowList();
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     org.sonar.batch.protocol.output.BatchReport.Flow getFlow(int index);
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     int getFlowCount();
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     java.util.List<? extends org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder> 
         getFlowOrBuilderList();
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder getFlowOrBuilder(
         int index);
@@ -6637,7 +6623,6 @@ public final class BatchReport {
       msg_ = "";
       severity_ = 0;
       effortToFix_ = 0D;
-      attributes_ = "";
       flow_ = java.util.Collections.emptyList();
     }
 
@@ -6708,14 +6693,8 @@ public final class BatchReport {
               break;
             }
             case 58: {
-              com.google.protobuf.ByteString bs = input.readBytes();
-              bitField0_ |= 0x00000040;
-              attributes_ = bs;
-              break;
-            }
-            case 74: {
               org.sonar.batch.protocol.output.BatchReport.TextRange.Builder subBuilder = null;
-              if (((bitField0_ & 0x00000080) == 0x00000080)) {
+              if (((bitField0_ & 0x00000040) == 0x00000040)) {
                 subBuilder = textRange_.toBuilder();
               }
               textRange_ = input.readMessage(org.sonar.batch.protocol.output.BatchReport.TextRange.PARSER, extensionRegistry);
@@ -6723,13 +6702,13 @@ public final class BatchReport {
                 subBuilder.mergeFrom(textRange_);
                 textRange_ = subBuilder.buildPartial();
               }
-              bitField0_ |= 0x00000080;
+              bitField0_ |= 0x00000040;
               break;
             }
-            case 82: {
-              if (!((mutable_bitField0_ & 0x00000100) == 0x00000100)) {
+            case 66: {
+              if (!((mutable_bitField0_ & 0x00000080) == 0x00000080)) {
                 flow_ = new java.util.ArrayList<org.sonar.batch.protocol.output.BatchReport.Flow>();
-                mutable_bitField0_ |= 0x00000100;
+                mutable_bitField0_ |= 0x00000080;
               }
               flow_.add(input.readMessage(org.sonar.batch.protocol.output.BatchReport.Flow.PARSER, extensionRegistry));
               break;
@@ -6743,7 +6722,7 @@ public final class BatchReport {
             new com.google.protobuf.InvalidProtocolBufferException(
                 e.getMessage()).setUnfinishedMessage(this));
       } finally {
-        if (((mutable_bitField0_ & 0x00000100) == 0x00000100)) {
+        if (((mutable_bitField0_ & 0x00000080) == 0x00000080)) {
           flow_ = java.util.Collections.unmodifiableList(flow_);
         }
         this.unknownFields = unknownFields.build();
@@ -6945,62 +6924,20 @@ public final class BatchReport {
       return effortToFix_;
     }
 
-    public static final int ATTRIBUTES_FIELD_NUMBER = 7;
-    private volatile java.lang.Object attributes_;
-    /**
-     * <code>optional string attributes = 7;</code>
-     */
-    public boolean hasAttributes() {
-      return ((bitField0_ & 0x00000040) == 0x00000040);
-    }
-    /**
-     * <code>optional string attributes = 7;</code>
-     */
-    public java.lang.String getAttributes() {
-      java.lang.Object ref = attributes_;
-      if (ref instanceof java.lang.String) {
-        return (java.lang.String) ref;
-      } else {
-        com.google.protobuf.ByteString bs = 
-            (com.google.protobuf.ByteString) ref;
-        java.lang.String s = bs.toStringUtf8();
-        if (bs.isValidUtf8()) {
-          attributes_ = s;
-        }
-        return s;
-      }
-    }
-    /**
-     * <code>optional string attributes = 7;</code>
-     */
-    public com.google.protobuf.ByteString
-        getAttributesBytes() {
-      java.lang.Object ref = attributes_;
-      if (ref instanceof java.lang.String) {
-        com.google.protobuf.ByteString b = 
-            com.google.protobuf.ByteString.copyFromUtf8(
-                (java.lang.String) ref);
-        attributes_ = b;
-        return b;
-      } else {
-        return (com.google.protobuf.ByteString) ref;
-      }
-    }
-
-    public static final int TEXT_RANGE_FIELD_NUMBER = 9;
+    public static final int TEXT_RANGE_FIELD_NUMBER = 7;
     private org.sonar.batch.protocol.output.BatchReport.TextRange textRange_;
     /**
-     * <code>optional .TextRange text_range = 9;</code>
+     * <code>optional .TextRange text_range = 7;</code>
      *
      * <pre>
      * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
      * </pre>
      */
     public boolean hasTextRange() {
-      return ((bitField0_ & 0x00000080) == 0x00000080);
+      return ((bitField0_ & 0x00000040) == 0x00000040);
     }
     /**
-     * <code>optional .TextRange text_range = 9;</code>
+     * <code>optional .TextRange text_range = 7;</code>
      *
      * <pre>
      * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -7010,7 +6947,7 @@ public final class BatchReport {
       return textRange_ == null ? org.sonar.batch.protocol.output.BatchReport.TextRange.getDefaultInstance() : textRange_;
     }
     /**
-     * <code>optional .TextRange text_range = 9;</code>
+     * <code>optional .TextRange text_range = 7;</code>
      *
      * <pre>
      * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -7020,35 +6957,35 @@ public final class BatchReport {
       return textRange_ == null ? org.sonar.batch.protocol.output.BatchReport.TextRange.getDefaultInstance() : textRange_;
     }
 
-    public static final int FLOW_FIELD_NUMBER = 10;
+    public static final int FLOW_FIELD_NUMBER = 8;
     private java.util.List<org.sonar.batch.protocol.output.BatchReport.Flow> flow_;
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     public java.util.List<org.sonar.batch.protocol.output.BatchReport.Flow> getFlowList() {
       return flow_;
     }
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     public java.util.List<? extends org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder> 
         getFlowOrBuilderList() {
       return flow_;
     }
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     public int getFlowCount() {
       return flow_.size();
     }
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     public org.sonar.batch.protocol.output.BatchReport.Flow getFlow(int index) {
       return flow_.get(index);
     }
     /**
-     * <code>repeated .Flow flow = 10;</code>
+     * <code>repeated .Flow flow = 8;</code>
      */
     public org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder getFlowOrBuilder(
         int index) {
@@ -7086,13 +7023,10 @@ public final class BatchReport {
         output.writeDouble(6, effortToFix_);
       }
       if (((bitField0_ & 0x00000040) == 0x00000040)) {
-        output.writeBytes(7, getAttributesBytes());
-      }
-      if (((bitField0_ & 0x00000080) == 0x00000080)) {
-        output.writeMessage(9, getTextRange());
+        output.writeMessage(7, getTextRange());
       }
       for (int i = 0; i < flow_.size(); i++) {
-        output.writeMessage(10, flow_.get(i));
+        output.writeMessage(8, flow_.get(i));
       }
       unknownFields.writeTo(output);
     }
@@ -7129,15 +7063,11 @@ public final class BatchReport {
       }
       if (((bitField0_ & 0x00000040) == 0x00000040)) {
         size += com.google.protobuf.CodedOutputStream
-          .computeBytesSize(7, getAttributesBytes());
-      }
-      if (((bitField0_ & 0x00000080) == 0x00000080)) {
-        size += com.google.protobuf.CodedOutputStream
-          .computeMessageSize(9, getTextRange());
+          .computeMessageSize(7, getTextRange());
       }
       for (int i = 0; i < flow_.size(); i++) {
         size += com.google.protobuf.CodedOutputStream
-          .computeMessageSize(10, flow_.get(i));
+          .computeMessageSize(8, flow_.get(i));
       }
       size += unknownFields.getSerializedSize();
       memoizedSerializedSize = size;
@@ -7265,17 +7195,15 @@ public final class BatchReport {
         bitField0_ = (bitField0_ & ~0x00000010);
         effortToFix_ = 0D;
         bitField0_ = (bitField0_ & ~0x00000020);
-        attributes_ = "";
-        bitField0_ = (bitField0_ & ~0x00000040);
         if (textRangeBuilder_ == null) {
           textRange_ = null;
         } else {
           textRangeBuilder_.clear();
         }
-        bitField0_ = (bitField0_ & ~0x00000080);
+        bitField0_ = (bitField0_ & ~0x00000040);
         if (flowBuilder_ == null) {
           flow_ = java.util.Collections.emptyList();
-          bitField0_ = (bitField0_ & ~0x00000100);
+          bitField0_ = (bitField0_ & ~0x00000080);
         } else {
           flowBuilder_.clear();
         }
@@ -7330,19 +7258,15 @@ public final class BatchReport {
         if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
           to_bitField0_ |= 0x00000040;
         }
-        result.attributes_ = attributes_;
-        if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
-          to_bitField0_ |= 0x00000080;
-        }
         if (textRangeBuilder_ == null) {
           result.textRange_ = textRange_;
         } else {
           result.textRange_ = textRangeBuilder_.build();
         }
         if (flowBuilder_ == null) {
-          if (((bitField0_ & 0x00000100) == 0x00000100)) {
+          if (((bitField0_ & 0x00000080) == 0x00000080)) {
             flow_ = java.util.Collections.unmodifiableList(flow_);
-            bitField0_ = (bitField0_ & ~0x00000100);
+            bitField0_ = (bitField0_ & ~0x00000080);
           }
           result.flow_ = flow_;
         } else {
@@ -7388,11 +7312,6 @@ public final class BatchReport {
         if (other.hasEffortToFix()) {
           setEffortToFix(other.getEffortToFix());
         }
-        if (other.hasAttributes()) {
-          bitField0_ |= 0x00000040;
-          attributes_ = other.attributes_;
-          onChanged();
-        }
         if (other.hasTextRange()) {
           mergeTextRange(other.getTextRange());
         }
@@ -7400,7 +7319,7 @@ public final class BatchReport {
           if (!other.flow_.isEmpty()) {
             if (flow_.isEmpty()) {
               flow_ = other.flow_;
-              bitField0_ = (bitField0_ & ~0x00000100);
+              bitField0_ = (bitField0_ & ~0x00000080);
             } else {
               ensureFlowIsMutable();
               flow_.addAll(other.flow_);
@@ -7413,7 +7332,7 @@ public final class BatchReport {
               flowBuilder_.dispose();
               flowBuilder_ = null;
               flow_ = other.flow_;
-              bitField0_ = (bitField0_ & ~0x00000100);
+              bitField0_ = (bitField0_ & ~0x00000080);
               flowBuilder_ = 
                 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
                    getFlowFieldBuilder() : null;
@@ -7798,97 +7717,21 @@ public final class BatchReport {
         return this;
       }
 
-      private java.lang.Object attributes_ = "";
-      /**
-       * <code>optional string attributes = 7;</code>
-       */
-      public boolean hasAttributes() {
-        return ((bitField0_ & 0x00000040) == 0x00000040);
-      }
-      /**
-       * <code>optional string attributes = 7;</code>
-       */
-      public java.lang.String getAttributes() {
-        java.lang.Object ref = attributes_;
-        if (!(ref instanceof java.lang.String)) {
-          com.google.protobuf.ByteString bs =
-              (com.google.protobuf.ByteString) ref;
-          java.lang.String s = bs.toStringUtf8();
-          if (bs.isValidUtf8()) {
-            attributes_ = s;
-          }
-          return s;
-        } else {
-          return (java.lang.String) ref;
-        }
-      }
-      /**
-       * <code>optional string attributes = 7;</code>
-       */
-      public com.google.protobuf.ByteString
-          getAttributesBytes() {
-        java.lang.Object ref = attributes_;
-        if (ref instanceof String) {
-          com.google.protobuf.ByteString b = 
-              com.google.protobuf.ByteString.copyFromUtf8(
-                  (java.lang.String) ref);
-          attributes_ = b;
-          return b;
-        } else {
-          return (com.google.protobuf.ByteString) ref;
-        }
-      }
-      /**
-       * <code>optional string attributes = 7;</code>
-       */
-      public Builder setAttributes(
-          java.lang.String value) {
-        if (value == null) {
-    throw new NullPointerException();
-  }
-  bitField0_ |= 0x00000040;
-        attributes_ = value;
-        onChanged();
-        return this;
-      }
-      /**
-       * <code>optional string attributes = 7;</code>
-       */
-      public Builder clearAttributes() {
-        bitField0_ = (bitField0_ & ~0x00000040);
-        attributes_ = getDefaultInstance().getAttributes();
-        onChanged();
-        return this;
-      }
-      /**
-       * <code>optional string attributes = 7;</code>
-       */
-      public Builder setAttributesBytes(
-          com.google.protobuf.ByteString value) {
-        if (value == null) {
-    throw new NullPointerException();
-  }
-  bitField0_ |= 0x00000040;
-        attributes_ = value;
-        onChanged();
-        return this;
-      }
-
       private org.sonar.batch.protocol.output.BatchReport.TextRange textRange_ = null;
       private com.google.protobuf.SingleFieldBuilder<
           org.sonar.batch.protocol.output.BatchReport.TextRange, org.sonar.batch.protocol.output.BatchReport.TextRange.Builder, org.sonar.batch.protocol.output.BatchReport.TextRangeOrBuilder> textRangeBuilder_;
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
        * </pre>
        */
       public boolean hasTextRange() {
-        return ((bitField0_ & 0x00000080) == 0x00000080);
+        return ((bitField0_ & 0x00000040) == 0x00000040);
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -7902,7 +7745,7 @@ public final class BatchReport {
         }
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -7918,11 +7761,11 @@ public final class BatchReport {
         } else {
           textRangeBuilder_.setMessage(value);
         }
-        bitField0_ |= 0x00000080;
+        bitField0_ |= 0x00000040;
         return this;
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -7936,11 +7779,11 @@ public final class BatchReport {
         } else {
           textRangeBuilder_.setMessage(builderForValue.build());
         }
-        bitField0_ |= 0x00000080;
+        bitField0_ |= 0x00000040;
         return this;
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -7948,7 +7791,7 @@ public final class BatchReport {
        */
       public Builder mergeTextRange(org.sonar.batch.protocol.output.BatchReport.TextRange value) {
         if (textRangeBuilder_ == null) {
-          if (((bitField0_ & 0x00000080) == 0x00000080) &&
+          if (((bitField0_ & 0x00000040) == 0x00000040) &&
               textRange_ != null &&
               textRange_ != org.sonar.batch.protocol.output.BatchReport.TextRange.getDefaultInstance()) {
             textRange_ =
@@ -7960,11 +7803,11 @@ public final class BatchReport {
         } else {
           textRangeBuilder_.mergeFrom(value);
         }
-        bitField0_ |= 0x00000080;
+        bitField0_ |= 0x00000040;
         return this;
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -7977,23 +7820,23 @@ public final class BatchReport {
         } else {
           textRangeBuilder_.clear();
         }
-        bitField0_ = (bitField0_ & ~0x00000080);
+        bitField0_ = (bitField0_ & ~0x00000040);
         return this;
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
        * </pre>
        */
       public org.sonar.batch.protocol.output.BatchReport.TextRange.Builder getTextRangeBuilder() {
-        bitField0_ |= 0x00000080;
+        bitField0_ |= 0x00000040;
         onChanged();
         return getTextRangeFieldBuilder().getBuilder();
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -8008,7 +7851,7 @@ public final class BatchReport {
         }
       }
       /**
-       * <code>optional .TextRange text_range = 9;</code>
+       * <code>optional .TextRange text_range = 7;</code>
        *
        * <pre>
        * Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
@@ -8031,9 +7874,9 @@ public final class BatchReport {
       private java.util.List<org.sonar.batch.protocol.output.BatchReport.Flow> flow_ =
         java.util.Collections.emptyList();
       private void ensureFlowIsMutable() {
-        if (!((bitField0_ & 0x00000100) == 0x00000100)) {
+        if (!((bitField0_ & 0x00000080) == 0x00000080)) {
           flow_ = new java.util.ArrayList<org.sonar.batch.protocol.output.BatchReport.Flow>(flow_);
-          bitField0_ |= 0x00000100;
+          bitField0_ |= 0x00000080;
          }
       }
 
@@ -8041,7 +7884,7 @@ public final class BatchReport {
           org.sonar.batch.protocol.output.BatchReport.Flow, org.sonar.batch.protocol.output.BatchReport.Flow.Builder, org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder> flowBuilder_;
 
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public java.util.List<org.sonar.batch.protocol.output.BatchReport.Flow> getFlowList() {
         if (flowBuilder_ == null) {
@@ -8051,7 +7894,7 @@ public final class BatchReport {
         }
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public int getFlowCount() {
         if (flowBuilder_ == null) {
@@ -8061,7 +7904,7 @@ public final class BatchReport {
         }
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public org.sonar.batch.protocol.output.BatchReport.Flow getFlow(int index) {
         if (flowBuilder_ == null) {
@@ -8071,7 +7914,7 @@ public final class BatchReport {
         }
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder setFlow(
           int index, org.sonar.batch.protocol.output.BatchReport.Flow value) {
@@ -8088,7 +7931,7 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder setFlow(
           int index, org.sonar.batch.protocol.output.BatchReport.Flow.Builder builderForValue) {
@@ -8102,7 +7945,7 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder addFlow(org.sonar.batch.protocol.output.BatchReport.Flow value) {
         if (flowBuilder_ == null) {
@@ -8118,7 +7961,7 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder addFlow(
           int index, org.sonar.batch.protocol.output.BatchReport.Flow value) {
@@ -8135,7 +7978,7 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder addFlow(
           org.sonar.batch.protocol.output.BatchReport.Flow.Builder builderForValue) {
@@ -8149,7 +7992,7 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder addFlow(
           int index, org.sonar.batch.protocol.output.BatchReport.Flow.Builder builderForValue) {
@@ -8163,7 +8006,7 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder addAllFlow(
           java.lang.Iterable<? extends org.sonar.batch.protocol.output.BatchReport.Flow> values) {
@@ -8178,12 +8021,12 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder clearFlow() {
         if (flowBuilder_ == null) {
           flow_ = java.util.Collections.emptyList();
-          bitField0_ = (bitField0_ & ~0x00000100);
+          bitField0_ = (bitField0_ & ~0x00000080);
           onChanged();
         } else {
           flowBuilder_.clear();
@@ -8191,7 +8034,7 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public Builder removeFlow(int index) {
         if (flowBuilder_ == null) {
@@ -8204,14 +8047,14 @@ public final class BatchReport {
         return this;
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public org.sonar.batch.protocol.output.BatchReport.Flow.Builder getFlowBuilder(
           int index) {
         return getFlowFieldBuilder().getBuilder(index);
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder getFlowOrBuilder(
           int index) {
@@ -8221,7 +8064,7 @@ public final class BatchReport {
         }
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public java.util.List<? extends org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder> 
            getFlowOrBuilderList() {
@@ -8232,14 +8075,14 @@ public final class BatchReport {
         }
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public org.sonar.batch.protocol.output.BatchReport.Flow.Builder addFlowBuilder() {
         return getFlowFieldBuilder().addBuilder(
             org.sonar.batch.protocol.output.BatchReport.Flow.getDefaultInstance());
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public org.sonar.batch.protocol.output.BatchReport.Flow.Builder addFlowBuilder(
           int index) {
@@ -8247,7 +8090,7 @@ public final class BatchReport {
             index, org.sonar.batch.protocol.output.BatchReport.Flow.getDefaultInstance());
       }
       /**
-       * <code>repeated .Flow flow = 10;</code>
+       * <code>repeated .Flow flow = 8;</code>
        */
       public java.util.List<org.sonar.batch.protocol.output.BatchReport.Flow.Builder> 
            getFlowBuilderList() {
@@ -8260,7 +8103,7 @@ public final class BatchReport {
           flowBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
               org.sonar.batch.protocol.output.BatchReport.Flow, org.sonar.batch.protocol.output.BatchReport.Flow.Builder, org.sonar.batch.protocol.output.BatchReport.FlowOrBuilder>(
                   flow_,
-                  ((bitField0_ & 0x00000100) == 0x00000100),
+                  ((bitField0_ & 0x00000080) == 0x00000080),
                   getParentForChildren(),
                   isClean());
           flow_ = null;
@@ -18973,42 +18816,42 @@ public final class BatchReport {
       "_type\030\001 \001(\0162\021.MeasureValueType\022\025\n\rboolea" +
       "n_value\030\002 \001(\010\022\021\n\tint_value\030\003 \001(\005\022\022\n\nlong" +
       "_value\030\004 \001(\003\022\024\n\014double_value\030\005 \001(\001\022\024\n\014st" +
-      "ring_value\030\006 \001(\t\022\022\n\nmetric_key\030\007 \001(\t\"\312\001\n",
+      "ring_value\030\006 \001(\t\022\022\n\nmetric_key\030\007 \001(\t\"\266\001\n",
       "\005Issue\022\027\n\017rule_repository\030\001 \001(\t\022\020\n\010rule_" +
       "key\030\002 \001(\t\022\014\n\004line\030\003 \001(\005\022\013\n\003msg\030\004 \001(\t\022\033\n\010" +
       "severity\030\005 \001(\0162\t.Severity\022\025\n\reffort_to_f" +
-      "ix\030\006 \001(\001\022\022\n\nattributes\030\007 \001(\t\022\036\n\ntext_ran" +
-      "ge\030\t \001(\0132\n.TextRange\022\023\n\004flow\030\n \003(\0132\005.Flo" +
-      "w\"S\n\rIssueLocation\022\025\n\rcomponent_ref\030\001 \001(" +
-      "\005\022\036\n\ntext_range\030\002 \001(\0132\n.TextRange\022\013\n\003msg" +
-      "\030\003 \001(\t\"(\n\004Flow\022 \n\010location\030\001 \003(\0132\016.Issue" +
-      "Location\"\254\001\n\nChangesets\022\025\n\rcomponent_ref" +
-      "\030\001 \001(\005\022(\n\tchangeset\030\002 \003(\0132\025.Changesets.C",
-      "hangeset\022 \n\024changesetIndexByLine\030\003 \003(\005B\002" +
-      "\020\001\032;\n\tChangeset\022\020\n\010revision\030\001 \001(\t\022\016\n\006aut" +
-      "hor\030\002 \001(\t\022\014\n\004date\030\003 \001(\003\"V\n\tDuplicate\022\026\n\016" +
-      "other_file_ref\030\001 \001(\005\022\031\n\005range\030\002 \001(\0132\n.Te" +
-      "xtRange\022\026\n\016other_file_key\030\003 \001(\t\"Q\n\013Dupli" +
-      "cation\022#\n\017origin_position\030\001 \001(\0132\n.TextRa" +
-      "nge\022\035\n\tduplicate\030\002 \003(\0132\n.Duplicate\"[\n\tTe" +
-      "xtRange\022\022\n\nstart_line\030\001 \001(\005\022\020\n\010end_line\030" +
-      "\002 \001(\005\022\024\n\014start_offset\030\003 \001(\005\022\022\n\nend_offse" +
-      "t\030\004 \001(\005\"H\n\006Symbol\022\037\n\013declaration\030\001 \001(\0132\n",
-      ".TextRange\022\035\n\treference\030\002 \003(\0132\n.TextRang" +
-      "e\"\260\001\n\010Coverage\022\014\n\004line\030\001 \001(\005\022\022\n\nconditio" +
-      "ns\030\002 \001(\005\022\017\n\007ut_hits\030\003 \001(\010\022\017\n\007it_hits\030\004 \001" +
-      "(\010\022\035\n\025ut_covered_conditions\030\005 \001(\005\022\035\n\025it_" +
-      "covered_conditions\030\006 \001(\005\022\"\n\032overall_cove" +
-      "red_conditions\030\007 \001(\005\"P\n\022SyntaxHighlighti" +
-      "ng\022\031\n\005range\030\001 \001(\0132\n.TextRange\022\037\n\004type\030\002 " +
-      "\001(\0162\021.HighlightingType\"j\n\004Test\022\014\n\004name\030\001" +
-      " \001(\t\022\033\n\006status\030\002 \001(\0162\013.TestStatus\022\026\n\016dur" +
-      "ation_in_ms\030\003 \001(\003\022\022\n\nstacktrace\030\004 \001(\t\022\013\n",
-      "\003msg\030\005 \001(\t\"\221\001\n\016CoverageDetail\022\021\n\ttest_na" +
-      "me\030\001 \001(\t\0221\n\014covered_file\030\002 \003(\0132\033.Coverag" +
-      "eDetail.CoveredFile\0329\n\013CoveredFile\022\020\n\010fi" +
-      "le_ref\030\001 \001(\005\022\030\n\014covered_line\030\002 \003(\005B\002\020\001B#" +
-      "\n\037org.sonar.batch.protocol.outputH\001"
+      "ix\030\006 \001(\001\022\036\n\ntext_range\030\007 \001(\0132\n.TextRange" +
+      "\022\023\n\004flow\030\010 \003(\0132\005.Flow\"S\n\rIssueLocation\022\025" +
+      "\n\rcomponent_ref\030\001 \001(\005\022\036\n\ntext_range\030\002 \001(" +
+      "\0132\n.TextRange\022\013\n\003msg\030\003 \001(\t\"(\n\004Flow\022 \n\010lo" +
+      "cation\030\001 \003(\0132\016.IssueLocation\"\254\001\n\nChanges" +
+      "ets\022\025\n\rcomponent_ref\030\001 \001(\005\022(\n\tchangeset\030" +
+      "\002 \003(\0132\025.Changesets.Changeset\022 \n\024changese",
+      "tIndexByLine\030\003 \003(\005B\002\020\001\032;\n\tChangeset\022\020\n\010r" +
+      "evision\030\001 \001(\t\022\016\n\006author\030\002 \001(\t\022\014\n\004date\030\003 " +
+      "\001(\003\"V\n\tDuplicate\022\026\n\016other_file_ref\030\001 \001(\005" +
+      "\022\031\n\005range\030\002 \001(\0132\n.TextRange\022\026\n\016other_fil" +
+      "e_key\030\003 \001(\t\"Q\n\013Duplication\022#\n\017origin_pos" +
+      "ition\030\001 \001(\0132\n.TextRange\022\035\n\tduplicate\030\002 \003" +
+      "(\0132\n.Duplicate\"[\n\tTextRange\022\022\n\nstart_lin" +
+      "e\030\001 \001(\005\022\020\n\010end_line\030\002 \001(\005\022\024\n\014start_offse" +
+      "t\030\003 \001(\005\022\022\n\nend_offset\030\004 \001(\005\"H\n\006Symbol\022\037\n" +
+      "\013declaration\030\001 \001(\0132\n.TextRange\022\035\n\trefere",
+      "nce\030\002 \003(\0132\n.TextRange\"\260\001\n\010Coverage\022\014\n\004li" +
+      "ne\030\001 \001(\005\022\022\n\nconditions\030\002 \001(\005\022\017\n\007ut_hits\030" +
+      "\003 \001(\010\022\017\n\007it_hits\030\004 \001(\010\022\035\n\025ut_covered_con" +
+      "ditions\030\005 \001(\005\022\035\n\025it_covered_conditions\030\006" +
+      " \001(\005\022\"\n\032overall_covered_conditions\030\007 \001(\005" +
+      "\"P\n\022SyntaxHighlighting\022\031\n\005range\030\001 \001(\0132\n." +
+      "TextRange\022\037\n\004type\030\002 \001(\0162\021.HighlightingTy" +
+      "pe\"j\n\004Test\022\014\n\004name\030\001 \001(\t\022\033\n\006status\030\002 \001(\016" +
+      "2\013.TestStatus\022\026\n\016duration_in_ms\030\003 \001(\003\022\022\n" +
+      "\nstacktrace\030\004 \001(\t\022\013\n\003msg\030\005 \001(\t\"\221\001\n\016Cover",
+      "ageDetail\022\021\n\ttest_name\030\001 \001(\t\0221\n\014covered_" +
+      "file\030\002 \003(\0132\033.CoverageDetail.CoveredFile\032" +
+      "9\n\013CoveredFile\022\020\n\010file_ref\030\001 \001(\005\022\030\n\014cove" +
+      "red_line\030\002 \003(\005B\002\020\001B#\n\037org.sonar.batch.pr" +
+      "otocol.outputH\001"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
@@ -19064,7 +18907,7 @@ public final class BatchReport {
     internal_static_Issue_fieldAccessorTable = new
       com.google.protobuf.GeneratedMessage.FieldAccessorTable(
         internal_static_Issue_descriptor,
-        new java.lang.String[] { "RuleRepository", "RuleKey", "Line", "Msg", "Severity", "EffortToFix", "Attributes", "TextRange", "Flow", });
+        new java.lang.String[] { "RuleRepository", "RuleKey", "Line", "Msg", "Severity", "EffortToFix", "TextRange", "Flow", });
     internal_static_IssueLocation_descriptor =
       getDescriptor().getMessageTypes().get(6);
     internal_static_IssueLocation_fieldAccessorTable = new
index efe36ee08f6853dda989f6775d5ed2ec31c15c60..631c2c4ae49aaaf56c28c0e896110421d9fa39db 100644 (file)
@@ -104,10 +104,9 @@ message Issue {
   optional string msg = 4;
   optional Severity severity = 5;
   optional double effort_to_fix = 6;
-  optional string attributes = 7;
   // Only when issue component is a file. Can also be empty for a file if this is an issue global to the file.
-  optional TextRange text_range = 9;
-  repeated Flow flow = 10;
+  optional TextRange text_range = 7;
+  repeated Flow flow = 8;
 }
 
 message IssueLocation {
index 83287731be08ebd6772d287f1712ff0397462544..4674cbac7d90177eb92954473944b187cd86301c 100644 (file)
@@ -128,7 +128,7 @@ public class DeprecatedIssueWrapper implements Issue {
 
   @Override
   public Map<String, String> attributes() {
-    return null;
+    return Collections.emptyMap();
   }
 
   @Override
index 093cef7135583514b7402f14af729e148e08c81a..430c2ceb08951345a87fe8faebeff4c038ddeea3 100644 (file)
@@ -31,7 +31,6 @@ import org.sonar.api.issue.batch.IssueFilter;
 import org.sonar.api.resources.Project;
 import org.sonar.api.rule.RuleKey;
 import org.sonar.api.utils.Duration;
-import org.sonar.api.utils.KeyValueFormat;
 import org.sonar.batch.protocol.output.BatchReport;
 
 @BatchSide
@@ -130,7 +129,7 @@ public class IssueFilters {
 
     @Override
     public Map<String, String> attributes() {
-      return rawIssue.hasAttributes() ? KeyValueFormat.parse(rawIssue.getAttributes()) : Collections.<String, String>emptyMap();
+      return Collections.emptyMap();
     }
 
     @Override
index f8ade4d070205153665165e7a63bb85232f5c323..921a537aac8c180a40a153fa658db227e4598528 100644 (file)
@@ -29,7 +29,6 @@ import org.sonar.api.batch.rule.Rules;
 import org.sonar.api.batch.sensor.issue.Issue;
 import org.sonar.api.batch.sensor.issue.Issue.Flow;
 import org.sonar.api.rule.RuleKey;
-import org.sonar.api.utils.KeyValueFormat;
 import org.sonar.api.utils.MessageException;
 import org.sonar.batch.index.BatchComponent;
 import org.sonar.batch.index.BatchComponentCache;
@@ -83,7 +82,6 @@ public class ModuleIssues {
     builder.setSeverity(severity);
     builder.setRuleRepository(issue.ruleKey().repository());
     builder.setRuleKey(issue.ruleKey().rule());
-    builder.setAttributes(KeyValueFormat.format(issue.attributes()));
     builder.setMsg(primaryMessage);
     locationBuilder.setMsg(primaryMessage);
 
index 279d5d93fceb0365cdb73e33c5be4f27fefc1530..92d8f949cd136d6489cd8afd4d1c8eaf0601933c 100644 (file)
  */
 package org.sonar.batch.issue.tracking;
 
-import org.sonar.api.batch.BatchSide;
-
 import com.google.common.collect.Lists;
 import com.google.common.collect.Sets;
+import java.util.Date;
+import java.util.List;
+import java.util.Set;
+import javax.annotation.Nullable;
+import org.sonar.api.batch.BatchSide;
 import org.sonar.api.resources.Project;
 import org.sonar.api.rule.RuleKey;
-import org.sonar.api.utils.KeyValueFormat;
 import org.sonar.batch.index.BatchComponent;
 import org.sonar.batch.index.BatchComponentCache;
 import org.sonar.batch.issue.IssueCache;
@@ -37,11 +39,6 @@ import org.sonar.core.issue.IssueChangeContext;
 import org.sonar.core.issue.workflow.IssueWorkflow;
 import org.sonar.core.util.CloseableIterator;
 
-import java.util.Collections;
-import java.util.Date;
-import java.util.List;
-import java.util.Set;
-
 @BatchSide
 public class IssueTransition {
   private final IssueCache issueCache;
@@ -50,10 +47,11 @@ public class IssueTransition {
   private final BatchComponentCache componentCache;
   private final ReportPublisher reportPublisher;
   private final Date analysisDate;
+  @Nullable
   private final LocalIssueTracking localIssueTracking;
 
   public IssueTransition(BatchComponentCache componentCache, IssueCache issueCache, IssueWorkflow workflow, ReportPublisher reportPublisher,
-    LocalIssueTracking localIssueTracking) {
+    @Nullable LocalIssueTracking localIssueTracking) {
     this.componentCache = componentCache;
     this.issueCache = issueCache;
     this.workflow = workflow;
@@ -118,7 +116,7 @@ public class IssueTransition {
   }
 
   private DefaultIssue toTracked(BatchComponent component, BatchReport.Issue rawIssue) {
-    DefaultIssue trackedIssue = new org.sonar.core.issue.DefaultIssueBuilder()
+    return new org.sonar.core.issue.DefaultIssueBuilder()
       .componentKey(component.key())
       .projectKey("unused")
       .ruleKey(RuleKey.of(rawIssue.getRuleRepository(), rawIssue.getRuleKey()))
@@ -127,7 +125,5 @@ public class IssueTransition {
       .message(rawIssue.hasMsg() ? rawIssue.getMsg() : null)
       .severity(rawIssue.getSeverity().name())
       .build();
-    trackedIssue.setAttributes(rawIssue.hasAttributes() ? KeyValueFormat.parse(rawIssue.getAttributes()) : Collections.<String, String>emptyMap());
-    return trackedIssue;
   }
 }
index 19cdeb7f1b5a7d9e15dccdc7f3e1ea61b68654e5..01bdadd560909c88cd2d9ba59419d87f7dc6f22e 100644 (file)
  */
 package org.sonar.batch.issue.tracking;
 
-import org.sonar.batch.repository.ProjectRepositories;
 import com.google.common.annotations.VisibleForTesting;
 import com.google.common.collect.Lists;
-
 import java.util.ArrayList;
 import java.util.Collection;
-import java.util.Collections;
 import java.util.Date;
 import java.util.List;
 import java.util.Set;
-
 import javax.annotation.CheckForNull;
-
 import org.sonar.api.batch.BatchSide;
 import org.sonar.api.batch.fs.internal.DefaultInputFile;
 import org.sonar.api.batch.rule.ActiveRule;
@@ -40,12 +35,12 @@ import org.sonar.api.issue.Issue;
 import org.sonar.api.resources.Project;
 import org.sonar.api.resources.ResourceUtils;
 import org.sonar.api.rule.RuleKey;
-import org.sonar.api.utils.KeyValueFormat;
 import org.sonar.batch.index.BatchComponent;
 import org.sonar.batch.index.BatchComponentCache;
 import org.sonar.batch.protocol.output.BatchReport;
 import org.sonar.batch.protocol.output.BatchReportReader;
 import org.sonar.batch.report.ReportPublisher;
+import org.sonar.batch.repository.ProjectRepositories;
 import org.sonar.core.component.ComponentKeys;
 import org.sonar.core.issue.DefaultIssue;
 import org.sonar.core.issue.IssueChangeContext;
@@ -116,7 +111,6 @@ public class LocalIssueTracking {
       .message(rawIssue.hasMsg() ? rawIssue.getMsg() : null)
       .severity(rawIssue.getSeverity().name())
       .build();
-    trackedIssue.setAttributes(rawIssue.hasAttributes() ? KeyValueFormat.parse(rawIssue.getAttributes()) : Collections.<String, String>emptyMap());
     return trackedIssue;
   }
 
index 4385daefcd8201a6c0f8fdc749238d777cb54cb3..b9d94d116d1ec07946011594bdce03f3f00227ca 100644 (file)
@@ -154,6 +154,10 @@ public interface Issue extends Serializable {
   @CheckForNull
   String attribute(String key);
 
+  /**
+   * Empty on batch side since version 5.2. Attributes are moved to server's Compute Engine. No use-case for keeping them
+   * on batch side for now
+   */
   Map<String, String> attributes();
 
   /**