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

com.arcadedb.query.sql.parser.UpdateOperations Maven / Gradle / Ivy

There is a newer version: 24.11.1
Show newest version
/*
 * Copyright © 2021-present Arcade Data Ltd ([email protected])
 *
 * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
 *
 * 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.
 *
 * SPDX-FileCopyrightText: 2021-present Arcade Data Ltd ([email protected])
 * SPDX-License-Identifier: Apache-2.0
 */
/* Generated By:JJTree: Do not edit this line. OUpdateOperations.java Version 4.3 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=true,NODE_PREFIX=O,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_USERTYPE_VISIBILITY_PUBLIC=true */
package com.arcadedb.query.sql.parser;

import java.util.*;
import java.util.stream.*;

public class UpdateOperations extends SimpleNode {
  public static final int TYPE_SET       = 0;
  public static final int TYPE_PUT       = 1;
  public static final int TYPE_MERGE     = 2;
  public static final int TYPE_CONTENT   = 3;
  public static final int TYPE_INCREMENT = 4;
  public static final int TYPE_ADD       = 5;
  public static final int TYPE_REMOVE    = 6;

  protected int                       type;
  protected List          updateItems          = new ArrayList();
  protected List       updatePutItems       = new ArrayList();
  protected Json                      json;
  protected List updateIncrementItems = new ArrayList();
  protected List    updateRemoveItems    = new ArrayList();

  public UpdateOperations(final int id) {
    super(id);
  }

  public void toString(final Map params, final StringBuilder builder) {
    boolean first = true;
    switch (type) {
    case TYPE_SET:
      builder.append("SET ");
      for (final UpdateItem item : this.updateItems) {
        if (!first) {
          builder.append(", ");
        }
        item.toString(params, builder);
        first = false;
      }
      break;
    case TYPE_PUT:
      builder.append("PUT ");
      for (final UpdatePutItem item : this.updatePutItems) {
        if (!first) {
          builder.append(", ");
        }
        item.toString(params, builder);
        first = false;
      }
      break;
    case TYPE_MERGE:
      builder.append("MERGE ");
      json.toString(params, builder);
      break;
    case TYPE_CONTENT:
      builder.append("CONTENT ");
      json.toString(params, builder);
      break;
    case TYPE_INCREMENT:
      builder.append("INCREMENT ");
      for (final UpdateIncrementItem item : this.updateIncrementItems) {
        if (!first) {
          builder.append(", ");
        }
        item.toString(params, builder);
        first = false;
      }
      break;
    case TYPE_ADD:
      builder.append("ADD ");
      for (final UpdateIncrementItem item : this.updateIncrementItems) {
        if (!first) {
          builder.append(", ");
        }
        item.toString(params, builder);
        first = false;
      }
      break;
    case TYPE_REMOVE:
      builder.append("REMOVE ");
      for (final UpdateRemoveItem item : this.updateRemoveItems) {
        if (!first) {
          builder.append(", ");
        }
        item.toString(params, builder);
        first = false;
      }
      break;
    default:
      throw new IllegalArgumentException("Type " + type + " not supported");
    }
  }

  public UpdateOperations copy() {
    final UpdateOperations result = new UpdateOperations(-1);
    result.type = type;
    result.updateItems = updateItems == null ? null : updateItems.stream().map(x -> x.copy()).collect(Collectors.toList());
    result.updatePutItems = updatePutItems == null ? null : updatePutItems.stream().map(x -> x.copy()).collect(Collectors.toList());
    result.json = json == null ? null : json.copy();
    result.updateIncrementItems = updateIncrementItems == null ? null : updateIncrementItems.stream().map(x -> x.copy()).collect(Collectors.toList());
    result.updateRemoveItems = updateRemoveItems == null ? null : updateRemoveItems.stream().map(x -> x.copy()).collect(Collectors.toList());
    return result;
  }

  @Override
  public boolean equals(final Object o) {
    if (this == o)
      return true;
    if (o == null || getClass() != o.getClass())
      return false;

    final UpdateOperations that = (UpdateOperations) o;

    if (type != that.type)
      return false;
    if (!Objects.equals(updateItems, that.updateItems))
      return false;
    if (!Objects.equals(updatePutItems, that.updatePutItems))
      return false;
    if (!Objects.equals(json, that.json))
      return false;
    if (!Objects.equals(updateIncrementItems, that.updateIncrementItems))
      return false;
    return Objects.equals(updateRemoveItems, that.updateRemoveItems);
  }

  @Override
  public int hashCode() {
    int result = type;
    result = 31 * result + (updateItems != null ? updateItems.hashCode() : 0);
    result = 31 * result + (updatePutItems != null ? updatePutItems.hashCode() : 0);
    result = 31 * result + (json != null ? json.hashCode() : 0);
    result = 31 * result + (updateIncrementItems != null ? updateIncrementItems.hashCode() : 0);
    result = 31 * result + (updateRemoveItems != null ? updateRemoveItems.hashCode() : 0);
    return result;
  }

  public int getType() {
    return type;
  }

  public List getUpdateItems() {
    return updateItems;
  }

  public List getUpdatePutItems() {
    return updatePutItems;
  }

  public Json getJson() {
    return json;
  }

  public List getUpdateIncrementItems() {
    return updateIncrementItems;
  }

  public List getUpdateRemoveItems() {
    return updateRemoveItems;
  }
}
/* JavaCC - OriginalChecksum=0eca3b3e4e3d96c42db57b7cd89cf755 (do not edit this line) */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy