org.jooq.impl.QueryPartList Maven / Gradle / Ivy
/*
* Copyright (c) 2009-2016, Data Geekery GmbH (http://www.datageekery.com)
* All rights reserved.
*
* 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.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* ASL 2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: http://www.jooq.org/licenses
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;
import static java.util.Arrays.asList;
import static org.jooq.impl.Tools.DataKey.DATA_LIST_ALREADY_INDENTED;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import org.jooq.Clause;
import org.jooq.Context;
import org.jooq.QueryPart;
/**
* @author Lukas Eder
*/
class QueryPartList extends AbstractQueryPart implements List {
private static final long serialVersionUID = -2936922742534009564L;
private final List wrappedList;
QueryPartList() {
this((Collection) null);
}
QueryPartList(Collection extends T> wrappedList) {
super();
this.wrappedList = new ArrayList();
// [#4664] Don't allocate the backing array if not necessary!
if (wrappedList != null && !wrappedList.isEmpty())
addAll(wrappedList);
}
QueryPartList(T... wrappedList) {
this(asList(wrappedList));
}
@Override
public final void accept(Context> ctx) {
// Some lists render different SQL when empty
if (isEmpty()) {
toSQLEmptyList(ctx);
}
else {
String separator = "";
boolean indent = (size() > 1) && ctx.data(DATA_LIST_ALREADY_INDENTED) == null;
if (indent)
ctx.formatIndentStart();
for (int i = 0; i < size(); i++) {
ctx.sql(separator);
if (i > 0 || indent)
ctx.formatNewLine();
ctx.visit(get(i));
separator = ", ";
}
if (indent)
ctx.formatIndentEnd().formatNewLine();
}
}
@Override
public final Clause[] clauses(Context> ctx) {
return null;
}
/**
* Subclasses may override this method
*/
@SuppressWarnings("unused")
protected void toSQLEmptyList(Context> context) {
}
// -------------------------------------------------------------------------
// Implementations from the List API
// -------------------------------------------------------------------------
@Override
public final int size() {
return wrappedList.size();
}
@Override
public final boolean isEmpty() {
return wrappedList.isEmpty();
}
@Override
public final boolean contains(Object o) {
return wrappedList.contains(o);
}
@Override
public final Iterator iterator() {
return wrappedList.iterator();
}
@Override
public final Object[] toArray() {
return wrappedList.toArray();
}
@Override
public final E[] toArray(E[] a) {
return wrappedList.toArray(a);
}
@Override
public final boolean add(T e) {
if (e != null) {
return wrappedList.add(e);
}
return false;
}
@Override
public final boolean remove(Object o) {
return wrappedList.remove(o);
}
@Override
public final boolean containsAll(Collection> c) {
return wrappedList.containsAll(c);
}
@Override
public final boolean addAll(Collection extends T> c) {
return wrappedList.addAll(removeNulls(c));
}
@Override
public final boolean addAll(int index, Collection extends T> c) {
return wrappedList.addAll(index, removeNulls(c));
}
private final Collection extends T> removeNulls(Collection extends T> c) {
// [#2145] Collections that contain nulls are quite rare, so it is wise
// to add a relatively cheap defender check to avoid unnecessary loops
if (c.contains(null)) {
List list = new ArrayList(c);
Iterator it = list.iterator();
while (it.hasNext()) {
if (it.next() == null) {
it.remove();
}
}
return list;
}
else {
return c;
}
}
@Override
public final boolean removeAll(Collection> c) {
return wrappedList.removeAll(c);
}
@Override
public final boolean retainAll(Collection> c) {
return wrappedList.retainAll(c);
}
@Override
public final void clear() {
wrappedList.clear();
}
@Override
public final T get(int index) {
return wrappedList.get(index);
}
@Override
public final T set(int index, T element) {
if (element != null) {
return wrappedList.set(index, element);
}
return null;
}
@Override
public final void add(int index, T element) {
if (element != null) {
wrappedList.add(index, element);
}
}
@Override
public final T remove(int index) {
return wrappedList.remove(index);
}
@Override
public final int indexOf(Object o) {
return wrappedList.indexOf(o);
}
@Override
public final int lastIndexOf(Object o) {
return wrappedList.lastIndexOf(o);
}
@Override
public final ListIterator listIterator() {
return wrappedList.listIterator();
}
@Override
public final ListIterator listIterator(int index) {
return wrappedList.listIterator(index);
}
@Override
public final List subList(int fromIndex, int toIndex) {
return wrappedList.subList(fromIndex, toIndex);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy