/* * Copyright (c) 2015, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. * * This file has been automatically generated. Please do not edit it manually. * To regenerate the file, use the script "pkg/analysis_server/tool/spec/generate_files". */ package org.dartlang.analysis.server.protocol; import java.util.Arrays; import java.util.List; import java.util.Map; import com.google.common.collect.Lists; import com.google.dart.server.utilities.general.JsonUtilities; import com.google.dart.server.utilities.general.ObjectUtilities; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonPrimitive; import org.apache.commons.lang3.builder.HashCodeBuilder; import java.util.ArrayList; import java.util.Iterator; import org.apache.commons.lang3.StringUtils; /** * A description of a set of edits that implement a single conceptual change. * * @coverage dart.server.generated.types */ @SuppressWarnings("unused") public class SourceChange { public static final SourceChange[] EMPTY_ARRAY = new SourceChange[0]; public static final List<SourceChange> EMPTY_LIST = Lists.newArrayList(); /** * A human-readable description of the change to be applied. */ private final String message; /** * A list of the edits used to effect the change, grouped by file. */ private final List<SourceFileEdit> edits; /** * A list of the linked editing groups used to customize the changes that were made. */ private final List<LinkedEditGroup> linkedEditGroups; /** * The position that should be selected after the edits have been applied. */ private final Position selection; /** * Constructor for {@link SourceChange}. */ public SourceChange(String message, List<SourceFileEdit> edits, List<LinkedEditGroup> linkedEditGroups, Position selection) { this.message = message; this.edits = edits; this.linkedEditGroups = linkedEditGroups; this.selection = selection; } @Override public boolean equals(Object obj) { if (obj instanceof SourceChange) { SourceChange other = (SourceChange) obj; return ObjectUtilities.equals(other.message, message) && ObjectUtilities.equals(other.edits, edits) && ObjectUtilities.equals(other.linkedEditGroups, linkedEditGroups) && ObjectUtilities.equals(other.selection, selection); } return false; } public static SourceChange fromJson(JsonObject jsonObject) { String message = jsonObject.get("message").getAsString(); List<SourceFileEdit> edits = SourceFileEdit.fromJsonArray(jsonObject.get("edits").getAsJsonArray()); List<LinkedEditGroup> linkedEditGroups = LinkedEditGroup.fromJsonArray(jsonObject.get("linkedEditGroups").getAsJsonArray()); Position selection = jsonObject.get("selection") == null ? null : Position.fromJson(jsonObject.get("selection").getAsJsonObject()); return new SourceChange(message, edits, linkedEditGroups, selection); } public static List<SourceChange> fromJsonArray(JsonArray jsonArray) { if (jsonArray == null) { return EMPTY_LIST; } ArrayList<SourceChange> list = new ArrayList<SourceChange>(jsonArray.size()); Iterator<JsonElement> iterator = jsonArray.iterator(); while (iterator.hasNext()) { list.add(fromJson(iterator.next().getAsJsonObject())); } return list; } /** * A list of the edits used to effect the change, grouped by file. */ public List<SourceFileEdit> getEdits() { return edits; } /** * A list of the linked editing groups used to customize the changes that were made. */ public List<LinkedEditGroup> getLinkedEditGroups() { return linkedEditGroups; } /** * A human-readable description of the change to be applied. */ public String getMessage() { return message; } /** * The position that should be selected after the edits have been applied. */ public Position getSelection() { return selection; } @Override public int hashCode() { HashCodeBuilder builder = new HashCodeBuilder(); builder.append(message); builder.append(edits); builder.append(linkedEditGroups); builder.append(selection); return builder.toHashCode(); } public JsonObject toJson() { JsonObject jsonObject = new JsonObject(); jsonObject.addProperty("message", message); JsonArray jsonArrayEdits = new JsonArray(); for (SourceFileEdit elt : edits) { jsonArrayEdits.add(elt.toJson()); } jsonObject.add("edits", jsonArrayEdits); JsonArray jsonArrayLinkedEditGroups = new JsonArray(); for (LinkedEditGroup elt : linkedEditGroups) { jsonArrayLinkedEditGroups.add(elt.toJson()); } jsonObject.add("linkedEditGroups", jsonArrayLinkedEditGroups); if (selection != null) { jsonObject.add("selection", selection.toJson()); } return jsonObject; } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("["); builder.append("message="); builder.append(message + ", "); builder.append("edits="); builder.append(StringUtils.join(edits, ", ") + ", "); builder.append("linkedEditGroups="); builder.append(StringUtils.join(linkedEditGroups, ", ") + ", "); builder.append("selection="); builder.append(selection); builder.append("]"); return builder.toString(); } }