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

com.querydsl.core.group.GroupByMap Maven / Gradle / Ivy

There is a newer version: 6.8
Show newest version
/*
 * Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
 *
 * Licensed 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 com.querydsl.core.group;

import com.mysema.commons.lang.CloseableIterator;
import com.querydsl.core.FetchableQuery;
import com.querydsl.core.Tuple;
import com.querydsl.core.types.Expression;
import com.querydsl.core.types.FactoryExpression;
import com.querydsl.core.types.FactoryExpressionUtils;
import com.querydsl.core.types.Projections;
import com.querydsl.core.util.TupleUtils;
import java.util.LinkedHashMap;
import java.util.Map;

/**
 * Provides aggregated results as a map
 *
 * @author tiwe
 * @param 
 * @param 
 */
public class GroupByMap extends AbstractGroupByTransformer> {

  GroupByMap(Expression key, Expression... expressions) {
    super(key, expressions);
  }

  @Override
  public Map transform(FetchableQuery query) {
    Map groups = new LinkedHashMap();

    // create groups
    FactoryExpression expr = FactoryExpressionUtils.wrap(Projections.tuple(expressions));
    boolean hasGroups = false;
    for (Expression e : expr.getArgs()) {
      hasGroups |= e instanceof GroupExpression;
    }
    if (hasGroups) {
      expr = withoutGroupExpressions(expr);
    }
    try (CloseableIterator iter = query.select(expr).iterate()) {
      while (iter.hasNext()) {
        Tuple tuple = TupleUtils.toTuple(iter.next(), expressions);

        @SuppressWarnings("unchecked") // This type is mandated by the key type
        K[] row = (K[]) tuple.toArray();
        // end of workaround
        K groupId = row[0];
        GroupImpl group = (GroupImpl) groups.get(groupId);
        if (group == null) {
          group = new GroupImpl(groupExpressions, maps);
          groups.put(groupId, group);
        }
        group.add(row);
      }
    }

    // transform groups
    return transform(groups);
  }

  @SuppressWarnings("unchecked")
  protected Map transform(Map groups) {
    return (Map) groups;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy