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

org.eclipse.persistence.internal.jpa.querydef.CompoundSelectionImpl Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*******************************************************************************
 * Copyright (c) 2011, 2013 Oracle and/or its affiliates. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
 * which accompanies this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * Contributors:
 *     Gordon Yorke - Initial development
 *
 ******************************************************************************/
package org.eclipse.persistence.internal.jpa.querydef;

import java.util.ArrayList;
import java.util.List;

import javax.persistence.criteria.CompoundSelection;
import javax.persistence.criteria.Selection;

import org.eclipse.persistence.internal.localization.ExceptionLocalization;

/**
 * 

* Purpose: Contains the implementation of the Selection interface of the JPA * criteria API. *

* Description: The Selection is the expression describing what should be returned by the query. *

* * @see javax.persistence.criteria Join * * @author gyorke * @since EclipseLink 1.2 * */ public class CompoundSelectionImpl extends SelectionImpl implements CompoundSelection{ protected ArrayList> subSelections; //bug 366386 - track items using duplicate alias names protected ArrayList duplicateAliasNames; public CompoundSelectionImpl(Class javaType, Selection[] subSelections) { this(javaType, subSelections, false); } public CompoundSelectionImpl(Class javaType, Selection[] subSelections, boolean validate) { super(javaType, null); this.subSelections = new ArrayList(); //used to validate that an alias is only used once java.util.Map tempMap = new java.util.TreeMap(); for (Selection sel : subSelections) { if (validate) { if (((SelectionImpl)sel).isCompoundSelection() && !((SelectionImpl)sel).isConstructor()) { throw new IllegalArgumentException(ExceptionLocalization.buildMessage("jpa_criteriaapi_illegal_tuple_or_array_value", new Object[] { sel })); } } String alias = sel.getAlias(); if (alias != null) { if (tempMap.containsKey(alias)) { if (duplicateAliasNames == null) { duplicateAliasNames=new ArrayList(); } duplicateAliasNames.add(alias); } else { tempMap.put(alias, sel); } } this.subSelections.add(sel); } } /** * Whether the selection item is a compound selection * @return boolean */ public boolean isCompoundSelection(){ return true; } /** * Return selection items composing a compound selection * @return list of selection items * @throws IllegalStateException if selection is not a compound * selection */ public List> getCompoundSelectionItems(){ return (List>)this.subSelections; } /** * Returns the collection used to store any duplicate alias names found within this CompoundSelection Item * @return list of alias Strings. */ protected List getDuplicateAliasNames() { return this.duplicateAliasNames; } public void findRootAndParameters(CommonAbstractCriteriaImpl criteriaQuery){ for (Selection selection: getCompoundSelectionItems()){ ((InternalSelection)selection).findRootAndParameters(criteriaQuery); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy