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

org.apache.openjpa.persistence.TupleFactory Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * 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.openjpa.persistence;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import javax.persistence.Tuple;
import javax.persistence.TupleElement;
import javax.persistence.criteria.Selection;

import org.apache.openjpa.kernel.ObjectFactory;


/**
 * A factory for tuples such that all instances created by a factory instance share the same TupleElements
 * to save memory consumption.
 * 
* All Tuple instances created by this factory access the TupleElememts contained in this factory. * * @author Pinaki Poddar * * @since 2.0.0 * */ public class TupleFactory implements ObjectFactory { private final List> elements; /** * A factory of Tuple that shares the given TupleElements. * */ public TupleFactory(List> elems) { elements = Collections.unmodifiableList(elems); } public TupleFactory(TupleElement... elems) { this(Arrays.asList(elems)); } public TupleFactory(Selection... elems) { List> list = new ArrayList>(); for (Selection s : elems) list.add(s); elements = Collections.unmodifiableList(list); } public List> getElements() { return elements; } public TupleImpl newInstance() { TupleImpl impl = new TupleImpl(this); return impl; } public int getIndex(TupleElement e) { int i = elements.indexOf(e); if (i == -1) throw new IllegalArgumentException("Index " + i + " does not exist"); return i; } public int getIndex(String alias) { if (alias == null) throw new IllegalArgumentException("null alias"); for (int i = 0; i < elements.size(); i++) { TupleElement e = elements.get(i); if (alias.equals(e.getAlias())) return i; } throw new IllegalArgumentException(alias + " not found"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy