Contains the cql3 grammer and supporting classes, which will be converted one by one. From commit bf599fb5b062cbcc652da78b7d699e7a01b949ad.
430 lines
16 KiB
Java
430 lines
16 KiB
Java
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you 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.
|
|
*/
|
|
package org.apache.cassandra.cql3;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
import org.apache.cassandra.config.ColumnDefinition;
|
|
import org.apache.cassandra.db.ColumnFamily;
|
|
import org.apache.cassandra.db.composites.Composite;
|
|
import org.apache.cassandra.db.marshal.*;
|
|
import org.apache.cassandra.exceptions.InvalidRequestException;
|
|
|
|
/**
|
|
* An UPDATE or DELETE operation.
|
|
*
|
|
* For UPDATE this includes:
|
|
* - setting a constant
|
|
* - counter operations
|
|
* - collections operations
|
|
* and for DELETE:
|
|
* - deleting a column
|
|
* - deleting an element of collection column
|
|
*
|
|
* Fine grained operation are obtained from their raw counterpart (Operation.Raw, which
|
|
* correspond to a parsed, non-checked operation) by provided the receiver for the operation.
|
|
*/
|
|
public abstract class Operation
|
|
{
|
|
// the column the operation applies to
|
|
public final ColumnDefinition column;
|
|
|
|
// Term involved in the operation. In theory this should not be here since some operation
|
|
// may require none of more than one term, but most need 1 so it simplify things a bit.
|
|
protected final Term t;
|
|
|
|
protected Operation(ColumnDefinition column, Term t)
|
|
{
|
|
assert column != null;
|
|
this.column = column;
|
|
this.t = t;
|
|
}
|
|
|
|
public boolean usesFunction(String ksName, String functionName)
|
|
{
|
|
return t != null && t.usesFunction(ksName, functionName);
|
|
}
|
|
|
|
/**
|
|
* @return whether the operation requires a read of the previous value to be executed
|
|
* (only lists setterByIdx, discard and discardByIdx requires that).
|
|
*/
|
|
public boolean requiresRead()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Collects the column specification for the bind variables of this operation.
|
|
*
|
|
* @param boundNames the list of column specification where to collect the
|
|
* bind variables of this term in.
|
|
*/
|
|
public void collectMarkerSpecification(VariableSpecifications boundNames)
|
|
{
|
|
if (t != null)
|
|
t.collectMarkerSpecification(boundNames);
|
|
}
|
|
|
|
/**
|
|
* Execute the operation.
|
|
*
|
|
* @param rowKey row key for the update.
|
|
* @param cf the column family to which to add the updates generated by this operation.
|
|
* @param prefix the prefix that identify the CQL3 row this operation applies to.
|
|
* @param params parameters of the update.
|
|
*/
|
|
public abstract void execute(ByteBuffer rowKey, ColumnFamily cf, Composite prefix, UpdateParameters params) throws InvalidRequestException;
|
|
|
|
/**
|
|
* A parsed raw UPDATE operation.
|
|
*
|
|
* This can be one of:
|
|
* - Setting a value: c = v
|
|
* - Setting an element of a collection: c[x] = v
|
|
* - An addition/subtraction to a variable: c = c +/- v (where v can be a collection literal)
|
|
* - An prepend operation: c = v + c
|
|
*/
|
|
public interface RawUpdate
|
|
{
|
|
/**
|
|
* This method validates the operation (i.e. validate it is well typed)
|
|
* based on the specification of the receiver of the operation.
|
|
*
|
|
* It returns an Operation which can be though as post-preparation well-typed
|
|
* Operation.
|
|
*
|
|
* @param receiver the "column" this operation applies to. Note that
|
|
* contrarly to the method of same name in Term.Raw, the receiver should always
|
|
* be a true column.
|
|
* @return the prepared update operation.
|
|
*/
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException;
|
|
|
|
/**
|
|
* @return whether this operation can be applied alongside the {@code
|
|
* other} update (in the same UPDATE statement for the same column).
|
|
*/
|
|
public boolean isCompatibleWith(RawUpdate other);
|
|
}
|
|
|
|
/**
|
|
* A parsed raw DELETE operation.
|
|
*
|
|
* This can be one of:
|
|
* - Deleting a column
|
|
* - Deleting an element of a collection
|
|
*/
|
|
public interface RawDeletion
|
|
{
|
|
/**
|
|
* The name of the column affected by this delete operation.
|
|
*/
|
|
public ColumnIdentifier.Raw affectedColumn();
|
|
|
|
/**
|
|
* This method validates the operation (i.e. validate it is well typed)
|
|
* based on the specification of the column affected by the operation (i.e the
|
|
* one returned by affectedColumn()).
|
|
*
|
|
* It returns an Operation which can be though as post-preparation well-typed
|
|
* Operation.
|
|
*
|
|
* @param receiver the "column" this operation applies to.
|
|
* @return the prepared delete operation.
|
|
*/
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException;
|
|
}
|
|
|
|
public static class SetValue implements RawUpdate
|
|
{
|
|
private final Term.Raw value;
|
|
|
|
public SetValue(Term.Raw value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException
|
|
{
|
|
Term v = value.prepare(keyspace, receiver);
|
|
|
|
if (receiver.type instanceof CounterColumnType)
|
|
throw new InvalidRequestException(String.format("Cannot set the value of counter column %s (counters can only be incremented/decremented, not set)", receiver.name));
|
|
|
|
if (!(receiver.type.isCollection()))
|
|
return new Constants.Setter(receiver, v);
|
|
|
|
switch (((CollectionType)receiver.type).kind)
|
|
{
|
|
case LIST:
|
|
return new Lists.Setter(receiver, v);
|
|
case SET:
|
|
return new Sets.Setter(receiver, v);
|
|
case MAP:
|
|
return new Maps.Setter(receiver, v);
|
|
}
|
|
throw new AssertionError();
|
|
}
|
|
|
|
protected String toString(ColumnSpecification column)
|
|
{
|
|
return String.format("%s = %s", column, value);
|
|
}
|
|
|
|
public boolean isCompatibleWith(RawUpdate other)
|
|
{
|
|
// We don't allow setting multiple time the same column, because 1)
|
|
// it's stupid and 2) the result would seem random to the user.
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public static class SetElement implements RawUpdate
|
|
{
|
|
private final Term.Raw selector;
|
|
private final Term.Raw value;
|
|
|
|
public SetElement(Term.Raw selector, Term.Raw value)
|
|
{
|
|
this.selector = selector;
|
|
this.value = value;
|
|
}
|
|
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException
|
|
{
|
|
if (!(receiver.type instanceof CollectionType))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for non collection column %s", toString(receiver), receiver.name));
|
|
else if (!(receiver.type.isMultiCell()))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for frozen collection column %s", toString(receiver), receiver.name));
|
|
|
|
switch (((CollectionType)receiver.type).kind)
|
|
{
|
|
case LIST:
|
|
Term idx = selector.prepare(keyspace, Lists.indexSpecOf(receiver));
|
|
Term lval = value.prepare(keyspace, Lists.valueSpecOf(receiver));
|
|
return new Lists.SetterByIndex(receiver, idx, lval);
|
|
case SET:
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for set column %s", toString(receiver), receiver.name));
|
|
case MAP:
|
|
Term key = selector.prepare(keyspace, Maps.keySpecOf(receiver));
|
|
Term mval = value.prepare(keyspace, Maps.valueSpecOf(receiver));
|
|
return new Maps.SetterByKey(receiver, key, mval);
|
|
}
|
|
throw new AssertionError();
|
|
}
|
|
|
|
protected String toString(ColumnSpecification column)
|
|
{
|
|
return String.format("%s[%s] = %s", column.name, selector, value);
|
|
}
|
|
|
|
public boolean isCompatibleWith(RawUpdate other)
|
|
{
|
|
// TODO: we could check that the other operation is not setting the same element
|
|
// too (but since the index/key set may be a bind variables we can't always do it at this point)
|
|
return !(other instanceof SetValue);
|
|
}
|
|
}
|
|
|
|
public static class Addition implements RawUpdate
|
|
{
|
|
private final Term.Raw value;
|
|
|
|
public Addition(Term.Raw value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException
|
|
{
|
|
Term v = value.prepare(keyspace, receiver);
|
|
|
|
if (!(receiver.type instanceof CollectionType))
|
|
{
|
|
if (!(receiver.type instanceof CounterColumnType))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for non counter column %s", toString(receiver), receiver.name));
|
|
return new Constants.Adder(receiver, v);
|
|
}
|
|
else if (!(receiver.type.isMultiCell()))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for frozen collection column %s", toString(receiver), receiver.name));
|
|
|
|
switch (((CollectionType)receiver.type).kind)
|
|
{
|
|
case LIST:
|
|
return new Lists.Appender(receiver, v);
|
|
case SET:
|
|
return new Sets.Adder(receiver, v);
|
|
case MAP:
|
|
return new Maps.Putter(receiver, v);
|
|
}
|
|
throw new AssertionError();
|
|
}
|
|
|
|
protected String toString(ColumnSpecification column)
|
|
{
|
|
return String.format("%s = %s + %s", column.name, column.name, value);
|
|
}
|
|
|
|
public boolean isCompatibleWith(RawUpdate other)
|
|
{
|
|
return !(other instanceof SetValue);
|
|
}
|
|
}
|
|
|
|
public static class Substraction implements RawUpdate
|
|
{
|
|
private final Term.Raw value;
|
|
|
|
public Substraction(Term.Raw value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException
|
|
{
|
|
if (!(receiver.type instanceof CollectionType))
|
|
{
|
|
if (!(receiver.type instanceof CounterColumnType))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for non counter column %s", toString(receiver), receiver.name));
|
|
return new Constants.Substracter(receiver, value.prepare(keyspace, receiver));
|
|
}
|
|
else if (!(receiver.type.isMultiCell()))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for frozen collection column %s", toString(receiver), receiver.name));
|
|
|
|
switch (((CollectionType)receiver.type).kind)
|
|
{
|
|
case LIST:
|
|
return new Lists.Discarder(receiver, value.prepare(keyspace, receiver));
|
|
case SET:
|
|
return new Sets.Discarder(receiver, value.prepare(keyspace, receiver));
|
|
case MAP:
|
|
// The value for a map subtraction is actually a set
|
|
ColumnSpecification vr = new ColumnSpecification(receiver.ksName,
|
|
receiver.cfName,
|
|
receiver.name,
|
|
SetType.getInstance(((MapType)receiver.type).getKeysType(), false));
|
|
return new Sets.Discarder(receiver, value.prepare(keyspace, vr));
|
|
}
|
|
throw new AssertionError();
|
|
}
|
|
|
|
protected String toString(ColumnSpecification column)
|
|
{
|
|
return String.format("%s = %s - %s", column.name, column.name, value);
|
|
}
|
|
|
|
public boolean isCompatibleWith(RawUpdate other)
|
|
{
|
|
return !(other instanceof SetValue);
|
|
}
|
|
}
|
|
|
|
public static class Prepend implements RawUpdate
|
|
{
|
|
private final Term.Raw value;
|
|
|
|
public Prepend(Term.Raw value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException
|
|
{
|
|
Term v = value.prepare(keyspace, receiver);
|
|
|
|
if (!(receiver.type instanceof ListType))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for non list column %s", toString(receiver), receiver.name));
|
|
else if (!(receiver.type.isMultiCell()))
|
|
throw new InvalidRequestException(String.format("Invalid operation (%s) for frozen list column %s", toString(receiver), receiver.name));
|
|
|
|
return new Lists.Prepender(receiver, v);
|
|
}
|
|
|
|
protected String toString(ColumnSpecification column)
|
|
{
|
|
return String.format("%s = %s - %s", column.name, value, column.name);
|
|
}
|
|
|
|
public boolean isCompatibleWith(RawUpdate other)
|
|
{
|
|
return !(other instanceof SetValue);
|
|
}
|
|
}
|
|
|
|
public static class ColumnDeletion implements RawDeletion
|
|
{
|
|
private final ColumnIdentifier.Raw id;
|
|
|
|
public ColumnDeletion(ColumnIdentifier.Raw id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
public ColumnIdentifier.Raw affectedColumn()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException
|
|
{
|
|
// No validation, deleting a column is always "well typed"
|
|
return new Constants.Deleter(receiver);
|
|
}
|
|
}
|
|
|
|
public static class ElementDeletion implements RawDeletion
|
|
{
|
|
private final ColumnIdentifier.Raw id;
|
|
private final Term.Raw element;
|
|
|
|
public ElementDeletion(ColumnIdentifier.Raw id, Term.Raw element)
|
|
{
|
|
this.id = id;
|
|
this.element = element;
|
|
}
|
|
|
|
public ColumnIdentifier.Raw affectedColumn()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
public Operation prepare(String keyspace, ColumnDefinition receiver) throws InvalidRequestException
|
|
{
|
|
if (!(receiver.type.isCollection()))
|
|
throw new InvalidRequestException(String.format("Invalid deletion operation for non collection column %s", receiver.name));
|
|
else if (!(receiver.type.isMultiCell()))
|
|
throw new InvalidRequestException(String.format("Invalid deletion operation for frozen collection column %s", receiver.name));
|
|
|
|
switch (((CollectionType)receiver.type).kind)
|
|
{
|
|
case LIST:
|
|
Term idx = element.prepare(keyspace, Lists.indexSpecOf(receiver));
|
|
return new Lists.DiscarderByIndex(receiver, idx);
|
|
case SET:
|
|
Term elt = element.prepare(keyspace, Sets.valueSpecOf(receiver));
|
|
return new Sets.Discarder(receiver, elt);
|
|
case MAP:
|
|
Term key = element.prepare(keyspace, Maps.keySpecOf(receiver));
|
|
return new Maps.DiscarderByKey(receiver, key);
|
|
}
|
|
throw new AssertionError();
|
|
}
|
|
}
|
|
}
|