Package io.crate.analyze

Source Code of io.crate.analyze.ExpressionToTimeValueVisitor

/*
* Licensed to CRATE Technology GmbH ("Crate") under one or more contributor
* license agreements.  See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.  Crate 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.
*
* However, if you have executed another commercial license agreement
* with Crate these terms will supersede the license and you may use the
* software solely pursuant to the terms of the relevant commercial agreement.
*/

package io.crate.analyze;

import io.crate.sql.tree.*;
import org.elasticsearch.ElasticsearchParseException;
import org.elasticsearch.common.unit.TimeValue;

import java.util.Locale;

public class ExpressionToTimeValueVisitor extends AstVisitor<TimeValue, Object[]> {

    public static final TimeValue DEFAULT_VALUE = new TimeValue(0);
    private static final ExpressionToTimeValueVisitor INSTANCE = new ExpressionToTimeValueVisitor();

    private ExpressionToTimeValueVisitor() {}

    public static TimeValue convert(Node node, Object[] parameters) {
        return INSTANCE.process(node, parameters);
    }

    @Override
    protected TimeValue visitStringLiteral(StringLiteral node, Object[] context) {
        try {
            return TimeValue.parseTimeValue(node.getValue(), DEFAULT_VALUE);
        } catch (ElasticsearchParseException e) {
            throw new IllegalArgumentException(
                    String.format(Locale.ENGLISH, "Invalid time value '%s'", node.getValue()));
        }
    }

    @Override
    protected TimeValue visitLongLiteral(LongLiteral node, Object[] context) {
        return new TimeValue(node.getValue());
    }

    @Override
    protected TimeValue visitDoubleLiteral(DoubleLiteral node, Object[] context) {
        return new TimeValue((long) node.getValue());
    }

    @Override
    public TimeValue visitParameterExpression(ParameterExpression node, Object[] context) {
        TimeValue timeValue;
        Object param = context[node.index()];
        if (param instanceof Number) {
            timeValue = new TimeValue(((Number) param).longValue());
        } else if (param instanceof String) {
            try {
                timeValue = TimeValue.parseTimeValue((String) param, DEFAULT_VALUE);
            } catch (ElasticsearchParseException e) {
                throw new IllegalArgumentException(
                        String.format(Locale.ENGLISH, "Invalid time value '%s'", param));
            }
        } else {
            throw new IllegalArgumentException(
                    String.format(Locale.ENGLISH, "Invalid time value %s", param));
        }
        return timeValue;
    }

    @Override
    protected TimeValue visitNode(Node node, Object[] context) {
        throw new IllegalArgumentException(String.format(Locale.ENGLISH, "Invalid time value %s", node));
    }
}
TOP

Related Classes of io.crate.analyze.ExpressionToTimeValueVisitor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.