All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.setl.json.patch.ops.Move Maven / Gradle / Ivy

Go to download

An implementation of the Canonical JSON format with support for javax.json and Jackson

The newest version!
package io.setl.json.patch.ops;

import jakarta.json.JsonPatch.Operation;
import jakarta.json.JsonStructure;
import jakarta.json.JsonValue;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

import io.setl.json.CJObject;
import io.setl.json.builder.ObjectBuilder;
import io.setl.json.patch.PatchOperation;
import io.setl.json.pointer.JsonExtendedPointer;
import io.setl.json.pointer.PointerFactory;

/**
 * A "move" operation.
 *
 * @author Simon Greatrix on 06/02/2020.
 */
public class Move extends PatchOperation {

  private final String from;

  private final JsonExtendedPointer fromPointer;


  /**
   * New instance.
   *
   * @param path the path to move to
   * @param from the path to move from
   */
  @JsonCreator
  public Move(
      @JsonProperty("path") String path,
      @JsonProperty("from") String from
  ) {
    super(path);
    this.from = from;
    fromPointer = PointerFactory.create(from);
  }


  /**
   * New instance from its JSON representation.
   *
   * @param object the representation
   */
  public Move(CJObject object) {
    super(object);
    from = object.getString("from");
    fromPointer = PointerFactory.create(from);
  }


  @Override
  public  T apply(T target) {
    JsonValue value = fromPointer.getValue(target);
    target = fromPointer.remove(target);
    return pointer.add(target, value);
  }


  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (!(o instanceof Move)) {
      return false;
    }
    if (!super.equals(o)) {
      return false;
    }

    Move move = (Move) o;
    return from.equals(move.from);
  }


  /**
   * Get the "from" path.
   *
   * @return the "from" path
   */
  public String getFrom() {
    return from;
  }


  /**
   * Get the "from" pointer.
   *
   * @return the "from" pointer
   */
  @JsonIgnore
  public JsonExtendedPointer getFromPointer() {
    return fromPointer;
  }


  @Override
  public Operation getOperation() {
    return Operation.MOVE;
  }


  @Override
  public int hashCode() {
    int result = super.hashCode();
    result = 31 * result + from.hashCode();
    return result;
  }


  @Override
  public CJObject toJsonObject() {
    return new ObjectBuilder()
        .add("op", getOperation().operationName())
        .add("path", getPath())
        .add("from", from)
        .build();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy