/* * 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.selection; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.TreeMap; import java.util.stream.Collectors; import org.apache.cassandra.cql3.ColumnSpecification; import org.apache.cassandra.cql3.Maps; import org.apache.cassandra.cql3.QueryOptions; import org.apache.cassandra.cql3.functions.Function; import org.apache.cassandra.cql3.selection.Selection.ResultSetBuilder; import org.apache.cassandra.db.marshal.AbstractType; import org.apache.cassandra.db.marshal.MapType; import org.apache.cassandra.exceptions.InvalidRequestException; import org.apache.cassandra.schema.ColumnMetadata; import org.apache.cassandra.serializers.CollectionSerializer; import org.apache.cassandra.transport.ProtocolVersion; import org.apache.cassandra.utils.Pair; /** * <code>Selector</code> for literal map (e.g. {'min' : min(value), 'max' : max(value), 'count' : count(value)}). * */ final class MapSelector extends Selector { /** * The map type. */ private final MapType<?, ?> type; /** * The map elements */ private final List<Pair<Selector, Selector>> elements; public static Factory newFactory(final AbstractType<?> type, final List<Pair<Factory, Factory>> factories) { return new Factory() { protected String getColumnName() { return Maps.mapToString(factories, Factory::getColumnName); } protected AbstractType<?> getReturnType() { return type; } protected final void addColumnMapping(SelectionColumnMapping mapping, ColumnSpecification resultsColumn) { SelectionColumnMapping tmpMapping = SelectionColumnMapping.newMapping(); for (Pair<Factory, Factory> entry : factories) { entry.left.addColumnMapping(tmpMapping, resultsColumn); entry.right.addColumnMapping(tmpMapping, resultsColumn); } if (tmpMapping.getMappings().get(resultsColumn).isEmpty()) // add a null mapping for cases where the collection is empty mapping.addMapping(resultsColumn, (ColumnMetadata)null); else // collate the mapped columns from the child factories & add those mapping.addMapping(resultsColumn, tmpMapping.getMappings().values()); } public Selector newInstance(final QueryOptions options) { return new MapSelector(type, factories.stream() .map(p -> Pair.create(p.left.newInstance(options), p.right.newInstance(options))) .collect(Collectors.toList())); } @Override public boolean isAggregateSelectorFactory() { for (Pair<Factory, Factory> entry : factories) { if (entry.left.isAggregateSelectorFactory() || entry.right.isAggregateSelectorFactory()) return true; } return false; } @Override public void addFunctionsTo(List<Function> functions) { for (Pair<Factory, Factory> entry : factories) { entry.left.addFunctionsTo(functions); entry.right.addFunctionsTo(functions); } } @Override public boolean isWritetimeSelectorFactory() { for (Pair<Factory, Factory> entry : factories) { if (entry.left.isWritetimeSelectorFactory() || entry.right.isWritetimeSelectorFactory()) return true; } return false; } @Override public boolean isTTLSelectorFactory() { for (Pair<Factory, Factory> entry : factories) { if (entry.left.isTTLSelectorFactory() || entry.right.isTTLSelectorFactory()) return true; } return false; } }; } public void addInput(ProtocolVersion protocolVersion, ResultSetBuilder rs) throws InvalidRequestException { for (int i = 0, m = elements.size(); i < m; i++) { Pair<Selector, Selector> pair = elements.get(i); pair.left.addInput(protocolVersion, rs); pair.right.addInput(protocolVersion, rs); } } public ByteBuffer getOutput(ProtocolVersion protocolVersion) throws InvalidRequestException { Map<ByteBuffer, ByteBuffer> map = new TreeMap<>(type.getKeysType()); for (int i = 0, m = elements.size(); i < m; i++) { Pair<Selector, Selector> pair = elements.get(i); map.put(pair.left.getOutput(protocolVersion), pair.right.getOutput(protocolVersion)); } List<ByteBuffer> buffers = new ArrayList<>(elements.size() * 2); for (Map.Entry<ByteBuffer, ByteBuffer> entry : map.entrySet()) { buffers.add(entry.getKey()); buffers.add(entry.getValue()); } return CollectionSerializer.pack(buffers, elements.size(), protocolVersion); } public void reset() { for (int i = 0, m = elements.size(); i < m; i++) { Pair<Selector, Selector> pair = elements.get(i); pair.left.reset(); pair.right.reset(); } } public AbstractType<?> getType() { return type; } @Override public String toString() { return Maps.mapToString(elements); } private MapSelector(AbstractType<?> type, List<Pair<Selector, Selector>> elements) { this.type = (MapType<?, ?>) type; this.elements = elements; } }