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

com.hazelcast.sql.impl.expression.SargExpression Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * Copyright 2024 Hazelcast Inc.
 *
 * Licensed under the Hazelcast Community License (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://hazelcast.com/hazelcast-community-license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hazelcast.sql.impl.expression;

import com.hazelcast.jet.sql.impl.JetSqlSerializerHook;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.sql.impl.expression.predicate.SearchPredicate;
import com.hazelcast.sql.impl.row.Row;
import com.hazelcast.sql.impl.type.QueryDataType;

import java.io.IOException;
import java.util.Objects;

/**
 * An expression representing a Sarg literal as an operand to {@link
 * SearchPredicate}.
 */
public class SargExpression> implements Expression> {

    private QueryDataType type;
    private AbstractSarg sarg;

    public SargExpression() {
    }

    private SargExpression(QueryDataType type, AbstractSarg sarg) {
        this.type = type;
        this.sarg = sarg;
    }

    public static SargExpression create(QueryDataType type, AbstractSarg searchable) {
        return new SargExpression<>(type, searchable);
    }

    @Override
    public int getClassId() {
        return JetSqlSerializerHook.SARG_EXPRESSION;
    }

    @Override
    public AbstractSarg eval(Row row, ExpressionEvalContext context) {
        return sarg;
    }

    @Override
    public QueryDataType getType() {
        return type;
    }

    @Override
    public void writeData(ObjectDataOutput out) throws IOException {
        out.writeObject(type);
        out.writeObject(sarg);
    }

    @Override
    public void readData(ObjectDataInput in) throws IOException {
        type = in.readObject();
        sarg = in.readObject();
    }

    @Override
    public int hashCode() {
        int result = type.hashCode();
        result = 31 * result + (sarg != null ? sarg.hashCode() : 0);
        return result;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        SargExpression that = (SargExpression) o;

        return Objects.equals(type, that.type) && Objects.equals(sarg, that.sarg);
    }

    @Override
    public String toString() {
        return "SearchableExpression{type=" + type + ", searchable=" + sarg + '}';
    }

    @Override
    public boolean isCooperative() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy