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

org.eclipse.jnosql.communication.semistructured.Values Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
/*
 *  Copyright (c) 2024 Contributors to the Eclipse Foundation
 *   All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
 * You may elect to redistribute this code under either of these licenses.
 *
 */
package org.eclipse.jnosql.communication.semistructured;

import org.eclipse.jnosql.communication.Params;
import org.eclipse.jnosql.communication.QueryException;
import org.eclipse.jnosql.communication.Value;
import org.eclipse.jnosql.communication.query.ArrayQueryValue;
import org.eclipse.jnosql.communication.query.Function;
import org.eclipse.jnosql.communication.query.FunctionQueryValue;
import org.eclipse.jnosql.communication.query.JSONQueryValue;
import org.eclipse.jnosql.communication.query.ParamQueryValue;
import org.eclipse.jnosql.communication.query.QueryValue;
import org.eclipse.jnosql.communication.query.ValueType;

import java.util.Arrays;
import java.util.stream.Stream;

import static java.util.stream.Collectors.toList;

final class Values {

    private Values() {
    }

    static Object get(QueryValue value, Params parameters) {

        ValueType type = value.type();
        switch (type) {
            case NUMBER, STRING, BOOLEAN -> {
                return value.get();
            }
            case PARAMETER -> {
                return parameters.add(ParamQueryValue.class.cast(value).get());
            }
            case ARRAY -> {
                return Stream.of(ArrayQueryValue.class.cast(value).get())
                        .map(v -> get(v, parameters))
                        .collect(toList());
            }
            case FUNCTION -> {
                Function function = FunctionQueryValue.class.cast(value).get();
                String name = function.name();
                Object[] params = function.params();
                if ("convert".equals(name)) {
                    return Value.of(get(QueryValue.class.cast(params[0]), parameters))
                            .get((Class) params[1]);
                }
                String message = String.format("There is not support to the function: %s with parameters %s", name,
                        Arrays.toString(params));
                throw new QueryException(message);
            }
            case JSON -> {
                return JsonObjects.getColumns(JSONQueryValue.class.cast(value).get());
            }
            default -> throw new QueryException("There is not support to the value: " + type);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy